Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.
/ pymesync Public archive

Python module to interface with the TimeSync API

License

Notifications You must be signed in to change notification settings

osuosl/pymesync

Repository files navigation

pymesync

https://travis-ci.org/osuosl/pymesync.svg?branch=master

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