https://github.com/izihawa/types
https://github.com/izihawa/types
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/izihawa/types
- Owner: izihawa
- License: mit
- Created: 2020-10-21T18:53:09.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-22T09:21:47.000Z (almost 5 years ago)
- Last Synced: 2025-08-27T23:10:40.118Z (about 1 month ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Izihawa Types
Pure Python varint encoding and type routines
## Example
```python
from izihawa_types import varint, process_varintx = varint(123123)
assert(x == b'\xf3\xc1\x07')
assert(123123 == process_varint(x))
```