Releases: icepick4/onepyece
v2.0.1!
🛠 Onepyece v2.0.1 - URL Endpoint Fix 🔗
We're pleased to announce a new update for Onepyece: version 2.0.1. This release focuses on a minor fix to enhance the stability and performance of our URL endpoints.
What's Fixed?
- URL Endpoint Issue: We've addressed a specific problem affecting the URL endpoints.
How Does This Affect You?
This update is essential for maintaining the integrity and performance of your applications. We recommend updating to version 2.0.1 to benefit from these improvements.
Update Now
Updating is straightforward – simply pull the latest version of Onepyece to apply these fixes. This release is compatible with all features introduced in version 2.0, including multilanguage support.
Thank you for your continued support of Onepyece. We're committed to delivering quality updates that enhance your experience and keep your applications running smoothly.
v2.0!
🌟 Onepyece v2.0 - Now with Multilanguage Support! 🌍
We're thrilled to announce the release of Onepyece version 2.0! Introducing multilanguage support.
What's New?
- Multilanguage Support: You can now generate an
API
object with a language parameter, allowing you to fetch data in either French or English.
How to Use?
Simply specify the `lang` parameter when creating your API
object. English is the default language if no parameter is set. Here's how you can use it:
import onepyece as op
# Fetch episodes in English
episodes = op.API('episodes', lang='en')
# Pour récupérer des épisodes en français
episodes_fr = op.API('episodes', lang='fr')
Available Languages
- English (default)
- French
v1.3.1!
v1.3.0!
In this new version I added all functions docstrings.
Noew every function is linked to the official API for more content and is detailed about params and return.
Official documentation : https://api-onepiece.com/documentation
I also linted the project with pylint, now on each new push the project is linted thank's to GitHub actions.
v1.2.2!
v1.2.1!
v1.2.0!
Documentation
- Adding a french detailed documentation in the docs folder.
- Adding a logo generated by the AI Midjourney.
- Adding a social preview with the logo.
New possibilities with API object
- Add a search on an endpoint only instance.
- Modify the resource associated with the search.
- Recursively create API object for nested dictionnary repsponse from the API (example : searching characters by fruit ID gives an API object for the fruit)