hubspot3
hubspot3 copied to clipboard
python3.6+ hubspot client based on hapipy, but modified to use the newer endpoints and non-legacy python
I was experiencing an issue while using the companies client to query for recently modified companies. The client sends the request 250 at a time, per the default `limit` parameter...
I am getting the contracts all at once by using python ``` hb_client = Hubspot3(api_key=API_KEY) contacts = hb_client.contacts.get_all() ``` but I want to be able to paginate this request instead...
Hi, I was really pleased to find this - great work. I was wondering if you had any plans for implementing tickets? https://developers.hubspot.com/docs/methods/tickets/tickets-overview If not I'm considering making a start...
Hi, After having upgraded to the last version of `hubspot3` I find that sometime, when fetching objects from the Hubspot API, i may retrieve dict formatted in different ways regarding...
Hi Jacobi, First of all, thanks a lot for your work on this package! My current client is in the process of migrating to Hubspot, and `hubspot3` is helping me...
I think we have room for improvements on the exception handling side. this is one example of output when a server side error happens: ``` HubspotServerError Hubspot Error ---- request...
My colleagues and I a currently working on extending the contacts API (as mentioned also in https://github.com/jpetrucciani/hubspot3/issues/39). The tests for this (and other) API rely on HubSpot's live demo account....
Hey, I've recently discovered this package and I thank you for developing it! I'd like to ask please if there's a plan on supporting the Timeline API? Thanks!
Would you accept a PR that allowed users to pass a callback function or object to the Hubspot3 class allowing it to publish metrics? For example a simple counter of...
Now that the use of API KEYS have been depreciated by HS, would you kindly add an example of authenticating using an ACCESS TOKEN to your readme. Thanks for the...