Skip to content

Commit

Permalink
First commit of awesome project
Browse files Browse the repository at this point in the history
  • Loading branch information
vasilismourtakos committed Jan 19, 2023
0 parents commit 602a384
Show file tree
Hide file tree
Showing 9 changed files with 163 additions and 0 deletions.
132 changes: 132 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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/
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Project Template
This is a project template to help you kick-start your next assignment, data-engineering wise!
25 changes: 25 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 2 additions & 0 deletions requirements_etl.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pytest
git+https://github.com/vasilis-mourtakos/pydata_etl_pipelines.git@main#egg=etl_pipelines
Empty file added src/main.py
Empty file.
Empty file added src/module1/__init__.py
Empty file.
Empty file added tests/test_main.py
Empty file.
Empty file added tests/test_unit/__init__.py
Empty file.
2 changes: 2 additions & 0 deletions tests/test_unit/test_this.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_this():
assert 1==2

0 comments on commit 602a384

Please sign in to comment.