How to use the pyupbit.Upbit function in pyupbit

To help you get started, we’ve selected a few pyupbit examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github sharebook-kr / cryptocurrency-trading-bot / upbit / level2 / manager.py View on Github external
def create_instance():
    with open("upbit.txt") as f:
        lines = f.readlines()
        key = lines[0].strip()
        secret = lines[1].strip()

    inst = pyupbit.Upbit(key, secret)
    return inst
github sharebook-kr / cryptocurrency-trading-bot / upbit / simple / manager.py View on Github external
def create_instance():
    with open("upbit.txt") as f:
        lines = f.readlines()
        key = lines[0].strip()
        secret = lines[1].strip()

    inst = pyupbit.Upbit(key, secret)
    return inst

pyupbit

python wrapper for Upbit API

Apache-2.0
Latest version published 2 years ago

Package Health Score

48 / 100
Full package analysis