├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── conf.py ├── documentation │ ├── client.rst │ └── utils.rst ├── index.rst └── make.bat ├── scripts └── wos ├── setup.py └── wos ├── __init__.py ├── client.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/.travis.yml -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/documentation/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/docs/documentation/client.rst -------------------------------------------------------------------------------- /docs/documentation/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/docs/documentation/utils.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/docs/make.bat -------------------------------------------------------------------------------- /scripts/wos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/scripts/wos -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/setup.py -------------------------------------------------------------------------------- /wos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/wos/__init__.py -------------------------------------------------------------------------------- /wos/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/wos/client.py -------------------------------------------------------------------------------- /wos/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enricobacis/wos/HEAD/wos/utils.py --------------------------------------------------------------------------------