Unofficial Python wrapper for the 3Commas API
How to install
pip install py3commasHow to use
from py3commas.request import Py3Commas
p3c = Py3Commas(key='', secret='')
response = p3c.request(
entity='smart_trades',
action=''
)
response = p3c.request(
entity='smart_trades',
action='create_smart_trade',
payload={
"account_id": 123456
}
)