-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdirectory.txt
More file actions
124 lines (124 loc) · 3.8 KB
/
directory.txt
File metadata and controls
124 lines (124 loc) · 3.8 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.
├── pipeline_runner.py
├── requirements.txt
│
├── scrapers/
│ ├── au_policy.py
│ ├── ohchr.py
│ ├── upr.py
│ ├── unicef.py
│ ├── acerwc.py
│ ├── achpr.py
│ ├── utils.py
│ ├── country_utils.py
│ └── region_utils.py
│
├── processors/
│ ├── pdf_to_text.py
│ ├── docx_to_text.py
│ ├── html_to_text.py
│ ├── fallback_handler.py
│ ├── json_normalizer.py
│ ├── tagger.py
│ ├── recommendations.py
│ ├── comparison.py
│ ├── tags_summary.py
│ ├── tags_timeline.py
│ ├── tags_timeline_region.py
│ ├── tags_timeline_country.py
│ └── logger.py
│
├── configs/
│ ├── tags_v1.json
│ ├── tags_v2.json
│ ├── tags_v3.json
│ ├── tags_digital.json
│ ├── tags_main.json
│ ├── recs_v1.json
│ ├── comparison.json
│ └── filters/
│ ├── default.json
│ ├── africa_groups.json
│ └── filters_config_format.md
│
├── data/
│ ├── raw/
│ │ ├── au_policy/
│ │ ├── ohchr/
│ │ ├── upr/
│ │ ├── unicef/
│ │ ├── acerwc/
│ │ ├── achpr/
│ │ └── manual/
│ │
│ ├── processed/
│ │ ├── Africa/
│ │ │ ├── African_Union/
│ │ │ │ ├── text/
│ │ │ │ ├── json/
│ │ │ │ └── ocr/
│ │ │ ├── Kenya/
│ │ │ │ ├── text/
│ │ │ │ ├── json/
│ │ │ │ └── ocr/
│ │ │ ├── Nigeria/
│ │ │ │ ├── text/
│ │ │ │ ├── json/
│ │ │ │ └── ocr/
│ │ │ └── South_Africa/
│ │ │ ├── text/
│ │ │ ├── json/
│ │ │ └── ocr/
│ │ ├── Europe/
│ │ ├── Asia/
│ │ └── Americas/
│ │
│ ├── metadata/
│ │ └── metadata.json
│ │
│ └── exports/
│ ├── tags_summary.csv (pipeline output)
│ ├── comparison_export.csv
│ ├── tags_timeline.csv
│ ├── tags_timeline_region.csv
│ └── tags_timeline_country.csv
│
├── logs/
│ └── (created at runtime)
│
├── docs/
│ ├── README.md
│ ├── FIRST_RUN_ERRORS.md
│ ├── DIRECTORY_STRUCTURE.md
│ ├── FILE_NAMING_STANDARDS.md
│ ├── DOC_TYPE_STANDARDS.md
│ ├── ISO_MAPPING.md
│ ├── METADATA_SCHEMA.md
│ ├── SCRAPER_STRUCTURE.md
│ ├── PIPELINE_LOGGING.md
│ ├── PIPELINE_FLOW.md
│ ├── RUNBOOK.md
│ ├── PROCESSOR_TEST_RUN.md
│ ├── TAGS_CONFIG_FORMAT.md
│ ├── RECOMMENDATIONS_CONFIG_FORMAT.md
│ ├── COMPARISON_CONFIG_FORMAT.md
│ ├── COMPARISON_EXPORT_NOTES.md
│ ├── TAGS_MAIN_NOTES.md
│ ├── TAGS_EXPORT_NOTES.md
│ ├── TAGS_VISUALIZATION_PLAN.md
│ ├── ROADMAP.md
│ ├── SOURCE_FEASIBILITY_CHECKLIST.md
│ └── DOCS_INDEX.md
│
├── tests/
│ ├── test_year_extraction.py
│ ├── test_csv_footer.py
│ ├── test_logging.py
│ ├── test_tagger.py
│ ├── test_fallback_handler.py
│ ├── test_metadata.py
│ └── test_comparison.py
│
└── .github/
└── workflows/
└── ci.yml