torrents.csv/README.md

29 lines
1.1 KiB
Markdown
Raw Normal View History

2018-10-03 17:12:12 +00:00
# Torrent.csv
`Torrent.csv` is a vetted database of torrents, consisting of a single, searchable `torrent.csv` file.
2018-10-03 17:12:12 +00:00
An *upload*, consists of making a pull request after running the `add_torrents.sh` script that adds your new unique torrents to the file, after checking that they aren't already there, and that they have seeders.
2018-10-04 20:23:57 +00:00
To find torrents run `./find.sh "SEARCH"`
2018-10-04 20:23:57 +00:00
To contribute:
- [Click here](https://gitlab.com/dessalines/torrent.csv/forks/new) to fork this repo.
```sh
git clone https://gitlab.com/[MY_USER]/torrent.csv
cd torrent.csv
./add_torrents.sh MY_TORRENTS_DIR # `MY_TORRENTS_DIR` is `~/.local/share/data/qBittorrent/BT_backup/` for qBittorrent on linux, but you can search for where your torrents are stored for your client.
git commit -am "Adding my torrents"
git push
```
2018-10-04 20:23:57 +00:00
Then [click here](https://gitlab.com/dessalines/torrent.csv/merge_requests/new) to do a pull/merge request to my branch.
2018-10-04 20:23:57 +00:00
## How the file looks
```sh
infohash;name;size_bytes;created_unix;seeders;leechers;completed;scraped_date
# torrents here...
```
2018-10-03 17:12:12 +00:00
`Torrent.csv` will be periodically purged of non-seeded torrents, and potentially sorted.
2018-10-03 17:12:12 +00:00