From 602a3845c3b730200fe159f545de0b8d626632c7 Mon Sep 17 00:00:00 2001 From: vasilismourtakos Date: Thu, 19 Jan 2023 18:36:16 +0100 Subject: [PATCH] First commit of awesome project --- .gitignore | 132 +++++++++++++++++++++++++++++++++++ README.md | 2 + requirements.txt | 25 +++++++ requirements_etl.txt | 2 + src/main.py | 0 src/module1/__init__.py | 0 tests/test_main.py | 0 tests/test_unit/__init__.py | 0 tests/test_unit/test_this.py | 2 + 9 files changed, 163 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 requirements.txt create mode 100644 requirements_etl.txt create mode 100644 src/main.py create mode 100644 src/module1/__init__.py create mode 100644 tests/test_main.py create mode 100644 tests/test_unit/__init__.py create mode 100644 tests/test_unit/test_this.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f1d3f61 --- /dev/null +++ b/.gitignore @@ -0,0 +1,132 @@ +*.ini +.idea/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..c694a08 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Project Template +This is a project template to help you kick-start your next assignment, data-engineering wise! diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..f3a0c7d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,25 @@ +numpy +looker-sdk==21.8.1 +pandas==1.1.4 +SharePlum==0.5.1 +google-api-core==2.8.2 +google-api-python-client==2.52.0 +google-auth==2.6.0 +google-auth-httplib2==0.1.0 +google-auth-oauthlib==0.4.6 +google-cloud-appengine-logging==1.1.1 +google-cloud-audit-log==0.2.0 +google-cloud-bigquery==2.34.2 +google-cloud-bigquery-storage==2.14.2 +google-cloud-core==2.3.1 +google-cloud-logging==3.0.0 +google-cloud-secret-manager==2.9.1 +google-cloud-storage==2.4.0 +cloud-sql-python-connector==0.9.3 +openpyxl +office365 +office365-rest-client +SQLAlchemy==1.4.44 +pg8000==1.29.3 +matterhook==0.2 +pytest \ No newline at end of file diff --git a/requirements_etl.txt b/requirements_etl.txt new file mode 100644 index 0000000..3a7ccff --- /dev/null +++ b/requirements_etl.txt @@ -0,0 +1,2 @@ +pytest +git+https://github.com/vasilis-mourtakos/pydata_etl_pipelines.git@main#egg=etl_pipelines diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..e69de29 diff --git a/src/module1/__init__.py b/src/module1/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_main.py b/tests/test_main.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_unit/__init__.py b/tests/test_unit/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_unit/test_this.py b/tests/test_unit/test_this.py new file mode 100644 index 0000000..2555143 --- /dev/null +++ b/tests/test_unit/test_this.py @@ -0,0 +1,2 @@ +def test_this(): + assert 1==2 \ No newline at end of file