You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Joseph Henry e21b26db9b Added Python PyPI package 8 years ago
..
LICENSE.txt Added boilerplate files for PyPI package 8 years ago
README.md Added Python PyPI package 8 years ago
setup.cfg Added Python PyPI package 8 years ago
setup.py Added Python PyPI package 8 years ago
submit.sh Updated PyPI package boilerplate code 8 years ago

README.md

libzt PyPI Package pypi/libzt


Getting started

pip3 install libzt

import libzt
import time

print('joining virtual network...')
libzt.zts_startjoin('whatev_config', 0x123456789ABCDEF1)
print('fd = ' + str(libzt.zts_socket(1,2,3)))

print('looping forever, ping me')
while True:
    time.sleep(1)

Building the Package

Package is specified in setup.py. Note: A new version must be specified in setup.py for every new upload of a package

Get necessary tools

pip3 install wheel twine

Build the binary distribution wheel:

python3 setup.py bdist_wheel

Upload to PyPI

twine upload dist/*