Uncategorized

toobit-api-python · PyPI


Project description

This library is designed to interact with the TooBit API using Python. Please test before you use it on your production codebase.

Installation

You can install the package using pip:

pip install toobit-api-python

Usage

Here is a simple example of how to use the library:

from toobit_api.toobit_api import TooBitAPI

# Define your API key and secret key
api_key = "your_api_key"
secret_key = "your_secret_key"

# Create a TooBit API object
toobit_api = TooBitAPI(api_key, secret_key)

# Example: Get server time
print(toobit_api.get_server_time())

# Example: Get exchange information
print(toobit_api.get_exchange_info())

# More examples and information can be found in the documentation.

For more examples and detailed usage, please refer to the official documentation.

License

This project is licensed under the MIT License – see the LICENSE.md file for details.

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



Source link

Leave a Reply

Your email address will not be published. Required fields are marked *