Hi, I built the client API using python setup.py install --user. I can import the package in a test script but the content of the module is empty:
>>> import net.thefletcher.tbaapi.v3client
>>> print(dir(net.thefletcher.tbaapi.v3client))
['__doc__', '__loader__', '__name__', '__package__', '__path__', '__spec__']
Am I missing some dependencies? Is the package available via some other means?
Hi, I built the client API using
python setup.py install --user. I can import the package in a test script but the content of the module is empty:Am I missing some dependencies? Is the package available via some other means?