Skip to content

Latest commit

History

16 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Installation

pip install FixedFloatApi

Usage

fromfixedfloatapiimportFixedFloatApi# create a new API clientapi=FixedFloatApi(key='YOUR_API_KEY', secret='YOUR_API_SECRET')
# Get a list of supported currenciesccies=api.ccies()
print(ccies)
# Get the current price for an exchangeprice=api.price({
'fromCcy': 'BTC',
'toCcy': 'ETH',
'amount': 1.0,
'direction': 'from',
'type': 'fixed'# or 'float'
})
print(price)
# Create a new exchange orderorder=api.create({
'fromCcy': 'BTC',
'toCcy': 'ETH',
'amount': 1.0,
'direction': 'from',
'type': 'fixed', # or 'float''toAddress': '0x123...'
})
print(order)
# Place an order for an existing exchangeorder_status=api.order({
'id': '12345',
'token': 'TESTTOKENvRB90NOtr397kHY3PJ1VRy2p29HHaN7'
})
print(order_status)
# Request emergency assistance for an exchangeemergency=api.emergency({
'id': '12345',
'token': 'TESTTOKENvRB90NOtr397kHY3PJ1VRy2p29HHaN7',
'choice': 'EXCHANGE'
})
print(emergency)
# set email address for order notificationsset_email=api.setEmail({
'id': 'TESTID',
'token': 'TESTTOKENvRB90NOtr397kHY3PJ1VRy2p29HHaN7',
'email': 'notifyme@gmail.com',
})
print(set_email)
# get a QR code for a tradeqr_code=api.qr({
'id': 'TESTID',
'token': 'TESTTOKENvRB90NOtr397kHY3PJ1VRy2p29HHaN7',
})
print(qr_code)
# Make a custom API requestmethod='some_method'data= {'param1': 'value1', 'param2': 'value2'}
response=api.custom_request(method, data)
print(response)

For more information, see the API documentation

Support

If you find my work helpful, you can support me by donating:

Donate

About

Python wrapper for interacting with the FixedFloat API to exchange cryptocurrencies.

Topics

Resources

Stars

4 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages