Metadata-Version: 1.1
Name: coinwrap
Version: 0.1.1
Summary: Python wrapper created for https://coinmarketcap.com API
Home-page: https://github.com/bitforce/coinwrap
Author: Brandon Johnson
Author-email: brandon.johnson.official@gmail.com
License:            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
                   Version 2, December 2004

Copyright (C) 2017 Brandon Johnson <brandon.johnson.official@gmail.com>

Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.

           DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
  TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

 0. You just DO WHAT THE FUCK YOU WANT TO.

Download-URL: https://github.com/bitforce/coinwrap/archive/master.zip
Description-Content-Type: UNKNOWN
Description: # CoinMarketCap Python Wrapper
        
        [![Run Status][3]][4]
        [![Coverage Badge][5]][4]
        [![PyPI version][b]][c]
        [![License][9]][a]
        
        Overview
        ---
        A Python wrapper for the [https://coinmarketcap.com/]() [api][1] that provides concise 
        functionality for extracting crypto-market data. 
        
        _This project was inspired by Martin Simon's_ [coinmarketcap-api][2] _; make sure to 
        hit his Gitub up and check out his other cool projects_.
        
        [a]: http://www.wtfpl.net/
        [1]: https://coinmarketcap.com/api/
        [c]: https://badge.fury.io/py/coinwrap
        [b]: https://badge.fury.io/py/coinwrap.svg 
        [7]: https://github.com/bitforce/Cryptocast
        [2]: https://github.com/mrsmn/coinmarketcap-api
        [4]: https://app.shippable.com/github/bitforce/Coinwrap
        [9]: https://img.shields.io/badge/license-WTFPL-blue.svg
        [8]: https://img.shields.io/badge/Issues-0-brightgreen.svg
        [3]: https://api.shippable.com/projects/59a83c3685d3e007008b9d10/badge?branch=master
        [5]: https://api.shippable.com/projects/59a83c3685d3e007008b9d10/coverageBadge?branch=master
        
        Dependencies
        ---
        - python `requests`
        - python `pytest`
        
        Setup
        ---
        `pip install coinwrap` _or_ `python setup.py install`
        
        Usage
        ---
        ```
        from coinwrap import Market
        market = Market()
        market.coin('bitcoin')
        market.coin('bitcoin', limit=2)
        market.coin('bitcoin', limit=2, convert='EUR')
        market.stats()
        ```
        
        Test
        ---
        ```
        python -m coinwrap.test.test_core
        pytest [-s]
        ```
        
        Note
        ---
        The _-s_ option for `pytest` prints the output along with the test results.
        
        _To see a useful implementation of this project, check out_ [Cryptocast][7].
        
        License
        ---
        Licensed under the WTFPL - see [LICENSE](./LICENSE) for explicit details.
        
        Version
        ---
        1.0.0
        
        Author
        ---
        [LinkedIn](https://www.linkedin.com/in/brandonjohnsonxyz/)
        [Personal](https://brandonjohnson.life)
        [GitHub](https://github.com/bitforce)
        
Platform: osx
Platform: linux
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 2.7
