INNER CODE UNIT · Python
crawl
lefterisloukas/edgar-crawler · download_filings.py:464
def crawl(
filing_types: List[str], series: pd.Series, raw_filings_folder: str, user_agent: str
) -> pd.Series:
"""
Crawls the EDGAR HTML indexes and extracts required details.
Such details include the Filing Date, the Period of Report, the State location, the Fiscal Year End, and many more.
Args:
filing_types (List[str]): List of filing types to download.
series (pd.Series): A single series with info for specific filings.
raw_filings_folder (str): Raw filings folder path.
user_agent (str): The User-agent string that will be declared to SEC EDGAR.
Returns:
pd.Series: The series with the extracted data.
"""