Releases: MarekSuchanek/labelord
Releases · MarekSuchanek/labelord
Labelord package
Labelord is now distributed as Python package:
- There is a
setup.pyfile allowing you to install in standard way withpython setup.py install - Package is on PyPI and TestPyPI:
pip install labelord(https://pypi.python.org/pypi/labelord/0.3)pip install --extra-index-url https://test.pypi.org/pypi labelord-suchama4(https://testpypi.python.org/pypi/labelord-suchama4/0.3)
- After installation it is possible to:
from labelord import app, cli(import from labelord modules)python -m labelord --help(run labelord as python module)labelord --help(run labelord as command in shell via entrypoint)
Labelord CLI+WEB
Finished second task of Labelord series: flask
The application can be now used as CLI tool as well as master-to-master replication server.
Labelord CLI
Finished first task of Labelord series: click+requests