Metadata-Version: 2.1
Name: LNMarkets
Version: 0.1.0
Summary: LNMarkets API Wrapper
Home-page: https://github.com/DivyanshuBagga/LNMarkets
Author: Divyanshu Bagga
Author-email: divyanshu.baggar@pm.me
License: MIT
Download-URL: https://github.com/DivyanshuBagga/LNMarkets/archive/0.1.0.tar.gz
Description: # LNMarkets API Wrapper
        
        This is a Python wrapper for [LNMarkets](https://lnmarkets.com/) API.
        
        To install: `pip install LNMarkets`
        
        Documentation: `help(LNMarkets)`
        To access documentation on idividual module, eg User: `help(LNMarkets.User)`
        
        Example Usage:
        ```python
        import LNMarkets
        
        LNMToken = '<YOUR TOKEN>'
        apiState = LNMarkets.State.getState()
        openPositions = LNMarkets.Positions.getPositions(LNMToken)['open'] #Token must have position scope
        userInfo = LNMarkets.User.userInformation(LNMToken) #Token must have user scope
        buyInfo = LNMarkets.Positions.buy(LNMToken,leverage,quantity=quantity)
        ```
        
Keywords: Bitcoin,Finance,Trading
Platform: UNKNOWN
Description-Content-Type: text/markdown
