Skip to content

Commit 83e0fc8

Browse files
author
Vivian Ta
committed
adding lesson05
1 parent c150941 commit 83e0fc8

File tree

7 files changed

+562
-0
lines changed

7 files changed

+562
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
user_id,name,address,zip_code,phone_number,email
2+
user001,Elisa Miles,4490 Union Street,98109,206-922-0882,[email protected]
3+
user002,Maya Data,4936 Elliot Avenue,98115,206-777-1927,[email protected]
4+
user003,Andy Norris,348 Terra Street,98501,206-309-2533,[email protected]
5+
user004,Flor Matatena,885 Boone Crockett Lane,97209,206-414-2629,[email protected]
6+
user005,Dan Sounders,861 Honeysuckle Lane,98244,206-279-1723,[email protected]
7+
user006,Leo Dembele,2725 Mutton Town Road,98368,206-203-1294,[email protected]
8+
user007,Pete Nicholas,668 Elliot Avenue,98115,206-279-8759,[email protected]
9+
user008,Shirlene Harris,4329 Honeysuckle Lane,98055,206-279-5340,[email protected]
10+
user009,Nick Rather,4679 Goodwin Avenue,98619,206-777-1965,[email protected]
11+
user010,Jose Garza,2717 Raccoon Run,98116,206-946-8200,[email protected]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
product_id,description,product_type,quantity_available
2+
prd001,60-inch TV stand,livingroom,3
3+
prd002,L-shaped sofa,livingroom,0
4+
prd003,Acacia kitchen table,kitchen,7
5+
prd004,Queen bed,bedroom,10
6+
prd005,Reading lamp,bedroom,20
7+
prd006,Portable heater,bathroom,14
8+
prd007,Ballerina painting,livingroom,0
9+
prd008,Smart microwave,kitchen,30
10+
prd009,Popcorn machine,kitchen,0
11+
prd010,60-inch TV,livingroom,3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
product_id,user_id
2+
prd003,user004
3+
prd002,user008
4+
prd002,user005
5+
prd005,user001
6+
prd010,user002
7+
prd007,user002
8+
prd006,user003
9+
prd005,user003
10+
prd001,user010
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,236 @@
1+
[MASTER]
2+
3+
# Specify a configuration file.
4+
#rcfile=
5+
6+
# Python code to execute, usually for sys.path manipulation such as
7+
# pygtk.require().
8+
#init-hook=
9+
10+
# Profiled execution.
11+
profile=no
12+
13+
# Add <file or directory> to the black list. It should be a base name, not a
14+
# path. You may set this option multiple times.
15+
ignore=CVS
16+
17+
# Pickle collected data for later comparisons.
18+
persistent=yes
19+
20+
# List of plugins (as comma separated values of python modules names) to load,
21+
# usually to register additional checkers.
22+
load-plugins=
23+
24+
25+
[MESSAGES CONTROL]
26+
27+
# Enable the message, report, category or checker with the given id(s). You can
28+
# either give multiple identifier separated by comma (,) or put this option
29+
# multiple time.
30+
#enable=
31+
32+
# Disable the message, report, category or checker with the given id(s). You
33+
# can either give multiple identifier separated by comma (,) or put this option
34+
# multiple time.
35+
disable= too-few-public-methods, too-many-arguments
36+
37+
38+
[REPORTS]
39+
40+
# Set the output format. Available formats are text, parseable, colorized, msvs
41+
# (visual studio) and html
42+
output-format=text
43+
44+
# Include message's id in output
45+
include-ids=no
46+
47+
# Put messages in a separate file for each module / package specified on the
48+
# command line instead of printing them on stdout. Reports (if any) will be
49+
# written in a file name "pylint_global.[txt|html]".
50+
files-output=no
51+
52+
# Tells whether to display a full report or only the messages
53+
reports=yes
54+
55+
# Python expression which should return a note less than 10 (10 is the highest
56+
# note). You have access to the variables errors warning, statement which
57+
# respectively contain the number of errors / warnings messages and the total
58+
# number of statements analyzed. This is used by the global evaluation report
59+
# (R0004).
60+
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
61+
62+
# Add a comment according to your evaluation note. This is used by the global
63+
# evaluation report (R0004).
64+
comment=no
65+
66+
67+
[VARIABLES]
68+
69+
# Tells whether we should check for unused import in __init__ files.
70+
init-import=no
71+
72+
# A regular expression matching names used for dummy variables (i.e. not used).
73+
dummy-variables-rgx=_|dummy
74+
75+
# List of additional names supposed to be defined in builtins. Remember that
76+
# you should avoid to define new builtins when possible.
77+
additional-builtins=
78+
79+
80+
[BASIC]
81+
82+
# Required attributes for module, separated by a comma
83+
required-attributes=
84+
85+
# List of builtins function names that should not be used, separated by a comma
86+
bad-functions=map,filter,apply,input
87+
88+
# Regular expression which should only match correct module names
89+
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
90+
91+
# Regular expression which should only match correct module level names
92+
const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
93+
94+
# Regular expression which should only match correct class names
95+
class-rgx=[A-Z_][a-zA-Z0-9]+$
96+
97+
# Regular expression which should only match correct function names
98+
function-rgx=[a-z_][a-z0-9_]{2,30}$
99+
100+
# Regular expression which should only match correct method names
101+
method-rgx=[a-z_][a-z0-9_]{2,30}$
102+
103+
# Regular expression which should only match correct instance attribute names
104+
attr-rgx=[a-z_][a-z0-9_]{2,30}$
105+
106+
# Regular expression which should only match correct argument names
107+
argument-rgx=[a-z_][a-z0-9_]{2,30}$
108+
109+
# Regular expression which should only match correct variable names
110+
variable-rgx=[a-z_][a-z0-9_]{2,30}$
111+
112+
# Regular expression which should only match correct list comprehension /
113+
# generator expression variable names
114+
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
115+
116+
# Good variable names which should always be accepted, separated by a comma
117+
good-names=i,j,k,ex,Run,_
118+
119+
# Bad variable names which should always be refused, separated by a comma
120+
bad-names=foo,bar,baz,toto,tutu,tata
121+
122+
# Regular expression which should only match functions or classes name which do
123+
# not require a docstring
124+
no-docstring-rgx=__.*__
125+
126+
127+
[MISCELLANEOUS]
128+
129+
# List of note tags to take in consideration, separated by a comma.
130+
notes=FIXME,XXX,TODO
131+
132+
133+
[FORMAT]
134+
135+
# Maximum number of characters on a single line.
136+
max-line-length=80
137+
138+
# Maximum number of lines in a module
139+
max-module-lines=1000
140+
141+
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
142+
# tab).
143+
indent-string=' '
144+
145+
146+
[SIMILARITIES]
147+
148+
# Minimum lines number of a similarity.
149+
min-similarity-lines=4
150+
151+
# Ignore comments when computing similarities.
152+
ignore-comments=yes
153+
154+
# Ignore docstrings when computing similarities.
155+
ignore-docstrings=yes
156+
157+
158+
[TYPECHECK]
159+
160+
# Tells whether missing members accessed in mixin class should be ignored. A
161+
# mixin class is detected if its name ends with "mixin" (case insensitive).
162+
ignore-mixin-members=yes
163+
164+
# List of classes names for which member attributes should not be checked
165+
# (useful for classes with attributes dynamically set).
166+
ignored-classes=SQLObject
167+
168+
# When zope mode is activated, add a predefined set of Zope acquired attributes
169+
# to generated-members.
170+
zope=no
171+
172+
# List of members which are set dynamically and missed by pylint inference
173+
# system, and so shouldn't trigger E0201 when accessed.
174+
generated-members=REQUEST,acl_users,aq_parent
175+
176+
177+
[DESIGN]
178+
179+
# Maximum number of arguments for function / method
180+
max-args=5
181+
182+
# Argument names that match this expression will be ignored. Default to name
183+
# with leading underscore
184+
ignored-argument-names=_.*
185+
186+
# Maximum number of locals for function / method body
187+
max-locals=15
188+
189+
# Maximum number of return / yield for function / method body
190+
max-returns=6
191+
192+
# Maximum number of branch for function / method body
193+
max-branchs=12
194+
195+
# Maximum number of statements in function / method body
196+
max-statements=50
197+
198+
# Maximum number of parents for a class (see R0901).
199+
max-parents=7
200+
201+
# Maximum number of attributes for a class (see R0902).
202+
max-attributes=7
203+
204+
# Minimum number of public methods for a class (see R0903).
205+
min-public-methods=2
206+
207+
# Maximum number of public methods for a class (see R0904).
208+
max-public-methods=20
209+
210+
211+
[IMPORTS]
212+
213+
# Deprecated modules which should not be used, separated by a comma
214+
deprecated-modules=regsub,string,TERMIOS,Bastion,rexec
215+
216+
# Create a graph of every (i.e. internal and external) dependencies in the
217+
# given file (report RP0402 must not be disabled)
218+
import-graph=
219+
220+
# Create a graph of external dependencies in the given file (report RP0402 must
221+
# not be disabled)
222+
ext-import-graph=
223+
224+
# Create a graph of internal dependencies in the given file (report RP0402 must
225+
# not be disabled)
226+
int-import-graph=
227+
228+
229+
[CLASSES]
230+
231+
# List of interface methods to ignore, separated by a comma. This is used for
232+
# instance to not check methods defines in Zope's Interface base class.
233+
ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by
234+
235+
# List of method names used to declare (i.e. assign) instance attributes.
236+
defining-attr-methods=__init__,__new__,setUp

0 commit comments

Comments
 (0)