FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-patterns/3-tier.py at master · jstacoder/python-patterns · GitHub
jstacoder
/
python-patterns
Public
forked from
faif/python-patterns
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-patterns
/
3-tier.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
58 lines (42 loc) · 1.46 KB
Breadcrumbs
python-patterns
/
3-tier.py
Copy path
File metadata and controls
58 lines (42 loc) · 1.46 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
class
Data
(
object
):
products
=
{
'milk'
: {
'price'
:
1.50
,
'quantity'
:
10
},
'eggs'
: {
'price'
:
0.20
,
'quantity'
:
100
},
'cheese'
: {
'price'
:
2.00
,
'quantity'
:
10
}
}
class
BusinessLogic
(
object
):
def
__init__
(
self
):
self
.
data
=
Data
()
def
product_list
(
self
):
return
self
.
data
.
products
.
keys
()
def
product_information
(
self
,
product
):
return
self
.
data
.
products
.
get
(
product
,
None
)
class
Ui
(
object
):
def
__init__
(
self
):
self
.
business_logic
=
BusinessLogic
()
def
get_product_list
(
self
):
print
(
'PRODUCT LIST:'
)
for
product
in
self
.
business_logic
.
product_list
():
print
(
product
)
print
(
''
)
def
get_product_information
(
self
,
product
):
product_info
=
self
.
business_logic
.
product_information
(
product
)
if
product_info
:
print
(
'PRODUCT INFORMATION:'
)
print
(
'Name: {0}, Price: {1:.2f}, Quantity: {2:}'
.
format
(
product
.
title
(),
product_info
.
get
(
'price'
,
0
),
product_info
.
get
(
'quantity'
,
0
)))
else
:
print
(
'That product "{0}" does not exist in the records'
.
format
(
product
))
def
main
():
ui
=
Ui
()
ui
.
get_product_list
()
ui
.
get_product_information
(
'cheese'
)
ui
.
get_product_information
(
'eggs'
)
ui
.
get_product_information
(
'milk'
)
ui
.
get_product_information
(
'arepas'
)
if
__name__
==
'__main__'
:
main
()
Back
|
FazBrowse Home
|
New Git URL