Metadata-Version: 2.1
Name: chainlink_feeds
Version: 0.2.2
Summary: Python module to get price and other data from the decentralized chainlink community resources
Home-page: https://github.com/alphachainio
Author: Patrick Collins
Author-email: patrick@alphachain.io
License: MIT
Description: # chainlink_feeds
        
        A way to pull data from the Chainlink Price Feeds for analytics, algorithmic trading models, or else
        
        # Quickstart
        
        Install:
        
        ```
        pip install chainlink_feeds
        ```
        
        You'll need a `MNEMONIC` and `RPC_URL` environment variable.
        
        ```
        from chainlink_feeds import ChainlinkFeeds
        
        cf = ChainlinkFeeds(network='KOVAN', pari='ETH_USD')
        print(cf.get_latest_round_data(network=network, pair=pair))
        ```
        
Keywords: decentralized,data,chainlink,cryptocurrency,blockchain
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
