Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Turbo Crawl v1
|
| 2 |
+
|
| 3 |
+
Fast web scraper in Rust. ~10 MB/s sustained.
|
| 4 |
+
|
| 5 |
+
## Build
|
| 6 |
+
```bash
|
| 7 |
+
cargo build --release
|
| 8 |
+
```
|
| 9 |
+
|
| 10 |
+
## Run
|
| 11 |
+
```bash
|
| 12 |
+
./target/release/turbo_crawl
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
Output: `/workspace/crawl.jsonl` (JSONL format with url, text, tokens_est)
|
| 16 |
+
|
| 17 |
+
## Utils
|
| 18 |
+
- `watchdog.sh` - Auto-kills scraper at 145GB disk usage
|
| 19 |
+
- `raw_relay.py` - Flask endpoint for raw binary file uploads
|