-
Notifications
You must be signed in to change notification settings - Fork 190
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 Request: Enable Asynchronous Operations in entsoe-py #315
Comments
That was actually easier than expected. See PR #316. Works only for Day Ahead Prices for now. |
Before seeing this feature and it's design, I often wished for an API such as The proposed design turns the problem inside out so would be preferable to the mentioned alternative design with a lot of new API code. For this to work smoothly the parsing code should be tightly coupled to the preparation code. |
hi @JrtPec and @fleimgruber I like this design idea in the PR to do the prepare, but not fully switch to async. that last one would be a lot of work and require loads of changes, while adding preparation is a lot simpler. lets discuss in the PR |
I too was hoping for something precisely like this. The API request time can be long, especially if we want to query multiple years at once (since the API only allows for max of 1 year per request) and multiple types of data (generation, cross-border, etc). I ended up implementing my own specialized async solution for the specific request I needed to make (before I found out this library), but would be nice to have it here too. |
Preface: I have brainstormed this idea with GPT-4 and asked it to write a Github issue, here it is:
Hi everybody,
I'm currently integrating entsoe-py into a "Data Collector Engine" deployed on Azure, which consists of various functions aimed at collecting and processing data. These functions are triggered both by a schedule and by HTTP calls. As part of this integration, I've encountered a challenge related to the synchronous nature of entsoe-py, which can block and potentially interfere with other asynchronous operations within the Azure environment.
Given the importance of non-blocking operations in modern cloud applications, I'd like to propose an enhancement to entsoe-py to better support asynchronous workflows. This could greatly enhance its compatibility with environments like Azure Durable Functions, which provide built-in mechanisms for asynchronous HTTP requests.
To achieve this, I suggest modifying entsoe-py to allow for a more flexible use of its functionality, specifically by:
For my immediate needs, I'm particularly interested in applying this to the day-ahead prices functionality. However, I believe this could be beneficial for a broader range of entsoe-py's features and its users.
I would love to hear the community's thoughts on this proposal:
Thank you for considering this proposal. I am looking forward to your feedback and am open to contributing to the implementation of this feature.
The text was updated successfully, but these errors were encountered: