Spaces:
Sleeping
Sleeping
Commit
·
fd2ff1b
1
Parent(s):
39ed87b
uaobf
Browse files
app.py
CHANGED
@@ -35,26 +35,44 @@ material_num_name_dict = {
|
|
35 |
"others": "Others",
|
36 |
}
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
plastic_item_num_dict = {
|
39 |
-
"CD Disk": ["
|
40 |
-
"Straw": ["No, dispose as general waste"
|
41 |
-
"Plastic Bag": ["Yes,
|
42 |
-
"Clothes Hanger": ["
|
43 |
-
"Plastic Container or Bottle": ["
|
44 |
-
"Disposable Cutlery": ["No, dispose as general waste", "Nil"],
|
45 |
-
"Plastic Packaging": ["Yes,
|
46 |
-
"Plastic Packaging With Foil": ["
|
47 |
-
"Styrofoam": ["No, dispose as general waste"
|
48 |
}
|
49 |
glass_item_num_dict = {
|
50 |
-
"Ceramic": ["No, donate if can be reused"
|
51 |
-
"Glassware": ["
|
52 |
-
"Lightbulb": ["
|
53 |
}
|
54 |
metal_item_num_dict = {
|
55 |
-
"Aerosol Can": ["
|
56 |
-
"Aluminium Foil or Tray": ["
|
57 |
-
"Metal Can or Container": ["
|
58 |
}
|
59 |
others_item_num_dict = {
|
60 |
"Battery": ["Battery","No, rechargeable batteries can be recycled through specific collection points (e-waste collection)", "Nil"],
|
|
|
35 |
"others": "Others",
|
36 |
}
|
37 |
|
38 |
+
# No plastic bags, wrap, or film (please take back to a local retailer)
|
39 |
+
# No Styrofoam
|
40 |
+
# No single-use paper (no paper towels, napkins, tissues, or paper plates)
|
41 |
+
# No clothing, shoes, or textiles (take gently used items to a donation center)
|
42 |
+
# No chain, wire, hoses, or hangers of any kind
|
43 |
+
# No lumber, scrap wood, or yard waste
|
44 |
+
# No food or liquids
|
45 |
+
# No soiled food boxes
|
46 |
+
# No electronics
|
47 |
+
# No furniture
|
48 |
+
|
49 |
+
# Cardboard and boxboard (flatten boxes)
|
50 |
+
# Paper: junk mail, magazines, newspaper (no napkins, tissues, paper towels, or paper plates)
|
51 |
+
# Aluminum and steel cans (no scrap metal)
|
52 |
+
# Plastic bottles, tubs, and jugs (no plastic bags, wrap, film, or Styrofoam)
|
53 |
+
# Glass bottles and jars (remove all lids)
|
54 |
+
# Poly-coated cartons
|
55 |
+
|
56 |
plastic_item_num_dict = {
|
57 |
+
"CD Disk": ["CD Disk", "No, find a local e-waste collection near you (refer to the info page!!!)"],
|
58 |
+
"Straw": ["Straw", "No, dispose as general waste"],
|
59 |
+
"Plastic Bag": ["Plastic Bag", "Yes, plastic bags can be recycled at most big grocery stores (refer to info page!!) unless it's contaminated with food waste/liquid waste/other forms of waste."],
|
60 |
+
"Clothes Hanger": ["Clothes Hanger", "Yes, but if it's made up of more than one plastic just dispose as normal waste "],
|
61 |
+
"Plastic Container or Bottle": ["Plastic Container or Bottle", "Yes. Empty it, rinse it, and keep the cap on."],
|
62 |
+
"Disposable Cutlery": ["Disposable Cutlery", "No, dispose as general waste", "Nil"],
|
63 |
+
"Plastic Packaging": ["Plastic Packaging", "Yes, some packaging can be recycled at collection centers (refer to info page!!!) but no if directly enclosing food like cling wrap or contaminated with food contents "],
|
64 |
+
"Plastic Packaging With Foil": ["Plastic Packaging With Foil", "No, dispose as general waste"],
|
65 |
+
"Styrofoam": ["Styrofoam", "No, dispose as general waste or drop it at a collection center (refer to info page)"]
|
66 |
}
|
67 |
glass_item_num_dict = {
|
68 |
+
"Ceramic": ["Ceramic", "No, donate if can be reused"],
|
69 |
+
"Glassware": ["Glassware", "Yes. Unless there is liquid/solid residue inside the glassware. Clean and recycle if possible."],
|
70 |
+
"Lightbulb": ["Lightbulb", "No, find a local e-waste collection near you (refer to the info page!!!)"]
|
71 |
}
|
72 |
metal_item_num_dict = {
|
73 |
+
"Aerosol Can": ["Aerosol Can", "Yes, only if there is nothing left in the can"],
|
74 |
+
"Aluminium Foil or Tray": ["Aluminium Foil or Tray", "Yes. Unless there is any residue. Clean and recycle if possible."],
|
75 |
+
"Metal Can or Container": ["Metal Can or Container", "Yes. Unless there is any residue. Clean and recycle if possible."]
|
76 |
}
|
77 |
others_item_num_dict = {
|
78 |
"Battery": ["Battery","No, rechargeable batteries can be recycled through specific collection points (e-waste collection)", "Nil"],
|