Skip to content

✨🔌 A Python library providing a clients for interacting with various APIs of cryptocurrency exchanges for trading and accessing market data

License

Notifications You must be signed in to change notification settings

ren3104/pycryptoex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyCryptoEx

A Python library providing a clients for interacting with various APIs of cryptocurrency exchanges for trading and accessing market data.

Installation

pip install -U pycryptoex

Choose and install one or more supported crypto exchanges:

pycryptoex [names ...]

For example:

pycryptoex bybit kucoin

Quick Start

from pycryptoex import KuCoin, Bybit


async def main():
    # Request to public endpoints
    kucoin = KuCoin()
    async with kucoin:
        await kucoin.request(...)
    
    # Request to private endpoints
    bybit = Bybit(
        api_key="YOUR_API_KEY",
        secret="YOUR_API_SECRET"
    )
    async with bybit:
        await bybit.request(..., signed=True)

Supported Crypto Exchanges

About

✨🔌 A Python library providing a clients for interacting with various APIs of cryptocurrency exchanges for trading and accessing market data

Topics

Resources

License

Stars

Watchers

Forks

Languages