Cryptocurrency historical market price data scrapper.
Project description
Cryptocurrency historical market price data scraper written in Python.
Installation
$ pip install cryptocmd
to install from the latest source use following command
$ pip install git+git://github.com/guptarohit/cryptoCMD.git
Usage
CoinMarketCap Scraper
Following methods are available to get data in multiple formats from https://coinmarketcap.com
To get all time historical data of a cryptocurrency
from cryptocmd import CmcScraper # initialise scraper without passing time interval scraper = CmcScraper('XRP') # data as list of list in a variable headers, data = scraper.get_data() # export the data as csv file, you can also pass optional name parameter scraper.export_csv('xrp_all_time.csv') # Pandas dataFrame for the same data df = scraper.get_dataframe()
To get data of a cryptocurrency for some days
from cryptocmd import CmcScraper # initialise scraper scraper = CmcScraper('XRP', '15-10-2017', '25-10-2017') # get data as list of list headers, data = scraper.get_data() # export the data to csv scraper.export_csv() # get dataframe for the data df = scraper.get_dataframe()
Following are the columns of the data
Date, Open, High, Low, Close, Volume, Market Cap
Acknowledgements
The data is being scrapped from coinmarketcap :v: and it’s free to use. :tada:
Contributing
Feel free to make a pull request! :octocat:
Project details
Release history Release notifications
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size cryptocmd-0.3.0-py2.py3-none-any.whl (7.5 kB) | File type Wheel | Python version py2.py3 | Upload date | Hashes View hashes |
Filename, size cryptocmd-0.3.0.tar.gz (6.2 kB) | File type Source | Python version None | Upload date | Hashes View hashes |
Close
Hashes for cryptocmd-0.3.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4481819844bcb3795120cb9e34de6cb77c6d50df0fc267562fd54fbe1bb561ec |
|
MD5 | 23995e6d240ec67c7d93b0b7f2f71cdc |
|
BLAKE2-256 | fdc3c7422c1f13d88003e81109e3066e7befa89ae58bb52172e6ff7d41b7e16a |