Unstructured-IO / pipeline-sec-filings

Preprocessing pipeline notebooks and API supporting text extraction from SEC documents
Apache License 2.0
140 stars 29 forks source link

Quick tour Colab notebook not working #181

Open rodrigo-92 opened 10 months ago

rodrigo-92 commented 10 months ago

Hi, I'm getting the following error in the cell where get_form_by_ticker is called.

HTTPError: 403 Client Error: Forbidden for url: http://www.sec.gov/cgi-bin/browse-edgar?CIK=rgld&Find=Search&owner=exclude&action=getcompany

Could you please help me how to solve this issue?

Thanks.

mcleanalec commented 10 months ago

Changing the "company" and "email" params (to anything else) in the get_form_by_ticker function worked for me.

text = get_form_by_ticker(
    'rgld', 
    '10-K', 
    company='new company, 
    email='new value'
)