All Projects → ankushKun → opensea

ankushKun / opensea

Licence: other
python wrapper for opensea api

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to opensea

nftool
A suite of tools for NFT generative art.
Stars: ✭ 145 (+281.58%)
Mutual labels:  nft, opensea
opensea-images-downloader
Script to download all the images from an opensea collection using the OpenSea API
Stars: ✭ 42 (+10.53%)
Mutual labels:  nft, opensea
fetch-nft
🖼🎑🌠 A utility to fetch and easily display Ethereum & Solana NFTs in a common format given any wallet
Stars: ✭ 83 (+118.42%)
Mutual labels:  nft, opensea
opensea-arb-nft20
🧸 💸 Detects arbitrage opportunities for ERC-721 tokens between OpenSea and NFT20.
Stars: ✭ 42 (+10.53%)
Mutual labels:  nft, opensea
opensea automatic uploader
(Bypass reCAPTCHAs) A Selenium Python bot to automatically and bulky upload and list your NFTs on OpenSea (all metadata integrated - Ethereum and Polygon supported); reCAPTCHA solver & bypasser included.
Stars: ✭ 205 (+439.47%)
Mutual labels:  nft, opensea
opensea-scraper
Scrapes nft floor prices and additional information from opensea. Used for https://nftfloorprice.info
Stars: ✭ 129 (+239.47%)
Mutual labels:  nft, opensea
opensea-sales-twitter-bot
A Twitter bot that tweets Opensea sales for a given collection 🐳
Stars: ✭ 120 (+215.79%)
Mutual labels:  nft, opensea
tktable
Wrapper library for Python of the homonymous Tk library.
Stars: ✭ 37 (-2.63%)
Mutual labels:  wrapper-library
Crypto-Car-Battle
NFT (ERC721) based HTML5 game with Crypto Payouts to the Winner.
Stars: ✭ 90 (+136.84%)
Mutual labels:  nft
YaraSharp
C# wrapper around the Yara pattern matching library
Stars: ✭ 29 (-23.68%)
Mutual labels:  wrapper-library
OpenWeatherMap-Android-Library
A wrapper for the openweathermap REST API
Stars: ✭ 100 (+163.16%)
Mutual labels:  wrapper-library
pynytimes
Use all the New York Times APIs in Python!
Stars: ✭ 22 (-42.11%)
Mutual labels:  wrapper-library
nft-swap-sdk
Ethereum's missing p2p NFT and token swap library for web3 developers. Written in TypeScript. Powered by 0x.
Stars: ✭ 200 (+426.32%)
Mutual labels:  nft
eaxefx
OpenAL EAX Extension
Stars: ✭ 39 (+2.63%)
Mutual labels:  wrapper-library
arloader
Rust command line application and client for uploading files to Arweave.
Stars: ✭ 79 (+107.89%)
Mutual labels:  nft
cxxcurses
Header only ncurses wrapper
Stars: ✭ 24 (-36.84%)
Mutual labels:  wrapper-library
node-sword-interface
JavaScript (N-API) interface to SWORD library
Stars: ✭ 19 (-50%)
Mutual labels:  wrapper-library
gas-reporting
Reference documentation on every gas price API and all the different formats
Stars: ✭ 85 (+123.68%)
Mutual labels:  nft
thenftbay.org
The NFT Bay is the galaxy's most resilient NFT BitTorrent site! You wouldn't steal a JPEG (or would you)
Stars: ✭ 322 (+747.37%)
Mutual labels:  nft
MetaplexMetadata-js
Get the Metaplex Metadata from NFTs with Metaplex standard
Stars: ✭ 48 (+26.32%)
Mutual labels:  nft

Opensea API

An API wrapper library for opensea api.

Installation

pip3 install opensea

Usage

Retrieving assets:

from opensea import get_assets

# This will return a list of assets which you can iterate and get the needed data
asset_list = get_assets(limit=10, verified_only=False)

asset = asset_list[0] # Get the first asset obejct from the list

print(asset.name)
print(asset.description)
print(asset.asset_url)
print(asset.get_floor_price()) # Floor price of the collection

Retrieving bundles:

from opensea import get_bundles

# This will return a list of assets which you can iterate and get the needed data
bundles_list = get_bundles(limit=10)

bundle = bundles_list[0] # Get the first asset obejct from the list

print(bundle.slug)
print(bundle.assets[0].name)

Retrieving stats from specific collection:

from opensea import get_collection_stats

# This will return a CollectionStats Object
stats = get_collection_stats(collection="doodles-official")

print(stats.count)
print(stats.num_owners)
print(stats.floor_price)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].