diff --git a/.gitignore b/.gitignore index e9aa16e..2d39a1a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,166 @@ +# Sensitive files database.ini *.csv + +# ---> Python +# 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/ +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/ +cover/ + +# 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 +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .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 + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__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/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + diff --git a/__pycache__/config.cpython-311.pyc b/__pycache__/config.cpython-311.pyc deleted file mode 100644 index 39a3537..0000000 Binary files a/__pycache__/config.cpython-311.pyc and /dev/null differ diff --git a/__pycache__/insert_order.cpython-311.pyc b/__pycache__/insert_order.cpython-311.pyc deleted file mode 100644 index 3d6f28e..0000000 Binary files a/__pycache__/insert_order.cpython-311.pyc and /dev/null differ diff --git a/import_data.py b/import_data.py index 2016521..8b31e36 100644 --- a/import_data.py +++ b/import_data.py @@ -2,7 +2,9 @@ import glob import csv import shutil +import re from insert_order import insert_order +from insert_hourly import insert_hourly # Import Oder History path = "./upload/Order_History*.csv" @@ -22,4 +24,19 @@ for filename in glob.glob(path): print(row) insert_order (row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9]) shutil.move(filename, "history/") + +# Import Hourly Sales +path = "./upload/Hourly_Sales*.csv" +for filename in glob.glob(path): + print(filename) + date = re.search(r'[0-9][0-9][0-9][0-9][-][0-9][0-9][-][0-9][0-9]', filename) + print(date[0]) + with open(filename) as file_obj: + heading = next(file_obj) + reader_obj = csv.reader(file_obj) + for row in reader_obj: + if row[0] != 'Totals': + print(row) + insert_hourly (date[0], row[0], row[1], row[2], row[3], row[4], row[5], row[6]) + shutil.move(filename, "history/") diff --git a/insert_hourly.py b/insert_hourly.py new file mode 100644 index 0000000..9dfbf8d --- /dev/null +++ b/insert_hourly.py @@ -0,0 +1,29 @@ +import sys +import psycopg2 +from config import load_config + + +def insert_hourly(date, time, transactions, guests, items, avg_sales, sales, percent_sales): + """ Insert a new record into the guests table """ + + sql = """INSERT INTO guests(date, time, transactions, guests, items, avg_sales, sales, percent_sales) + VALUES(%s, %s, %s, %s, %s, %s, %s, %s);""" + + config = load_config() + + try: + with psycopg2.connect(**config) as conn: + with conn.cursor() as cur: + # execute the INSERT statement + cur.execute(sql, (date, time, transactions, guests, items, avg_sales, sales, percent_sales)) + + # commit the changes to the database + conn.commit() + except (Exception, psycopg2.DatabaseError) as error: + print(error) + finally: + print('success') + + +if __name__ == '__main__': + insert_hourly(sys.argv[1], sys.argv[2], sys.argv[3], sys.argv[4], sys.argv[5], sys.argv[6], sys.argv[7], sys.argv[8]) diff --git a/insert_order.py b/insert_order.py index b7121f4..c848554 100644 --- a/insert_order.py +++ b/insert_order.py @@ -9,7 +9,6 @@ def insert_order(reporting_no, order_no, offline_no, created_by, first_opened, l sql = """INSERT INTO orders(reporting_no, order_no, offline_no, created_by, first_opened, last_closed, net_sales, tax, final_total, payments_total) VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s);""" - vendor_id = None config = load_config() try: @@ -23,7 +22,6 @@ def insert_order(reporting_no, order_no, offline_no, created_by, first_opened, l except (Exception, psycopg2.DatabaseError) as error: print(error) finally: - #return vendor_id print('success')