Metadata-Version: 2.1
Name: ob-dj-hubspot
Version: 0.0.9
Summary: OBytes django application for managing HubSpot integration and sync data from and to HubSpot.
Home-page: https://www.obytes.com/
Author: OBytes
Author-email: hello@obytes.com
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: django
Requires-Dist: celery
Requires-Dist: djangorestframework

## OBytes Django HubSpot App

HubSpot Django Application is designed to integrate with HubSpot to sync contacts, companies and deals from and to HubSpot.

## Quick start

1. Install `ob_dj_hubspot` latest version `pip install ob_dj_hubspot`

2. Add "ob_dj_hubspot" to your `INSTALLED_APPS` setting like this:

```python
   # settings.py
   INSTALLED_APPS = [
        ...
        "ob_dj_hubspot.core.hubspot",
   ]
# TODO: ADD Other settings
```


3. Include the  URLs in your project urls.py like this::

```python
    path("hubspot/", include("ob_dj_hubspot.apis.hubspot.urls")),
```

4. Run ``python manage.py migrate`` to create the hubspot models.


## Developer Guide

1. Clone github repo `git clone [url]`

2. `pipenv install --dev`

3. `pre-commit install`

4. Run unit tests `pytest`



