├── .gitignore ├── LICENSE ├── README.md ├── README.txt ├── pipedrive └── __init__.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscott1989/python-pipedrive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscott1989/python-pipedrive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscott1989/python-pipedrive/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscott1989/python-pipedrive/HEAD/README.txt -------------------------------------------------------------------------------- /pipedrive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscott1989/python-pipedrive/HEAD/pipedrive/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | httplib2 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscott1989/python-pipedrive/HEAD/setup.py --------------------------------------------------------------------------------