Metadata-Version: 1.1
Name: coinwrap
Version: 0.0.4
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| |Coverage Badge| |PyPI version| |License|
        
        Overview
        --------
        
        A Python wrapper for the `https://coinmarketcap.com/ <>`__
        `api <https://coinmarketcap.com/api/>`__ that provides concise
        functionality for extracting crypto-market data.
        
        *This project was inspired by Martin Simon's*
        `coinmarketcap-api <https://github.com/mrsmn/coinmarketcap-api>`__ *;
        make sure to hit his Gitub up and check out his other cool projects*.
        
        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
        ----
        
        ``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 <https://github.com/bitforce/Cryptocast>`__.
        
        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>`__
        
        .. |Run Status| image:: https://api.shippable.com/projects/59a83c3685d3e007008b9d10/badge?branch=master
           :target: https://app.shippable.com/github/bitforce/Coinwrap
        .. |Coverage Badge| image:: https://api.shippable.com/projects/59a83c3685d3e007008b9d10/coverageBadge?branch=master
           :target: https://app.shippable.com/github/bitforce/Coinwrap
        .. |PyPI version| image:: https://badge.fury.io/py/coinwrap.svg
           :target: https://badge.fury.io/py/coinwrap
        .. |License| image:: https://img.shields.io/badge/license-WTFPL-blue.svg
           :target: http://www.wtfpl.net/
        
Platform: osx
Platform: linux
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 2.7
