Skip to content

Commit 4f58516

Browse files
committed
dummy data product boiller plate
1 parent 1586f91 commit 4f58516

File tree

13 files changed

+10
-0
lines changed

13 files changed

+10
-0
lines changed

dummy-data-product/src/.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/*.pyc

dummy-data-product/src/Dockerfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:3.8-slim-buster
2+
3+
COPY requirements.txt .
4+
5+
RUN pip3 install -r requirements.txt
6+
7+
COPY . .
8+
9+
ENTRYPOINT ["python3"]

dummy-data-product/src/client.py

Whitespace-only changes.

dummy-data-product/src/dependencies/cleaning/__init__.py

Whitespace-only changes.

dummy-data-product/src/dependencies/cleaning/cleaning.py

Whitespace-only changes.

dummy-data-product/src/dependencies/geocoding/__init__.py

Whitespace-only changes.

dummy-data-product/src/dependencies/geocoding/geocoder.py

Whitespace-only changes.

dummy-data-product/src/dependencies/scraping/__init__.py

Whitespace-only changes.

dummy-data-product/src/dependencies/scraping/scraper.py

Whitespace-only changes.

dummy-data-product/src/dependencies/standardization/__init__.py

Whitespace-only changes.

dummy-data-product/src/dependencies/standardization/standardizer.py

Whitespace-only changes.

dummy-data-product/src/dependencies/utils/__init__.py

Whitespace-only changes.

dummy-data-product/src/requirements.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)