An ultra simple wrapper for the Socialmetrix Quantum API, with basic functionality
You will need an active account and your API Secret to authenticate. Check the official documentation to obtain yours.
fromquantumpyimportQuantumAPI# Initialize connection with the api, providing your api_secretapi_secret='1357c94eccd047b78e66ebe78675d3dfd27be69f'q=QuantumAPI(api_secret)
# Get all projects associated with accountprojects=q.get_projects()
forprojectinprojects:
print(project['name'])git checkout https://github.com/socialmetrix/quantumpy.git quantumpy
cd quantumpy
pip install --upgrade --force-reinstall -e .
pip show quantumpyOriginal API docs are available here