فهرست منبع

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")) {

برخی فایل ها در این مقایسه diff نمایش داده نمی شوند زیرا تعداد فایل ها بسیار زیاد است