|
@@ -11,10 +11,13 @@ fn main() {
|
|
|
|
|
|
fn scrape_feats(url: &str) {
|
|
fn scrape_feats(url: &str) {
|
|
|
|
|
|
- let resp = reqwest::get(url).unwrap();
|
|
|
|
- assert!(resp.status().is_success());
|
|
|
|
|
|
+ // commenting out -- going local for a bit
|
|
|
|
+ //let resp = reqwest::get(url).unwrap();
|
|
|
|
+ //assert!(resp.status().is_success());
|
|
|
|
|
|
- let doc = Document::from_read(resp).unwrap();
|
|
|
|
|
|
+ //let doc = Document::from_read(resp).unwrap();
|
|
|
|
+
|
|
|
|
+ let doc = Document::from(include_str!("/home/jmelesky/code/featscraper/assets/feats.html"));
|
|
|
|
|
|
let mut header = true;
|
|
let mut header = true;
|
|
for node in doc.find(Name("tr")) {
|
|
for node in doc.find(Name("tr")) {
|