-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
46 lines (43 loc) · 1.24 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"edgar_crawler": {
"start_year": 2016,
"end_year": 2022,
"quarters": [1, 2, 3, 4],
"filing_types": ["8-K"],
"user_agent": "Mozilla",
"raw_filings_folder": "RAW_FILINGS",
"indices_folder": "INDICES",
"filings_metadata_file": "FILINGS_METADATA.csv",
"skip_present_indices": true
},
"extract_items_8k": {
"raw_filings_folder": "RAW_FILINGS",
"extracted_filings_folder": "8_K",
"filings_metadata_file": "FILINGS_METADATA.csv",
"items_to_extract": [
"1.01","1.02","1.03","2.01","2.02","2.03","2.04","2.05",
"2.06","3.01","3.02","3.03","4.01","4.02","5.01","5.02",
"5.03","5.05","5.07","7.01","8.01","9.01"
],
"remove_tables": true
},
"extract_items_10q": {
"raw_filings_folder": "RAW_FILINGS",
"extracted_filings_folder": "10_Q",
"filings_metadata_file": "FILINGS_METADATA.csv",
"items_to_extract": [
"1","2","3","4","1","1A","2","3","4","5","6"
],
"remove_tables": true
},
"extract_items": {
"raw_filings_folder": "RAW_FILINGS",
"extracted_filings_folder": "10_K",
"filings_metadata_file": "FILINGS_METADATA.csv",
"items_to_extract": [
"1", "1A", "1B", "2", "3", "4", "5", "6", "7", "7A",
"8", "9", "9A", "9B", "10", "11", "12", "13", "14", "15"
],
"remove_tables": true
}
}