Metadata-Version: 2.1
Name: opensea
Version: 0.1.4
Summary: wrapper library for opensea api
Home-page: UNKNOWN
Author: Ankush Singh
Author-email: ankush4singh@gmail.com.com
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Opensea API

An API wrapper library for opensea api.

## Installation

```python
pip3 install opensea
```

## Usage

```python
form opensea import Assets
assets = Assets()

# This will return a list of assets which you can iterate and get the needed data
asset_list = assets.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
```

Example\
<img src="images/sample_code.png" alt="sample code" width="600px">

<img src="images/output.png" alt="output" width="600px">


