https://github.com/ibizaman/t411-hs
Haskell library and executable to download torrents from t411.me
https://github.com/ibizaman/t411-hs
Last synced: about 1 month ago
JSON representation
Haskell library and executable to download torrents from t411.me
- Host: GitHub
- URL: https://github.com/ibizaman/t411-hs
- Owner: ibizaman
- License: bsd-3-clause
- Created: 2015-08-21T17:13:49.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-21T20:18:29.000Z (almost 10 years ago)
- Last Synced: 2025-02-16T19:34:25.411Z (4 months ago)
- Language: Haskell
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Search and download torrents from t411.me
=========================================**This is a really early release.**
`t411` is a command-line interface used to search and download torrents from the http://t411.me website.The general usage is:
```
t411 ACTION USERNAME PASSWORD args...
```
Yes, you must provide your username and password on the command line.Searching
---------```
t411 search USERNAME PASSWORD QUERY OFFSET COUNT
```
So `USERNAME`, `PASSWORD` and `QUERY` speak for themselves. `OFFSET` and `COUNT` are needed to limit the number of returned torrents.Example:
```bash
t411 search 'username' 'password' 'avatar' 15 10
```Downloading
-----------Use the id returned by the search action to download:
```
t411 download USERNAME PASSWORD TORRENTID
```Example:
```bash
t411 download 'username' 'password' 1234
```