├── .gitignore ├── LICENSE.txt ├── MANIFEST ├── README.md ├── agilecrm ├── __init__.py ├── client.py ├── company.py ├── contact.py ├── deal.py ├── note.py ├── requester.py └── responses.py ├── dist └── agile-crm-python-0.1.tar.gz ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/README.md -------------------------------------------------------------------------------- /agilecrm/__init__.py: -------------------------------------------------------------------------------- 1 | from .client import AgileCRM 2 | -------------------------------------------------------------------------------- /agilecrm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/agilecrm/client.py -------------------------------------------------------------------------------- /agilecrm/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/agilecrm/company.py -------------------------------------------------------------------------------- /agilecrm/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/agilecrm/contact.py -------------------------------------------------------------------------------- /agilecrm/deal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/agilecrm/deal.py -------------------------------------------------------------------------------- /agilecrm/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/agilecrm/note.py -------------------------------------------------------------------------------- /agilecrm/requester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/agilecrm/requester.py -------------------------------------------------------------------------------- /agilecrm/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/agilecrm/responses.py -------------------------------------------------------------------------------- /dist/agile-crm-python-0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/dist/agile-crm-python-0.1.tar.gz -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ipython==6.1.0 2 | requests==2.20.0 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahmonov/agile-crm-python/HEAD/setup.py --------------------------------------------------------------------------------