Metadata-Version: 2.1
Name: borsdata-sdk
Version: 0.0.1
Summary: Borsdata api SDK
Home-page: https://github.com/joelroxell/borsdata-sdk
Author: Joel S. Roxell
Author-email: joel.roxell@annevo.se
License: UNKNOWN
Description: # Borsdata python SKD
        
        > unofficial
        
        python SDK for the [Börsdata API](https://github.com/Borsdata-Sweden/API). Note that all endpoints are not yet implemented.
        
        ## Install
        `pip install borsdata-sdk`
        
        ## Usage
        
        ```python
        from borsdata_sdk import BorsdataAPI
        
        borsdata = BorsdataAPI('api_key')
        
        markets = borsdata.get_markets()
        branches = borsdata.get_branches()
        sectors = borsdata.get_sectors()
        instruments = borsdata.get_instruments()
        entries = borsdata.get_instrument_stockprice(3)
        entries_from_to = borsdata.get_instrument_stockprice(3, '2009-04-22', '2009-04-25')
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
