mirror of
https://github.com/YGGverse/aquatic-crawler.git
synced 2026-03-31 17:15:35 +00:00
rename infohash_file to infohash, storage to optional preload, torrent_tracker to tracker
This commit is contained in:
parent
57b246a879
commit
ee78171a12
4 changed files with 48 additions and 33 deletions
24
README.md
24
README.md
|
|
@ -38,12 +38,12 @@ Crawler for [Aquatic](https://github.com/greatest-ape/aquatic) BitTorrent tracke
|
|||
## Usage
|
||||
|
||||
``` bash
|
||||
aquatic-crawler --infohash-file /path/to/info-hash-ipv4.json\
|
||||
--infohash-file /path/to/info-hash-ipv6.json\
|
||||
--infohash-file /path/to/another-source.json\
|
||||
--torrent-tracker udp://host1:port\
|
||||
--torrent-tracker udp://host2:port\
|
||||
--storage /path/to/storage\
|
||||
aquatic-crawler --infohash /path/to/info-hash-ipv4.json\
|
||||
--infohash /path/to/info-hash-ipv6.json\
|
||||
--infohash /path/to/another-source.json\
|
||||
--tracker udp://host1:port\
|
||||
--tracker udp://host2:port\
|
||||
--preload /path/to/directory\
|
||||
--enable-tcp
|
||||
```
|
||||
|
||||
|
|
@ -62,15 +62,12 @@ aquatic-crawler --infohash-file /path/to/info-hash-ipv4.json\
|
|||
--clear
|
||||
Clear previous index collected on crawl session start
|
||||
|
||||
--infohash-file <INFOHASH_FILE>
|
||||
Absolute filename(s) to the Aquatic tracker info-hash JSON/API
|
||||
--infohash <INFOHASH>
|
||||
Absolute path(s) or URL(s) to import infohashes from the Aquatic tracker JSON/API
|
||||
|
||||
* PR#233 feature
|
||||
|
||||
--storage <STORAGE>
|
||||
Directory path to store preloaded data (e.g. `.torrent` files)
|
||||
|
||||
--torrent-tracker <TORRENT_TRACKER>
|
||||
--tracker <TRACKER>
|
||||
Define custom tracker(s) to preload the `.torrent` files info
|
||||
|
||||
--initial-peer <INITIAL_PEER>
|
||||
|
|
@ -105,6 +102,9 @@ aquatic-crawler --infohash-file /path/to/info-hash-ipv4.json\
|
|||
--enable-upload
|
||||
Enable upload
|
||||
|
||||
--preload <PRELOAD>
|
||||
Directory path to store preloaded data (e.g. `.torrent` files)
|
||||
|
||||
--preload-regex <PRELOAD_REGEX>
|
||||
Preload only files match regex pattern (list only without preload by default)
|
||||
* see also `preload_max_filesize`, `preload_max_filecount` options
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue