-
Notifications
You must be signed in to change notification settings - Fork 0
/
structure.ini
51 lines (51 loc) · 1.5 KB
/
structure.ini
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
jumiascraper/
├── dataset/
│ ├── extracted/
│ │ ├── jumiascraper_2023-06-21T23-49-42.jsonjumiascraper_2023-06-22T00-02-19.json
│ │ └── jumiascraper_2023-06-22T00-02-19.json
│ └── normalized/
├── dbt_jumiascraper/
│ ├── analyses/
│ ├── macros/
│ ├── models/
│ │ ├── marts/
│ │ │ └── core/
│ │ └── staging/
│ ├── seeds/
│ ├── snapshots/
│ ├── tests/
│ ├── dbt_project.yml
│ ├── Dockerfile.dbt
│ ├── packages.yml
│ └── README.md
├── jumiascraper/
│ ├── __init__.py
│ ├── items.py
│ ├── middlewares.py
│ ├── pipelines.py
│ ├── settings.py
│ └── spiders/
│ ├── __init__.py
│ └── jumiaphones.py
├── processing/
│ ├── __init__.py
│ ├── file_reader.py
│ ├── normalization.py
│ └── ingestion.py
├── sql_scripts/
│ ├── create_tables.sql
│ └── drop_tables.sql
├── superset/
│ ├── __init__.py
│ ├── Dockerfile.superset
│ ├── superset_config.py
│ └── superset_setup.sh
├── terraform/
│ ├── main.tf
│ └── variables.tf
├── crawler_requirements.txt
├── docker-compose.yml
├── Dockerfile
├── requirements.txt
├── run.py
└── scrapy.cfg