web scraping with css selectors (#2725)

* first step of making selector

* wip

* wip tests working

* probably good enough for a first pass

* oops, missed something.

* and something else...

* grrrr version errors
This commit is contained in:
Darren Schroeder
2020-11-03 15:46:42 -06:00
committed by GitHub
parent b674cee9d2
commit 97f3671e2c
9 changed files with 501 additions and 3 deletions

View File

@ -0,0 +1,6 @@
use nu_plugin::serve_plugin;
use nu_plugin_selector::Selector;
fn main() {
serve_plugin(&mut Selector::new());
}