-
|
Hi, Anyway, I am trying to build some data pipelines for EDGAR and in order to avoid running into rate-limits during queries I'm trying to build a local mirror of the SGML submission files for the companies and forms I want. I have a full local index of every filing in EDGAR, and a local mirror containing every SGML submission I want. Now I'm working on parsing the local SGML files. I'd like to create I'm sure the functionality exists here but maybe it's not as simple as I'm thinking. Any ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
|
Ok, I'd like to refine my question: Turns out the |
Beta Was this translation helpful? Give feedback.
-
|
You want to turn Local Storage ON and download data use_local_storage() # OR os.environ['EDGAR_USE_LOCAL_DATA'] = 1
download_edgar_data() |
Beta Was this translation helpful? Give feedback.
-
|
I just released a fix in Release 4.4.3 that eliminated 2 network calls that were still being issued when local storage was turned on. I just tested with my wifi off that I can create a filing from an SGML file use_local_storage()
filing = Filing.from_sgml("0001104659-25-002604.txt")So for your purposes you need to call Let me know how I can help - I'm trying to get it working seamlessly |
Beta Was this translation helpful? Give feedback.
I just released a fix in Release 4.4.3 that eliminated 2 network calls that were still being issued when local storage was turned on. I just tested with my wifi off that I can create a filing from an SGML file
So for your purposes you need to call
use_local_storageand the basic functionality should work. You candownload_edgar_data()to get more data locally (like tickers, submissions etc)Let me know how I can help - I'm trying to get it working seamlessly
Local Storage documentation