浏览代码

using local file for testing

jmelesky 7 年之前
父节点
当前提交
fa35a0fa97
共有 2 个文件被更改,包括 20 次插入3 次删除
  1. 14 0
      assets/feats.html
  2. 6 3
      src/main.rs

文件差异内容过多而无法显示
+ 14 - 0
assets/feats.html


+ 6 - 3
src/main.rs

@@ -11,10 +11,13 @@ fn main() {
 
 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;
     for node in doc.find(Name("tr")) {

部分文件因为文件数量过多而无法显示