├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Makefile ├── README.md ├── conf.py ├── index.rst ├── make.bat ├── reference.rst └── requirements.txt ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── setup.cfg ├── src └── dooray │ ├── Dooray.py │ ├── DoorayExceptions.py │ ├── DoorayObjects.py │ ├── IncomingHook.py │ ├── Member.py │ ├── Messenger.py │ ├── MessengerHook.py │ ├── Project.py │ └── __init__.py └── tests ├── __init__.py ├── conftest.py ├── requirements.txt ├── test_DoorayProject.py ├── test_MessengerHook.py ├── test_MessengerHookAttachments.py └── tokens.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # How to build the documentation 2 | 3 | $ make html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/dooray/Dooray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/src/dooray/Dooray.py -------------------------------------------------------------------------------- /src/dooray/DoorayExceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/src/dooray/DoorayExceptions.py -------------------------------------------------------------------------------- /src/dooray/DoorayObjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/src/dooray/DoorayObjects.py -------------------------------------------------------------------------------- /src/dooray/IncomingHook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/src/dooray/IncomingHook.py -------------------------------------------------------------------------------- /src/dooray/Member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/src/dooray/Member.py -------------------------------------------------------------------------------- /src/dooray/Messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/src/dooray/Messenger.py -------------------------------------------------------------------------------- /src/dooray/MessengerHook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/src/dooray/MessengerHook.py -------------------------------------------------------------------------------- /src/dooray/Project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/src/dooray/Project.py -------------------------------------------------------------------------------- /src/dooray/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/src/dooray/__init__.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | collect_ignore = [] -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /tests/test_DoorayProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/tests/test_DoorayProject.py -------------------------------------------------------------------------------- /tests/test_MessengerHook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/tests/test_MessengerHook.py -------------------------------------------------------------------------------- /tests/test_MessengerHookAttachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/tests/test_MessengerHookAttachments.py -------------------------------------------------------------------------------- /tests/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iizs/PyDooray/HEAD/tests/tokens.py --------------------------------------------------------------------------------