A Python API client for FixPrice catalog
Project description
FixPrice API (not official)
FixPrice (Фикс Прайс) - https://fix-price.com/
⭐ Star us on GitHub | 📚 Read the Docs | 🐛 Report Bug
Принцип работы
Библиотека полностью повторяет сетевую работу обычного пользователя на сайте.
Usage
pip install fixprice_api
python -m camoufox fetch
import asyncio
from fixprice_api import FixPriceAPI, CatalogSort
from PIL import Image
async def main():
async with FixPriceAPI() as api:
# 1. Получаем дерево категорий
tree_data = (await api.Catalog.tree()).json()
first_alias = tree_data[next(iter(tree_data))]["alias"]
print(f"Первая категория: {first_alias}")
# 2. Список товаров в категории
products = (
await api.Catalog.products_list(
category_alias=first_alias,
page=1,
limit=24,
sort=CatalogSort.POPULARITY,
)
).json()
first_product_id = products[0]["id"]
first_product_url = products[0]["url"]
print(f"Первый товар: {products[0]['title']!s:.60s} ({first_product_id})")
# 3. Геолокация (влияет на каталог и баланс)
cities = (await api.Geolocation.cities_list(country_id=2)).json() # Россия
api.city_id = cities[0]["id"]
print(f"Текущий city_id: {api.city_id}")
# 4. Проверка наличия товара по магазинам
balance = (await api.Catalog.Product.balance(product_id=first_product_id)).json()
print(f"Проверено магазинов: {len(balance)}")
# 5. Подробное инфо о товаре
info = (await api.Catalog.Product.info(url=first_product_url)).json()
print(f"Подробно о товаре: {list(info.keys())}")
# 6. Загрузка изображения
image_url = products[0]["images"][0]["src"]
image_stream = await api.General.download_image(image_url)
with Image.open(image_stream) as img:
print(f"Image format: {img.format}, size: {img.size}")
if __name__ == "__main__":
asyncio.run(main())
> Первая категория: kosmetika-i-gigiena
> Первый товар: Крем для рук и тела, 150 мл (2345678)
> Текущий city_id: 3
> Проверено магазинов: 339
> Image format: WEBP, size: (190, 190)
Для более подробной информации смотрите референсы документации.
Автотесты API (pytest + snapshots)
В проекте используется автотест-фреймворк из human_requests:
- endpoint-методы в бизнес-коде помечаются
@autotest; - pytest-плагин сам находит эти методы и запускает их;
- JSON-ответы проверяются через
pytest-jsonschema-snapshot(schemashot); - параметры вызова и пост-обработка результата регистрируются в
tests/api_test.pyчерез:@autotest_params@autotest_hook@autotest_depends_on
Минимальная конфигурация уже включена в pyproject.toml:
[tool.pytest.ini_options]
anyio_mode = "auto"
autotest_start_class = "fixprice_api.FixPriceAPI"
Запуск тестов:
pytest
Важно:
- используется
pytest-anyio(неpytest-asyncio); - ручные тесты остаются только для кейсов, которые не относятся к JSON-схемам endpoint-методов (например,
download_image).
Report
If you have any problems using it / suggestions, do not hesitate to write to the project's GitHub!
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
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 fixprice_api-0.2.4.1.tar.gz.
File metadata
- Download URL: fixprice_api-0.2.4.1.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbf43613eca27da56ab12c383b7dc76f9849092a663a5efccb60656896931bcc
|
|
| MD5 |
91714d09c16c23cb42007d0fe877f73c
|
|
| BLAKE2b-256 |
7246e1b81075dc0f2c390adaac6ce7573bcbe1f74ec0ee85bbe288c2263ed3ee
|
Provenance
The following attestation bundles were made for fixprice_api-0.2.4.1.tar.gz:
Publisher:
publish.yml on Open-Inflation/fixprice_api
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fixprice_api-0.2.4.1.tar.gz -
Subject digest:
cbf43613eca27da56ab12c383b7dc76f9849092a663a5efccb60656896931bcc - Sigstore transparency entry: 1340831185
- Sigstore integration time:
-
Permalink:
Open-Inflation/fixprice_api@4c68119306826ca65143e1d112820f16ec206001 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Open-Inflation
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4c68119306826ca65143e1d112820f16ec206001 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file fixprice_api-0.2.4.1-py3-none-any.whl.
File metadata
- Download URL: fixprice_api-0.2.4.1-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91abb034284f383af7aca15a4859d35c9e423cda5f0141dca2def11413947430
|
|
| MD5 |
2588823b821382ccd5d7d9a358c639cc
|
|
| BLAKE2b-256 |
b110ea572784fb246e6396cff99be781a0ac8fe1f72d101d262ca5348e824f0d
|
Provenance
The following attestation bundles were made for fixprice_api-0.2.4.1-py3-none-any.whl:
Publisher:
publish.yml on Open-Inflation/fixprice_api
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fixprice_api-0.2.4.1-py3-none-any.whl -
Subject digest:
91abb034284f383af7aca15a4859d35c9e423cda5f0141dca2def11413947430 - Sigstore transparency entry: 1340831192
- Sigstore integration time:
-
Permalink:
Open-Inflation/fixprice_api@4c68119306826ca65143e1d112820f16ec206001 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Open-Inflation
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4c68119306826ca65143e1d112820f16ec206001 -
Trigger Event:
workflow_dispatch
-
Statement type: