Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```