Reverse engineered Fragment API that mimics the official webclient
Project description
python-fragment
Features
- Fast and asynchronous
- Fully typed
- Easy to contribute and use
Installation
pip install -U python-fragment
Or using poetry:
poetry add python-fragment
Quick Start
from fragment import FragmentAPI
import asyncio
async def main():
api = FragmentAPI()
async with api:
# Get username auctions
usernames = await api.usernames.search()
for username in usernames[:5]:
print(username)
# {
# 'username': 'lynx',
# 'status': 'auction',
# 'value': 6619.0,
# 'datetime': '2023-10-31T06:11:25+00:00',
# 'is_resale': False
# }
asyncio.run(main())
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
python-fragment-0.3.0.tar.gz
(6.1 kB
view hashes)
Built Distribution
Close
Hashes for python_fragment-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9825d343cefb9e8057cdb9fbfc630e474f51c9833c4298fcd51018f006edcba4 |
|
MD5 | 561502f2c64fb42040fc240ce775a1be |
|
BLAKE2b-256 | eec6c964f2245c491e6930067f2b6d1cbca5e626522b92744c31cc992d4d4d2f |