Hello World Dev Conference
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Help
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    1
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    # 【五倍學院聯名推薦工作坊】Rust 從零開始網頁爬蟲 - 朱章祺(Bucky Chu) {%hackmd @HWDC/BJOE4qInR %} >#### 》[議程介紹](https://hwdc.ithome.com.tw/2024/lab-page/3301) >#### 》[填寫議程滿意度問卷|回饋建言給辛苦的講者](https://forms.gle/ABzPoEGkGqiahz478) Rust 官網連結 -> [https://www.rust-lang.org/](https://www.rust-lang.org/) Rust 套件網站 -> [https://crates.io/](https://crates.io/) 爬蟲練習網站 -> [https://books.toscrape.com/](https://books.toscrape.com/) ## 取得網頁內容 ```rust! use reqwest; #[tokio::main] async fn main() { let url = "https://books.toscrape.com/"; let response = reqwest::get(url).await.unwrap(); let body = response.text().await.unwrap(); println!("{}", body); } ``` ## 解析 HTML ```rust! use scraper::Html; // ... let document = Html::parse_document(&body); println!("{}", document); ``` ## 建立選取器 ```rust! use scraper::{Html, Selector}; // ... let book_selector = Selector::parse("article.product_pod").unwrap(); let title_selector = Selector::parse("h3 a").unwrap(); let price_selector = Selector::parse("div.product_price .price_color").unwrap(); ``` ## 使用迴圈撈取資料 ```rust! for book in document.select(&book_selector) { let title = book .select(&title_selector) .next() .unwrap() .text() .collect::<String>(); let price = book .select(&price_selector) .next() .unwrap() .text() .collect::<String>(); println!("書名: {}", title); println!("價格: {}", price); println!("---"); } ``` ## 利用屬性取得完整書名 ```rust= let title_element = book.select(&title_selector).next().unwrap(); // 使用 title 屬性獲取完整書名 let title = title_element.value().attr("title").unwrap_or("Unknown Title"); ``` ## 取代 unwrap() ```rust! let response = reqwest::get(url).await?; let body = response.text().await?; let document = Html::parse_document(&body); let book_selector = Selector::parse("article.product_pod")?; let title_selector = Selector::parse("h3 a")?; let price_selector = Selector::parse("div.product_price .price_color")?; ``` ### 可以加上失敗後顯示的文字 ```rust! for book in document.select(&book_selector) { let title_element = book.select(&title_selector).next().ok_or("找不到 Title 元素")?; let title = title_element .value() .attr("title") .ok_or("找不到 Title 屬性")?; let price = book .select(&price_selector) .next() .ok_or("找不到 Price 元素")? .text() .collect::<String>(); // ... } ``` ## 建立 client ```rust! let client = reqwest::Client::builder().build()?; ``` ## 使用迴圈 ```rust! async fn main() -> Result<(), Box<dyn Error>> { let client = reqwest::Client::builder().build()?; for page in 1..=2 { let url = if page == 1 { "https://books.toscrape.com".to_string() } else { format!("https://books.toscrape.com/catalogue/page-{}.html", page) }; println!("正在爬取頁面: {}", url); let response = client.get(&url).send().await?; println!("狀態: {}", response.status()); if !response.status().is_success() { println!("狀態碼: {}", response.status()); continue; } } Ok(()) } ``` ## 計算每頁抓到的書是否正確 ```rust! for page in 1..=2 { // 省略 let body = response.text().await?; let document = Html::parse_document(&body); let book_selector = Selector::parse("article.product_pod")?; // 省略 let mut book_count = 0; for _book in document.select(&book_selector) { // 省略 book_count += 1; } println!("在第 {} 頁找到 {} 本書", page, book_count); } ``` ## 轉出 JSON步驟 1. 使用 serde 以及 File ```rust! use serde::{Deserialize, Serialize}; use std::fs::File; ``` 2. 建立結構體(struct),並標記 serde ```rust! #[derive(Serialize, Deserialize)] struct Book { title: String, price: String, } ``` 3. 建立一個 Vec ```rust let mut books = Vec::new(); ``` 4. 把每本書塞進 JSON ```rust! for book in document.select(&book_selector) { book_count += 1; let title_element = book.select(&title_selector).next().unwrap(); let title = title_element .value() .attr("title") .ok_or("找不到 Title 屬性")?; let price = book .select(&price_selector) .next() .ok_or("找不到 Price 元素")? .text() .collect::<String>(); books.push(Book { title: title.to_string(), price, }); println!("書名: {}", title); // println!("價格: {}", price); println!("---"); } ``` ```rust! let file = File::create("books.json")?; serde_json::to_writer_pretty(file, &books)?; println!("資料已存到 books.json"); Ok(()) ``` ## 存成 Excel ```rust! use xlsxwriter::Workbook; ``` ```rust! let workbook = Workbook::new("books.xlsx")?; let mut sheet = workbook.add_worksheet(None)?; sheet.write_string(0, 0, "書名", None)?; sheet.write_string(0, 1, "價格", None)?; let mut row = 1; ``` ```rust! for book in document.select(&book_selector) { book_count += 1; let title_element = book.select(&title_selector).next().unwrap(); let title = title_element .value() .attr("title") .ok_or("找不到 Title 屬性")?; let price = book .select(&price_selector) .next() .ok_or("找不到 Price 元素")? .text() .collect::<String>(); sheet.write_string(row, 0, title, None)?; sheet.write_string(row, 1, &price, None)?; books.push(Book { title: title.to_string(), price, }); row += 1; } ``` ## 自動取得全部頁面資料 ```rust! async fn get_total_pages(client: &reqwest::Client) -> Result<u32, Box<dyn Error>> { let url = "https://books.toscrape.com/index.html"; let response = client.get(url).send().await?; let body = response.text().await?; let document = Html::parse_document(&body); let pager_selector = Selector::parse("ul.pager li.current")?; let pager_text = document .select(&pager_selector) .next() .ok_or("無法找到分頁資料")? .text() .collect::<String>(); let total_pages = pager_text .split_whitespace() .last() .ok_or("無法取得總頁數")? .parse::<u32>()?; Ok(total_pages) } ``` ```rust! // 取得總頁數 let total_pages = get_total_pages(&client).await?; println!("總頁數: {}", total_pages); ```

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully