Python Client to interact with the Switcheo Exchange API
Project description
Python Client for interacting with the Switcheo API.
Table of Contents
Overview
Introduction
This library is intended to empower developers to more easily interact with the Switcheo Decentralized Exchange through simple Python interfaces.
Switcheo is the first functional DEX in the NEO Smart Economy and with the version 2 release of its platform made an API endpoint widely available for developers to build on top of it. This package is a wrapper around the API endpoints and is attempting to replicate and expand on the original functions available.
The official Switcheo documentation can be found at https://docs.switcheo.network/
API Requests
The Switcheo API uses REST architecture to server data through its endpoints. The requests and responses of the endpoint use JSON format.
While the endpoint returns JSON this package turns the request into a Python dictionary for easier interoperability and function lookup.
There are two type of API endpoints presented in this package:
Public APIs (Switcheo docs refers to Exchange APIs) - do not require authentication (message signing) that provide access to exchange history, statistics, state, and various other information about the exchange.
Authenticated APIs (Switcheo docs refers to Trading APIs) - do require authentication and these endpoints include deposits, withdrawals, trading, and cancellation.
Mainnet and Testnet Endpoints
When developing an application it is best to do testing against the Testnet endpoints, these can be found at:
URL |
|
---|---|
UI |
|
API |
For live market data and trading on the mainnet the following enpoints should be used:
URL |
|
---|---|
UI |
|
API |
Installation
This package is designed to be light weight and is not designed to create or store NEO wallets. If this is required for your application please refer to the neo-python (https://github.com/CityOfZion/neo-python) project for your needs.
Requirements
Python 3.5 or greater
Environment Setup
Python Installation
Since this project requires Python 3.5 or greater this can be installed via the recommended methods found at https://www.python.org/downloads/
virtualenv Dependency Management
It is also highly recommended to use the virtualenv functionality allowing the developer to isolate dependencies between projects. For more information the following link is worth reading: https://docs.python-guide.org/dev/virtualenvs/
Docker Image
This project also comes with a simple Docker file that can be used to execute the contents of this package inside of. This package was developed inside of the Docker container so if there are any issues during use please report them.
Install with pip
python -m pip install switcheo
Install from PyPi
The easiest way to install switcheo on your machine is to download it and install from PyPi using pip. First, we recommend you to create a virtual environment in order to isolate this installation from your system directories and then install it as you normally would do:
# create project dir mkdir myproject cd myproject # create virtual environment and activate python3.6 -m venv venv # this can also be python3 -m venv venv depending on your environment source venv/bin/activate (venv) pip install switcheo
Install from Git
Clone the repository at https://github.com/KeithSSmith/switcheo-python and navigate into the project directory. Make a Python 3 virtual environment and activate it via
python3.6 -m venv venv source venv/bin/activate
Then install the requirements via
pip install -U setuptools pip wheel pip install -e .
Updating switcheo-python from Git
If you are updating switcheo-python with git pull, make sure you also update the dependencies with pip install -r requirements.txt.
Public Client
Instantiate Class
switcheo_pub_client = PublicClient(blockchain=neo)
Exchange API Status
switcheo_pub_client.get_exchange_status()
Exchange Time in Epoch Milliseconds
switcheo_pub_client.get_exchange_time()
List Smart Contract Hashes
switcheo_pub_client.get_contracts()
List Trade Pairs
switcheo_pub_client.get_pairs() switcheo_pub_client.get_pairs(base="SWTH")
List Orders for Address (ScriptHash)
switcheo_pub_client.get_orders(address=neo_get_scripthash_from_address(address))
List Contract Balance for Address (ScriptHash)
switcheo_pub_client.get_balance(address=neo_get_scripthash_from_address(address))
Tickers
switcheo_pub_client.get_candlesticks(pair="SWTH_NEO", start_time=round(time.time()) - 350000, end_time=round(time.time()), interval=360)) switcheo_pub_client.get_last_24_hours() switcheo_pub_client.get_last_price()
Offers on Order Book
switcheo_pub_client.get_offers(pair="GAS_NEO")
Executed Trades for a Given Pair
switcheo_pub_client.get_trades(pair="SWTH_NEO", limit=3)
Authenticated Client
The Switcheo docs go into extensive detail about how to authenticate messages (https://docs.switcheo.network/#authentication) on the NEO blockchain. These complications have been abstracted to make it easier for the developer to use to allow for quicker development of their project.
This also means it is no longer necessary to run both create and execute portions of the authenticated client tasks since both are handled with the higher level functions listed below.
Instantiate Class
switcheo_client = AuthenticatedClient(blockchain="neo")
Deposit to Smart Contract
switcheo_client.deposit(asset=product_dict["SWTH"], amount=1, kp=kp)
Withdrawal from Smart Contract
switcheo_client.withdrawal(asset=product_dict["SWTH"], amount=0.001, kp=kp)
Place a Limit Order
switcheo_client.order(kp=kp, pair="SWTH_NEO", side="buy", price=0.0002, amount=100, use_native_token=True, order_type="limit")
Cancel an Open Order
switcheo_client.cancel_order(order_id=order['id'], kp=kp)
Donations
Accepted at Neo address ANwvg4giWPxrZeJtR3ro9TJf4dUHk5wjKe.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file switcheo-0.4.2.tar.gz
.
File metadata
- Download URL: switcheo-0.4.2.tar.gz
- Upload date:
- Size: 36.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.22.0 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdb9ebb24313026641b7d95cd1d59abd2808e124bd392359f2155a348355fa01 |
|
MD5 | d11d1cb590c6956fbbb6bcd419590349 |
|
BLAKE2b-256 | 37e793092faf5bf200f362360266be363e6a737f82f729f9fa65f76a4cae8d70 |
File details
Details for the file switcheo-0.4.2-py3-none-any.whl
.
File metadata
- Download URL: switcheo-0.4.2-py3-none-any.whl
- Upload date:
- Size: 43.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.22.0 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0c6157977f64c7cafec43295790cf193add1bfff2040645916766c5359fb1de |
|
MD5 | 85812902ec4c606edb728d6962463877 |
|
BLAKE2b-256 | 39e51c428a9fe554a42f6735ef222fa17955c0f1af7dd56401ee11abccedd7a8 |