Skip to main content

Python 3 wrapper for the NFTScan API

Project description

NFTScan NFT API Python 3 wrapper

A library providing Python 3 bindings for the NFTScan API

This library is in Alpha / Early Alpha state, and is untested / provided as is. Feel free to open PRs or bug reports for issues, features or extensions

Installation:

pip install nftscan-api

Usage:

Get a key and secret. Then, check out the api endpoints listed, eg (getGroupByNftContract)[https://developer.nftscan.com/doc/#operation/getAllNftByUserAddressUsingPOST] - and try to use them

from nftscan import NftScanAPI
nftScan = NftScanAPI(
    apiKey=<key>,
    apiSecret=<secret>)
test_wallet = "0x3becf83939f34311b6bee143197872d877501b11"

print(nftScan.getGroupByNftContract(erc="erc721", user_address=test_wallet))

If looking to also use pro api endpoints:

from nftscan import NftScanAPI
nftScanPro = NftScanProAPI(
    apiKey=<key>,
    apiSecret=<secret>)
test_wallet = "0x3becf83939f34311b6bee143197872d877501b11"
test_nft = "0xffe572aee5cded696f617125aa66b9746960f4ec"

print(nftScanPro.getGroupByNftContract(erc="erc721", user_address=test_wallet))
print(nftScanPro.getNftByContract(nft_address=test_nft))

Write json encoded response to a file:

nftScan.getGroupByNftContract(erc="erc721", user_address=test_wallet, export_file_name='out.txt'))

0.1.4 (2022-04-14)

Partial support for pro API Fixed missing dependencies and bad formatting for requirements.dev.stxt

0.1.3 (2022-03-31)

Moved source repo to main NFTScan github org - https://github.com/nftscan2022/nftscan-api-python-sdk

0.1.2 (2022-03-31)

Bugfixes:

  • page_index should start at 1
  • removed spurious "walletType" argument accidentally sent to "getAllNftByUserAddress" endpoint

0.1.1 (2022-03-31)

  • Fixed a corner case for dumping response data to file

0.1.0 (2022-03-30)

  • Created

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

nftscan-api-0.1.4.tar.gz (9.1 kB view hashes)

Uploaded Source

Built Distribution

nftscan_api-0.1.4-py2.py3-none-any.whl (7.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page