Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lesson06/07/08 files #23

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c0cd024
Initial tests, linting 10/10
visokoo Apr 7, 2019
ec938bb
Working unit and integration tests
visokoo Apr 8, 2019
5b7194b
Moved tests to tests/ dir and added README.md
visokoo Apr 8, 2019
3e7e36a
fixing README relative link
visokoo Apr 8, 2019
d11b500
final fix on readme
visokoo Apr 8, 2019
fee39b4
remove clutter of other uncompleted lessons
visokoo Apr 8, 2019
07d7429
removing activity/ from lesson01 and adding dir to .gitignore
visokoo Apr 8, 2019
f80f0f9
Working code with logger messages
visokoo Apr 14, 2019
9de4a95
Working logging levels and command line options
visokoo Apr 15, 2019
c2f11e9
satisfy pylint double blank line
visokoo Apr 18, 2019
ed1cc16
adding assignment 3
visokoo Apr 23, 2019
cfc7163
remove with statement on non database write transactions
Apr 25, 2019
f8aee66
remove customers.db
visokoo Apr 27, 2019
786c578
Merge branch 'master' of github.com:visokoo/Python220A_2019
visokoo Apr 27, 2019
43c4e89
adding lesson04 files
visokoo Apr 29, 2019
1d83fef
adding db.log file and customers.db
visokoo Apr 29, 2019
4f1f929
add db.log
visokoo Apr 29, 2019
c150941
Remove exception and place in conditional
May 1, 2019
83e0fc8
adding lesson05
May 6, 2019
27ab94c
refactored import_data function
visokoo May 9, 2019
54c609a
remove csv since it was too large
visokoo May 19, 2019
9e74395
update .gitignore
visokoo May 19, 2019
040e0e2
Merge branch 'master' into master
visokoo May 19, 2019
13b9161
add lesson7 activity files
visokoo Jun 1, 2019
24a8335
lesson07 files
Jun 2, 2019
997c07c
lesson08 files
Jun 4, 2019
f2acd4a
Working logging decorator
Jun 9, 2019
91eed46
working lesson09
Jun 9, 2019
7d8e6a7
metaprogramming for func timing
Jun 10, 2019
38a2614
working lesson10
Jun 10, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions students/visokoo/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
.DS_Store
.vscode
*.zip
lesson06/assignment/data/exercise.csv

148 changes: 68 additions & 80 deletions students/visokoo/lesson05/assignment/src/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
database.py
A compilation of methods to interact with a MongoDB DB
"""
from src.mongodb import MongoDBConnection
from pymongo.errors import BulkWriteError
import os
import logging
import pandas as pd
import os
from pymongo.errors import BulkWriteError
from src.mongodb import MongoDBConnection


def init_logging():
Expand All @@ -20,7 +20,7 @@ def init_logging():
formatter = logging.Formatter(log_format)
file_handler = logging.FileHandler(log_file)
file_handler.setFormatter(formatter)
file_handler.setLevel(logging.DEBUG)
file_handler.setLevel(logging.INFO)
logger.addHandler(file_handler)

return logger
Expand All @@ -47,82 +47,67 @@ def import_data(directory_name, product_file, customer_file, rentals_file):
"""
with MONGO:
try:
db = MONGO.connection.db
products_col, customers_col, rentals_col = (db['products'],
db['customers'],
db['rentals'])
database = MONGO.connection.db
products_col, customers_col, rentals_col = (database['products'],
database['customers'],
database['rentals'])
csvs = [product_file, customer_file, rentals_file]
LOGGER.info('CSV files: %s', csvs)
data_dir = os.listdir(os.path.abspath(directory_name))
records = []
errors = []
file_dict = {'product.csv': products_col,
'customers.csv': customers_col,
'rental.csv': rentals_col}
for csv in csvs:
if csv in data_dir:
if csv == product_file:
try:
LOGGER.info("CSV file is a {csv}")
errors_count = 0
csv_list = []
csv_dict = pd.read_csv(
os.path.abspath(
directory_name + '/' + csv)).to_dict(
orient='records')
for row in csv_dict:
id = row.pop('product_id')
row['_id'] = id
csv_list.append(row)
result = db.products_col.insert_many(
csv_list, ordered=True)
records.append(len(result.inserted_ids))
LOGGER.info("Total records from %s are: %s",
csv, len(result.inserted_ids))
except BulkWriteError:
errors_count += 1
errors.append(errors_count)
elif csv == customer_file:
try:
LOGGER.info("CSV file is a {csv}")
errors_count = 0
csv_list = []
csv_dict = pd.read_csv(
os.path.abspath(
directory_name + '/' + csv)).to_dict(
orient='records')
for row in csv_dict:
id = row.pop('user_id')
row['_id'] = id
csv_list.append(row)
result = db.customers_col.insert_many(
csv_list, ordered=True)
records.append(len(result.inserted_ids))
LOGGER.info("Total records from %s are: %s",
csv, len(result.inserted_ids))
except BulkWriteError:
errors_count += 1
errors.append(errors_count)

elif csv == rentals_file:
try:
LOGGER.info("CSV file is a {csv}")
errors_count = 0
csv_list = []
csv_dict = pd.read_csv(
os.path.abspath(
directory_name + '/' + csv)).to_dict(
orient='records')
result = db.rentals_col.insert_many(
csv_dict, ordered=True)
records.append(len(result.inserted_ids))
LOGGER.info("Total records from %s are: %s",
csv, len(result.inserted_ids))
except BulkWriteError:
errors_count += 1
errors.append(errors_count)
collection = file_dict[csv]
try:
LOGGER.info("CSV file is a {csv}")
errors_count = 0
csv_list = csv_to_list_dict(directory_name, csv)
result = collection.insert_many(
csv_list, ordered=True)
records.append(len(result.inserted_ids))
LOGGER.info("Total records from %s are: %s",
csv, len(result.inserted_ids))
except BulkWriteError as error:
LOGGER.error("Bulk write issue: %s", error.details)
print(error.details)
errors_count += 1
errors.append(errors_count)
except Exception as error:
LOGGER.error("Error: %s", error)
finally:
return tuple(records), tuple(errors)


def csv_to_list_dict(directory_name, csv):
"""csv_to_list_dict(directory_name, csv)

Given a directory and a csv file, read the CSV and convert it to
a dict and add it into the returned list.

:param directory_name str: Name of the dir where your CSV files are located
:param csv str: Name of the CSV file

:return list containing a dict values of the CSV data
:rtype list
"""
LOGGER.info("CSV file is a {csv}")
csv_list = []
csv_dict = pd.read_csv(
os.path.abspath(
directory_name + '/' + csv)).to_dict(
orient='records')
for row in csv_dict:
if csv != "rental.csv":
db_id = row.pop(list(row.keys())[0])
row['_id'] = db_id
csv_list.append(row)
return csv_list


def show_available_products():
"""show_available_products()

Expand All @@ -134,10 +119,10 @@ def show_available_products():
"""
try:
with MONGO:
db = MONGO.connection.db
database = MONGO.connection.db
avail_product = {}
result = db.products_col.find(
{"quantity_available":{'$gt': 0}},
result = database.products.find(
{"quantity_available": {'$gt': 0}},
{"description": 1, "product_type": 1,
"quantity_available": 1, "_id": 1})
for row in result:
Expand All @@ -148,6 +133,7 @@ def show_available_products():
except Exception as error:
LOGGER.error("Error: %s", error)


def show_rentals(product_id):
"""show_rentals(product_id)
Returns a Python dictionary with the following user information
Expand All @@ -165,25 +151,27 @@ def show_rentals(product_id):
"""
try:
with MONGO:
db = MONGO.connection.db
database = MONGO.connection.db
customers = {}
result = db.get_collection("rentals_col").aggregate(
[{"$lookup": {"from": "customers_col",
result = database.get_collection("rentals").aggregate(
[{"$lookup": {"from": "customers",
"localField": "user_id",
"foreignField": "_id",
"as": "rentals"}},
"as": "rental"}},
{"$match": {"product_id": product_id}}])
count = 0
for row in result:
count += 1
id = f"C00{count}"
row.pop('_id'), row.pop('product_id')
customers[id] = row
db_id = f"C00{count}"
row.pop('_id')
row.pop('product_id')
customers[db_id] = row
LOGGER.info("Customers w/ Rentals: %s", customers)
return customers
except Exception as error:
LOGGER.error("Error: %s", error)


def drop_cols(*args):
"""drop_cols(*args)
Drop collections based on inputed values in DB
Expand All @@ -194,6 +182,6 @@ def drop_cols(*args):
:rtype None
"""
with MONGO:
db = MONGO.connection.db
database = MONGO.connection.db
for col in args:
db.drop_collection(col)
database.drop_collection(col)
53 changes: 29 additions & 24 deletions students/visokoo/lesson05/assignment/tests/test_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@
grade lesson 5
"""

import os
import pytest

from src import database as l


@pytest.fixture
def _show_available_products():
""" fixture for mock available products data """
return {
'prd001': {'description': '60-inch TV stand',
'product_type': 'livingroom',
'quantity_available': 3},
'product_type': 'livingroom',
'quantity_available': 3},
'prd003': {'description': 'Acacia kitchen table',
'product_type': 'kitchen',
'quantity_available': 7},
Expand All @@ -29,46 +30,50 @@ def _show_available_products():
'product_type': 'kitchen',
'quantity_available': 30},
'prd010': {'description': '60-inch TV',
'product_type': 'livingroom',
'quantity_available': 3}
'product_type': 'livingroom',
'quantity_available': 3}
}

@pytest.fixture
def _show_rentals():
""" fixture for mock rentals deta """
return {
'C001': {'rentals': [{'_id': 'user008',
'address': '4329 Honeysuckle Lane',
'email': '[email protected]',
'name': 'Shirlene Harris',
'phone_number': '206-279-5340',
'zip_code': 98055}],
'user_id': 'user008'},
'C002': {'rentals': [{'_id': 'user005',
'address': '861 Honeysuckle Lane',
'email': '[email protected]',
'name': 'Dan Sounders',
'phone_number': '206-279-1723',
'zip_code': 98244}],
'user_id': 'user005'}
'C001': {'rental': [{'_id': 'user008',
'address': '4329 Honeysuckle Lane',
'email': '[email protected]',
'name': 'Shirlene Harris',
'phone_number': '206-279-5340',
'zip_code': 98055}],
'user_id': 'user008'},
'C002': {'rental': [{'_id': 'user005',
'address': '861 Honeysuckle Lane',
'email': '[email protected]',
'name': 'Dan Sounders',
'phone_number': '206-279-1723',
'zip_code': 98244}],
'user_id': 'user005'}
}

@pytest.mark.datafiles(os.getcwd() + '/data')
def test_import_data(datafiles):

def test_import_data():
""" import """
l.drop_cols("products_col", "customers_col", "rentals_col")
added, errors = l.import_data('data', "product.csv", "customers.csv", "rental.csv")
l.drop_cols("products", "customers", "rentals")
added, errors = l.import_data(
'data', "product.csv", "customers.csv", "rental.csv")
for add in added:
assert isinstance(add, int)

for error in errors:
assert isinstance(error, int)


def test_show_available_products(_show_available_products):
""" available products """
students_response = l.show_available_products()
assert students_response == _show_available_products


def test_show_rentals(_show_rentals):
""" rentals """
students_response = l.show_rentals("prd002")
assert students_response == _show_rentals
assert students_response == _show_rentals
Loading