Git Product home page Git Product logo

fixedfloatapi-python's Introduction

Installation

pip install FixedFloatApi

Usage

from fixedfloatapi import FixedFloatApi

# create a new API client
api = FixedFloatApi(key='YOUR_API_KEY', secret='YOUR_API_SECRET')

# Get a list of supported currencies
ccies = api.ccies()
print(ccies)

# Get the current price for an exchange
price = api.price({
    'fromCcy': 'BTC',
    'toCcy': 'ETH',
    'amount': 1.0,
    'direction': 'from',
    'type': 'fixed' # or 'float'
})
print(price)

# Create a new exchange order
order = 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 exchange
order_status = api.order({
    'id': '12345',
    'token': 'TESTTOKENvRB90NOtr397kHY3PJ1VRy2p29HHaN7'
})
print(order_status)

# Request emergency assistance for an exchange
emergency = api.emergency({
    'id': '12345',
    'token': 'TESTTOKENvRB90NOtr397kHY3PJ1VRy2p29HHaN7',
    'choice': 'EXCHANGE'
})
print(emergency)

# set email address for order notifications
set_email = api.setEmail({
    'id': 'TESTID',
    'token': 'TESTTOKENvRB90NOtr397kHY3PJ1VRy2p29HHaN7',
    'email': '[email protected]',
})
print(set_email)

# get a QR code for a trade
qr_code = api.qr({
    'id': 'TESTID',
    'token': 'TESTTOKENvRB90NOtr397kHY3PJ1VRy2p29HHaN7',
})
print(qr_code)

# Make a custom API request
method = '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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.