utkarshkukreti / select.rs

A Rust library to extract useful data from HTML documents, suitable for web scraping.
MIT License
959 stars 69 forks source link

How can this work with an http response stream? #58

Open brielov opened 5 years ago

brielov commented 5 years ago

Sorry, I'm just learning rust and I would like to know how to feed an http response stream to the html5ever parser. How would you implement that instead of reading the hole response as a string and then parsing it?