Hi,
I am using Python to run API requests, recently my script stopped working and started giving me an error:
Traceback (most recent call last):
File "C:\Users\...\Documents\hubspot\abandoned-carts.py", line 7, in <module>
import hubspot
File "C:\Users\...\Documents\hubspot\hubspot.py", line 9, in <module>
from hubspot.crm.contacts import PublicObjectSearchRequest, SimplePublicObjectInput, ApiException
ModuleNotFoundError: No module named 'hubspot.crm'; 'hubspot' is not a package
I just completely unisntalled and reinstalled Python and the hubspot module using
pip install hubspot-api-client
If I run `pip list` it shows I have hubspot 0.1.14.dev0 and
hubspot-api-client 7.5.0.
Not sure what else to try.