Python module for TimeSync. Compatible with Python versions 2.7 and 3.3+.
Pymesync documentation can be found on readthedocs
We use virtualenv for development and testing:
$ virtualenv venv $ source venv/bin/activate (venv) $ pip install -r requirements.txt
If you get an error when trying to run pip install
, make sure that you
have an up-to-date version of pip
(venv) $ pip install --upgrade pip
For usage documentation, build our docs:
(venv) $ cd docs (venv) $ make html (venv) $ <browser> build/html/index.html
To test the source code:
(venv) $ make test (venv) $ make flake
or
(venv) $ make verify