Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dboslee/pytorrent
Bittorrent protocol implemented in python
https://github.com/dboslee/pytorrent
bittorrent hacktoberfest p2p torrent
Last synced: about 1 month ago
JSON representation
Bittorrent protocol implemented in python
- Host: GitHub
- URL: https://github.com/dboslee/pytorrent
- Owner: dboslee
- Created: 2020-11-03T02:22:55.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-08T03:44:06.000Z (about 4 years ago)
- Last Synced: 2024-04-17T17:21:21.527Z (8 months ago)
- Topics: bittorrent, hacktoberfest, p2p, torrent
- Language: Python
- Homepage:
- Size: 260 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pytorrent
This should work with python 3.6 and up## Dev setup
1. Fork and clone the repo
```
git clone https://github.com/{username}/pytorrent.git
```
2. Setup python virtual environment
```
cd pytorrent
virtualenv env
source env/bin/activate
```
3. Install dev dependencies
```
pip install -r dev-requirements.txt
```## Contribution Guide
Run tests and linting before submitting a PR
```
python -m unittest discover -s ./test
flake8
```