hi, Im trying to fetch information of filings via api, but get nan valuescould you help me on the correct way to get filings data via python api?i mostly care about filing type, date and time could you help me on the correct way to get filings data via python api?i mostly care about filing type, date and time
end_date = datetime.now()start_date = end_date - timedelta(days=365)search_def = filings.search.Definition(org_id=str(org_id),feed=filings.Feed.EDGAR,start_date=start_date,end_date=end_date,limit=200)response = search_def.get_data()# print(f"Success: {response.is_success}")# print(f"\nRaw response structure:")# print(response.data.raw)df = response.data.dfprint("Filings search DataFrame:")print(df)print(f"\nAll values null? {df.isna().all().all()}")