fred
fred copied to clipboard
Python wrapper for the St. Louis Fed's FRED API.
I want to download all details about a time series via API but the limit is set to 1000 do you know any means we can increase it ?
Try to fix https://github.com/zachwill/fred/issues/6 Caution: directly edited with GitHub, not tested
See http://docs.python-requests.org/en/master/user/advanced/#timeouts I'd suggest 3-10 seconds
`test_suite` should be the name of the Python module not the file.
Hello, you might pass a `session` parameter to Fred object (with default `session=None`) and initialize `session` using ``` def _init_session(self, session): if session is None: session = requests.Session() return session...