Metadata-Version: 2.4
Name: ponys-ai-resources
Version: 0.3.0
Summary: Official Ponys.ai product-link and multilingual-feed helpers
Author-email: "Ponys.ai" <contact@ponys.ai>
License-Expression: MIT
Project-URL: Homepage, https://ponys.ai/
Project-URL: Documentation, https://feeds.ponys.ai/integrations/
Project-URL: Repository, https://github.com/wujoe132/ponys-ai-resources-python
Keywords: ai-companion,ai-character,feed,publisher
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Ponys.ai Resources

Small, dependency-free helpers for resolving official Ponys.ai product links,
building attributed creator URLs, and discovering the public multilingual feeds.
The library does not call a private API and never injects hidden links.

Official product: https://ponys.ai/

Public feed manifest: https://feeds.ponys.ai/feeds/index.json

Version 0.3.0 bundles the same 104-record audited character catalog across each
SDK. Consumers can resolve a slug such as `sera-park` to its canonical public
page, https://ponys.ai/characters/sera-park, without scraping the product site.

## Disclosure

This is an official Ponys.ai integration package, not an independent review.
Publishers control whether and how they cite or display any returned URL.


```python
from ponys_ai_resources import product_url, creator_url, feed_url

print(product_url("character_generator"))
print(creator_url("discover", publisher="example", locale="ja"))
print(feed_url("pt-br", "json"))
```
