├── .blazar.yaml ├── .gitignore ├── .hsdoc ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── docs └── intro.md ├── hapi ├── __init__.py ├── base.py ├── blog.py ├── broadcast.py ├── error.py ├── forms.py ├── keywords.py ├── leads.py ├── logging_helper.py ├── mixins │ ├── __init__.py │ └── threading.py ├── prospects.py ├── test │ ├── .gitignore │ ├── __init__.py │ ├── helper.py │ ├── logger.py │ ├── test_base.py │ ├── test_broadcast.py │ ├── test_credentials.json.sample │ ├── test_error.py │ ├── test_keywords.py │ └── test_leads.py └── utils.py └── setup.py /.blazar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/.blazar.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .*.swp 3 | *~ 4 | *.egg-info 5 | dist 6 | /build 7 | MANIFEST 8 | -------------------------------------------------------------------------------- /.hsdoc: -------------------------------------------------------------------------------- 1 | source: "hapi/*.py" 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/README.md -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/docs/intro.md -------------------------------------------------------------------------------- /hapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hapi/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/base.py -------------------------------------------------------------------------------- /hapi/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/blog.py -------------------------------------------------------------------------------- /hapi/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/broadcast.py -------------------------------------------------------------------------------- /hapi/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/error.py -------------------------------------------------------------------------------- /hapi/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/forms.py -------------------------------------------------------------------------------- /hapi/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/keywords.py -------------------------------------------------------------------------------- /hapi/leads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/leads.py -------------------------------------------------------------------------------- /hapi/logging_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/logging_helper.py -------------------------------------------------------------------------------- /hapi/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hapi/mixins/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/mixins/threading.py -------------------------------------------------------------------------------- /hapi/prospects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/prospects.py -------------------------------------------------------------------------------- /hapi/test/.gitignore: -------------------------------------------------------------------------------- 1 | test_credentials.json 2 | test_run.log 3 | -------------------------------------------------------------------------------- /hapi/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hapi/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/test/helper.py -------------------------------------------------------------------------------- /hapi/test/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/test/logger.py -------------------------------------------------------------------------------- /hapi/test/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/test/test_base.py -------------------------------------------------------------------------------- /hapi/test/test_broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/test/test_broadcast.py -------------------------------------------------------------------------------- /hapi/test/test_credentials.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/test/test_credentials.json.sample -------------------------------------------------------------------------------- /hapi/test/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/test/test_error.py -------------------------------------------------------------------------------- /hapi/test/test_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/test/test_keywords.py -------------------------------------------------------------------------------- /hapi/test/test_leads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/test/test_leads.py -------------------------------------------------------------------------------- /hapi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/hapi/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HubSpot/hapipy/HEAD/setup.py --------------------------------------------------------------------------------