Skip to content

Commit

Permalink
[Enhancement] Add Start/End Date Filters To SecCompanyFilingsFetcher (#…
Browse files Browse the repository at this point in the history
…6757)

* add start-end date filters to SecCompanyFilingsFetcher

* multiple form_type allowed

* too-many-lines
  • Loading branch information
deeleeramone authored Oct 11, 2024
1 parent 3605af3 commit 737e5d4
Show file tree
Hide file tree
Showing 6 changed files with 1,193 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -913,6 +913,8 @@ def test_equity_fundamental_revenue_per_segment(params, headers):
"symbol": "AAPL",
"limit": 3,
"form_type": "8-K",
"start_date": None,
"end_date": None,
"cik": None,
"provider": "sec",
"use_cache": False,
Expand All @@ -924,6 +926,8 @@ def test_equity_fundamental_revenue_per_segment(params, headers):
"limit": 3,
"form_type": "10-Q",
"symbol": None,
"start_date": None,
"end_date": None,
"provider": "sec",
"use_cache": False,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -874,6 +874,8 @@ def test_equity_fundamental_revenue_per_segment(params, obb):
"limit": 3,
"form_type": "8-K",
"cik": None,
"start_date": None,
"end_date": None,
"provider": "sec",
"use_cache": False,
}
Expand All @@ -884,6 +886,8 @@ def test_equity_fundamental_revenue_per_segment(params, obb):
"limit": 3,
"form_type": "10-Q",
"symbol": None,
"start_date": None,
"end_date": None,
"provider": "sec",
"use_cache": False,
}
Expand Down
Loading

0 comments on commit 737e5d4

Please sign in to comment.