A teeworlds network protocol library, designed according to sans I/O (http://sans-io.readthedocs.io/) principles
Project description
A teeworlds network protocol library, designed according to sans I/O (http://sans-io.readthedocs.io/) principles
THIS LIBRARY IS IN EARLY DEVELOPMENT
Do not get bamboozled by the mature looking readme!
This project is not in a very usable state yet. It is in very early development!
APIs might change and many essential features are missing!
install
pip install twnet_parser
sample usage
import twnet_parser.packet
packet = twnet_parser.packet.parse7(b'\x04\x0a\x00\xcf\x2e\xde\x1d\04') # 0.7 close
print(packet) # => <class: 'TwPacket'>: {'version': '0.7', 'header': <class: 'Header'>, 'messages': [<class: 'CtrlMessage'>]}
print(packet.header) # => <class: 'Header'>: {'flags': <class: 'PacketFlags7, 'size': 0, 'ack': 10, 'token': b'\xcf.\xde\x1d', 'num_chunks': 0}
print(packet.header.flags) # => <class: 'PacketFlags7'>: {'control': True, 'resend': False, 'compression': False, 'connless': False}
for msg in packet.messages:
print(msg.message_name) # => close
Features
| Feature | Status |
|---|---|
| Deserialize 0.7 packet headers | :heavy_check_mark: |
| Deserialize 0.7 chunk headers | :heavy_check_mark: |
| Deserialize 0.7 messages | 70% |
| Deserialize 0.7 snapshots | |
| Serialize 0.7 packet headers | |
| Serialize 0.7 chunk headers | |
| Serialize 0.7 messages | 70% |
| Deserialize 0.6 packet headers | |
| Deserialize 0.6 chunk headers | |
| Deserialize 0.6 messages | |
| Deserialize 0.6 snapshots | |
| Serialize 0.6 packet headers | |
| Serialize 0.6 chunk headers | |
| Serialize 0.6 messages |
Non-Features (also not planned for this library)
| Feature | Status | Where to find it |
|---|---|---|
| Networking | :x: | TODO: link if someone implemented it on top |
| Protocol version detection | :x: | TODO: link if someone implemented it on top |
Look elsewhere for these features. Or use this library to implement them on top.
development setup
git clone https://gitlab.com/teeworlds-network/twnet_parser
cd twnet_parser
python -m venv venv
source venv/bin/activate
pip install -r requirements/dev.txt
tests and linting
# dev dependencies
pip install -r requirements/dev.txt
# run unit tests
pytest .
# run style linter
pylint src/
# run type checker
mypy src/
package and release
# manual
pip install -r requirements/dev.txt
version=0.0.2
sed -i "s/^version =.*/version = \"$version\"/" pyproject.toml
python -m build
git tag -a "v$version" -m "# version $version"
python -m twine upload dist/*
# or use the interactive convience script
./scripts/release.sh
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file twnet_parser-0.3.2.tar.gz.
File metadata
- Download URL: twnet_parser-0.3.2.tar.gz
- Upload date:
- Size: 27.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bb220ad94c5af60f99eadbead80900b3afc9fa97f0c885b1be3cfec8438cdbf
|
|
| MD5 |
73fff0548c8dc844e1fed99daea54d34
|
|
| BLAKE2b-256 |
5291a8abc8fa562b632518c93bf10f649603b9fa7aace5959029400fef20d7c3
|
File details
Details for the file twnet_parser-0.3.2-py3-none-any.whl.
File metadata
- Download URL: twnet_parser-0.3.2-py3-none-any.whl
- Upload date:
- Size: 64.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0011df86fe0263baef1dc57885fc8115f82ebd3820582623d700b4c4eece5e8
|
|
| MD5 |
1e7d5f35729394732f80cebbf65aa070
|
|
| BLAKE2b-256 |
1b1f334d385aaca567604e392965b16ade46c6168de576e1845f680b3d769122
|