forked from steverharaguchi/uplimit_intermediate_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
28 lines (24 loc) · 653 Bytes
/
constants.py
File metadata and controls
28 lines (24 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
DATA_FOLDER_NAME = 'data'
SEED_FOLDER_NAME = 'seed'
SEED_FILE_NAME = 'items.json'
DATE_FORMAT = "%Y/%m/%d"
# column_names - generated data (big, small, test)
class SeedDataColNames:
STOCK_NO = 'stock_no'
DESCRIPTION = 'description'
UNIT_PRICE = 'unit_price'
UNITS = 'units'
TOTAL = 'total'
COUNTRY = 'country'
INVOICE_NO = 'InvoiceNo'
DATE = 'Date'
# column names - seed data
class OutDataColNames:
STOCK_CODE = 'StockCode'
DESCRIPTION = 'Description'
UNIT_PRICE = 'UnitPrice'
QUANTITY = 'Quantity'
TOTAL_PRICE = 'TotalPrice'
COUNTRY = 'Country'
INVOICE_NO = 'InvoiceNo'
DATE = 'Date'