NFT market is in your hands.
Project description
nft-market
What is it?
nft-market is a Python library by which current market information of NFTs on several famous NFT markets (OpenSea, Magic Eden, tofuNFT, PancakeSwap, etc) can be obtained.
Main features
nft-market provides simple APIs that return market information just by your giving the following arguments.
- The marketplace (from
nft_market.Market
) - the ID of a specific NFT (See the below in detail)
from nft_market import Market, Retriever
r = Retriever()
print(r.fetch(Market.OpenSea, 'boredapeyachtclub')) # Bored Ape Yacht Club
# [Output]
# type: nft_market.NFTInfo
# NFTInfo(id='boredapeyachtclub', name='Bored Ape Yacht Club', num_supply=None, num_listing=10000, num_owners=6400, floor=111.0, volume=487600.0)
Currently supported marketplaces
At this moment, the following marketplaces are supported in nft-market.
- OpenSea
- Entrepot (depreacated)
- tofuNFT
- PancakeSwap
- Rarible
- GhostMarket
- Crypto.com
- Gem
- NFTrade
- Solanart
- Magic Eden
- XANALIA
- CetoSwap (depreacated)
- Coinbase
- CCC (depreacated)
- Nifty Gateway
- Jelly (depreacated)
- YUMI
Other marketplaces will be added into the list in the future. You can, off course, request them in issues if needed immediately. Either PRs or issues are always welcome!
Currently supported explorers
The following explorers are supported in nft-market. If possible, using these explorers is recommended rather than using the above marketplaces, such as Enterpot, for more stability.
How to get the ID of a NFT?
Although it depends on which marketplace you use, you can basically find it in the URL.
Example 1: OpenSea
When you want to retrieve the information of the NFT of Bored Ape Yacht Club
, the URL looks like https://opensea.io/collection/boredapeyachtclub
. In this URL, what differs according to a NFT is the part of boredapeyachtclub
, which is all you need to use **
nft-market**.
Example 2: tofuNFT
URLs look like https://tofunft.com/collection/astardegens/items
. In this case, what nft-market requires is only
the part of astardegens
.
Other examples
We have several examples of the usage in samples.py for references.
Available information
What you can retrieve may change by a marketplace you specify, as follows. Other information may be provided in the future!
Market | Name | #Supply | #Listing | #Owners | Floor | Volume |
---|---|---|---|---|---|---|
OpenSea | ✓ | ✓ | ✓ | ✓ | ||
Entrepot | ✓ | ✓ | ✓ | ✓ | ||
tofuNFT | ✓ | ✓ | ✓ | ✓ | ✓ | |
PancakeSwap | ✓ | ✓ | ✓ | ✓ | ✓ | |
Rarible | ✓ | ✓ | ✓ | ✓ | ✓ | |
GhostMarket | ✓ | ✓ | ✓ | ✓ | ✓ | |
Crypto.com | ✓ | ✓ | ✓ | ✓ | ✓ | |
Gem | ✓ | ✓ | ✓ | ✓ | ||
NFTrade | ✓ | ✓ | ✓ | |||
Solanart | ✓ | ✓ | ✓ | ✓ | ✓ | |
Magic Eden | ✓ | ✓ | ✓ | ✓ | ||
XANALIA | ✓ | ✓ | ✓ | ✓ | ✓ | |
CetoSwap | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
Coinbase | ✓ | ✓ | ✓ | ✓ | ✓ | |
CCC | ✓ | ✓ | ✓ | ✓(*) | ✓ | ✓ |
Nifty Gateway | ✓ | ✓ | ✓ | ✓ | ✓ | |
Jelly | ✓ | ✓ | ✓ | ✓ | ✓ | |
YUMI | ✓ | ✓ | ✓ | ✓ | ✓ |
Explorer | Ecosystem | Name | #Supply | #Listing | #Owners | Floor | Volume |
---|---|---|---|---|---|---|---|
ICScan | ICP | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
NFTgeek | ICP | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
"✓(*)" means it can return None value depending on items.
Installation
You can install nft-market by pip.
$ pip install nft-market
Also, as nft-market depends on Firefox and its driver, you need to install them.
[mac]
$ brew install firefox
[ubuntu]
$ sudo apt install firefox
Besides, all Python dependencies are listed up in requirements.txt
. Please install them
by $ pip install -r requirements.txt
if you install nft-market not by pip but by cloning from GitHub.
For developers
You can run tests similarly as GitHub Actions in your local environment by using ACT. We highly recommend you try this for at least what you added before push.
Installation
# mac
$ brew install act
# Linux
$ curl https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash
# Windows Chocolatey
$ choco install act-cli
# Windows Scoop
$ scoop install act
How to use act?
Make sure that you're already running Docker Desktop, and then just run act!
$ act push --container-architecture linux/amd64
Note that when you see choices as for the default size of images, you need at least "Medium".
Default image and other options can be changed manually in ~/.actrc (please refer to https://github.com/nektos/act#configuration for additional information about file structure) [Use arrows to move, type to filter, ? for more help]
Large
> Medium
Micro
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nft_market-1.47.tar.gz
.
File metadata
- Download URL: nft_market-1.47.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db9d0b4738e72690d888ecb317d855e95da4860b92198505cd5865c47857de69 |
|
MD5 | 273748a5fd62404adfe56368094d0d13 |
|
BLAKE2b-256 | 309bfff2cebba32a188c70545d881a3a4e9df2d9f32f9c0d4f6cba27b131e322 |
File details
Details for the file nft_market-1.47-py3-none-any.whl
.
File metadata
- Download URL: nft_market-1.47-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 48a44786942586e21d339a1ef22eca415c1b73ecae2df9112d9d49002a01cd39 |
|
MD5 | 6a956881213861495db854cf9d9f046e |
|
BLAKE2b-256 | 940a4b0dda3ab13aa977ecd55a09b7fd7298f2b4f89e2e8bbd22bc856abd263c |