-
Notifications
You must be signed in to change notification settings - Fork 5
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 - multiple series and start-time #6
Comments
Hi romanme, thanks for the suggestion. I will think of a implemention for that. Maybe neext week I have some time for that. A bit busy right now. If you have a solution already feel free to PR and I will have a look. |
Please have a look at version 0.3.0 I added your requested changes: Is this it what you where looking for? |
I am having an issue with the code"start_date: str | none" TypeError: unsupported operand types for |: 'type' and 'NoneType' |
Sorry about that. Seems you are using python below 3.10, I got rid of the PEP604 union types. Should work in 0.3.1 now. |
Still getting this issue that is forcing me to restart the kernal. Thank you so much for implementing this feature! Input In [17], in <cell line: 1>() File ~/.local/lib/python3.8/site-packages/myeia/api.py:48, in |
Sorry for that rough update. Types issues should be fixed now in 0.3.2 |
One more thing, I am getting this error. Any idea? UnboundLocalError Traceback (most recent call last) File ~/.local/lib/python3.8/site-packages/myeia/api.py:169, in API.get_series_via_route(self, route, series, frequency, facet, new_name, start_date, end_date) UnboundLocalError: local variable 'df' referenced before assignment |
Your trying to get monthly data within a month? That does not make sense. Try e.g. and it should work, otherwise you will just get an empty dataframe back, as there are no data. |
Works great! Thank you for this wonderful python package!. |
Hi,
Thanks Phil for this great package. I was wondering if there was a way to have multiple series from the same route, and as an added bonus specify where the start time should begin. Right now I am using pd.merge_asof to merge columns together, but it would be extremely helpful to have it all done in one pull. Let me know if its possible with your package.
The text was updated successfully, but these errors were encountered: