Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oanderoficial/atorrent
Script em python que oferece uma interface simples de linha de comando para baixar e transmitir torrents utilizando o Aria2c e Webtorrent.
https://github.com/oanderoficial/atorrent
p2p torrent torrent-client torrent-downloader
Last synced: about 2 months ago
JSON representation
Script em python que oferece uma interface simples de linha de comando para baixar e transmitir torrents utilizando o Aria2c e Webtorrent.
- Host: GitHub
- URL: https://github.com/oanderoficial/atorrent
- Owner: oanderoficial
- License: mit
- Created: 2023-05-22T01:59:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-04T22:06:44.000Z (8 months ago)
- Last Synced: 2024-06-05T01:05:39.959Z (8 months ago)
- Topics: p2p, torrent, torrent-client, torrent-downloader
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Atorrent
Script em python que oferece uma interface simples de linha de comando para baixar e transmitir torrents utilizando o Aria2c e Webtorrent.
![marmoset-1684719555872](https://github.com/oanderoficial/atorrent/assets/32654298/ac151e51-fd0e-4f7d-8494-b11ff14b81cd)
Dependências
- aria2c - https://aria2.github.io/
- colorama -https://pypi.org/project/colorama/
- webtorrent -https://github.com/webtorrent/webtorrentAtorrent funções
```python
def download_torrent(link):
os.system(f"aria2c {link}")def download_bittorrent(link):
os.system(f"aria2c {link}")def stream_torrent(link):
os.system(f"webtorrent {link} 0 1")
``````txt
1. Download Torrent (link magnético)
``````txt
2. Download de BitTorrent
``````txt
3. Streaming de Torrents
```