-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Asynchronous Implementation and Pydantic Support #91
Comments
This is a crucial case for the As mentioned in issue #35, Pydantic would be a more suitable implementation. |
@bahadiraraz There is also another |
Async support is here and issue #10 already covers the Pydantic aspect, so closing |
Due to the use of synchronous requests in the library, functions such as
get_transaction_history
can take a long time to execute, posing significant challenges for developers looking to build async APIs. Additionally, many Python developers utilize Pydantic for data validation, so incorporating Pydantic into the library can greatly simplify its usage.For those interested in an asynchronous implementation, I have created a library, app-store-server-library-python-async, which uses httpx for async operations. The library also includes guidance on how to incorporate Pydantic for data validation. You can review the code and see how to implement these features.
If you have any questions or suggestions, feel free to reach out!
The text was updated successfully, but these errors were encountered: