Unofficial CoinMarketCap API and Python wrapper
Project description
cmc-py
Unofficial CoinMarketCap API and Python wrapper. cmc-py
uses Selenium
and BeautifulSoup
to scrape the website and return desired data.
Installation
- Using
setup.py
python setup.py install
- Using
Python Package Index
pip install cmc-py-wrapper
- Using
poetry
poetry install
Wrapper
cmc-py
library can be used to fetch data for the following:
CryptoCurrencies
import json
from cmc import Trending
top_30_trending = Trending().get_data
print(json.dumps(top_30_trending, indent=4, default=str))
Exchanges
import json
from cmc import Spot
spot_exchanges = Spot().get_data
print(json.dumps(spot_exchanges, indent=4, default=str))
Non Fungible Tokens (NFTs)
import json
from cmc import UpcomingSale
upcoming_nft_sales = UpcomingSale(pages=[1, 2]).get_data
print(json.dumps(upcoming_nft_sales, indent=4, default=str))
API
An API is also built using the cmc-py
modules using FastAPI
and Redis
. Redis configurations can be set using the config.yml
file, and it is used to cache the scraped data fetched through cmc-py
.
uvicorn api.main:app
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cmc-py-wrapper-0.1.0.tar.gz
(17.3 kB
view details)
Built Distribution
File details
Details for the file cmc-py-wrapper-0.1.0.tar.gz
.
File metadata
- Download URL: cmc-py-wrapper-0.1.0.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0e01f6be23e9916fceb4f3baa7900b1a06e3a8af9a3d7e5240987b5f444df77 |
|
MD5 | 9e012f147d751ea6644f47cb896c38fc |
|
BLAKE2b-256 | 91e268c1da94ab64f6fb0a92b261952f13dbe87cac5af466b20cc77f827da27a |
File details
Details for the file cmc_py_wrapper-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: cmc_py_wrapper-0.1.0-py3-none-any.whl
- Upload date:
- Size: 40.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed6ec4f2ccc385162b9af2ce46a63b2097d2f7f456a4e7c3a560b082f76b0d02 |
|
MD5 | 104601a8cb063df0b8891169e8a8d9ba |
|
BLAKE2b-256 | 040f058a834b1adfa3812c69dd32eac18a75049ce056967bc86186968c52080f |