dgunning / edgartools

Navigate SEC Edgar data in Python
MIT License
516 stars 101 forks source link

13-HF: how to access Period of Report from the filing #152

Closed mmistroni closed 3 days ago

mmistroni commented 3 days ago

Hi, not a bug but i am trying to find out how to access the Period of Report from a Form 13-HF

filings_13 = get_filings(2024, 1 , '13F-HR') dir(filings_13[0])

Kind regards Marco

dgunning commented 3 days ago

Convert the filing to a ThirteenF object first


>>> from edgar import *
>>> filings = get_filings(form="13F-HR")
>>> filing = filings[0]
>>> hr = filing.obj()
>>> hr.report_period
mmistroni commented 3 days ago

Thanks Dwight you can close issue rgds

On Tue, Nov 19, 2024 at 3:55 PM Dwight Gunning @.***> wrote:

Convert the filing to a ThirteenF object first

from edgar import *>>> filings = get_filings(form="13F-HR")>>> filing = filings[0]>>> hr = filing.obj()>>> hr.report_period

— Reply to this email directly, view it on GitHub https://github.com/dgunning/edgartools/issues/152#issuecomment-2486100906, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACPNCDXTN3BUIZFV7DDHX4L2BNNNLAVCNFSM6AAAAABSCH6D3GVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIOBWGEYDAOJQGY . You are receiving this because you authored the thread.Message ID: @.***>