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.
from quantumpy import QuantumAPI
# Initialize connection with the api, providing your api_secret
api_secret = '1357c94eccd047b78e66ebe78675d3dfd27be69f'
q = QuantumAPI(api_secret)
# Get all projects associated with account
projects = q.get_projects()
for project in projects:
print(project['name'])
git checkout https://github.com/socialmetrix/quantumpy.git quantumpy
cd quantumpy
pip install --upgrade --force-reinstall -e .
pip show quantumpy
Original API docs are available here