An unofficial asynchronous Python library for the Universalis API.
Project description
Overview
xivuniversalis is an unofficial asynchronous Python library for the Universalis REST API.
Important
This library is still in development and is not guaranteed to be stable or feature-complete.
Installation
You can install this library using pip:
pip install xivuniversalis
Usage
A common use case for the Universalis API is looking up item listings. This can be done with the UniversalisClient.get_listings method,
import asyncio
from xivuniversalis import UniversalisClient
client = UniversalisClient()
results = asyncio.run(client.get_listings(4, "crystal"))
print(f"Found {len(results.active_listings)} listings")
for listing in results.active_listings:
print(f"[{listing.world_name}] {listing.quantity}x{listing.price_per_unit}/each ({listing.total_price} gil total)")
You must have the item ID’s for the items you wish to look up.
If you need a source to obtain these from, you can use a service such as xivapi.
You can also use the UniversalisClient.get_market_data method to find an item’s cheapest listing, average price, and other useful metrics.
import asyncio
from xivuniversalis import UniversalisClient
client = UniversalisClient()
market_data = asyncio.run(client.get_market_data(12056, "north-america"))
print(f"[{market_data.nq.lowest_price.region_world_id}] Found listing for {market_data.nq.lowest_price.by_region} gil")
print(f"Average listing price is {market_data.nq.average_price.by_region} gil")
You may have noticed above that we are referencing a world ID instead of a world name.
For endpoints where world names are not available, you can use the libraries UniversalisClient.get_worlds method to build a dictionary mapping that will allow you to easily convert world ID’s back into human-readable world names.
import asyncio
from xivuniversalis import UniversalisClient
client = UniversalisClient()
worlds = asyncio.run(client.get_worlds())
world_id = 37
print(worlds[world_id].name)
Links
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file xivuniversalis-0.1.0b1.tar.gz.
File metadata
- Download URL: xivuniversalis-0.1.0b1.tar.gz
- Upload date:
- Size: 65.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc0c3be9bd48443433dad3e6ccbd68624216248d4679457bb14ce397bb58e535
|
|
| MD5 |
daf62a8e6f2efecd007481f277acf435
|
|
| BLAKE2b-256 |
d98655e8e393e112ad96e779f3ad378b0e41e222eb85cfd979130c3828f06092
|
File details
Details for the file xivuniversalis-0.1.0b1-py3-none-any.whl.
File metadata
- Download URL: xivuniversalis-0.1.0b1-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad05130fe26ca92491886e9da0e5a14b054bcd3324773ed39c0637f85ded7863
|
|
| MD5 |
74a6f977c18f8a5fb9cc2746df4de49b
|
|
| BLAKE2b-256 |
5bb2b487cb54f8645ebd82b83f05d0497f1f95a9630ed215acabae99eaf6e338
|