commit 7b205456911460d43ebcdb65e6aaab3bdd942580 Author: Dessalines Date: Wed Oct 3 10:12:12 2018 -0700 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..a5be93c --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# Torrent.csv + +Torrent.csv is a global, vetted, torrent database, consisting of a +single, searchable `torrent.csv` file. + +An "upload", consists of making a pull request adding your torrents +to the last line of the file. The file will periodically be sorted +by `name`, and `seeders` descending. + +Periodic scraping will remove non-seeded torrents. + +To get the correct format run this script: `todo.txt` + +Seeder and leecher counts are necessary, I suggest using the [ +torrent-tracker-scraper](https://github.com/ZigmundVonZaun/torrent-tracker-scraper) +to get seeders, leechers, and completed. + +The columns are... + +Start with that one huge backup. + +TODO +- Create add line script. Inputs a torrent or a torrent directory, and spits out the add lines. + + diff --git a/torrent.csv b/torrent.csv new file mode 100644 index 0000000..674ca5c --- /dev/null +++ b/torrent.csv @@ -0,0 +1,2 @@ +name,seeders,leechers,completed,infohash,scraped_date + diff --git a/torrent_to_csv_lines.sh b/torrent_to_csv_lines.sh new file mode 100644 index 0000000..f87f5c1 --- /dev/null +++ b/torrent_to_csv_lines.sh @@ -0,0 +1 @@ +# TODO \ No newline at end of file