Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -13,9 +13,35 @@ def random_date():
|
|
13 |
@st.cache_data
|
14 |
def load_catalog():
|
15 |
products = {
|
16 |
-
|
17 |
-
"
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
return pd.DataFrame(products)
|
20 |
|
21 |
# Cached function for filtering the catalog
|
|
|
13 |
@st.cache_data
|
14 |
def load_catalog():
|
15 |
products = {
|
16 |
+
"Product Name": [
|
17 |
+
"Notepad++", "WinRAR", "7-Zip", "CCleaner", "TeamViewer",
|
18 |
+
"FileZilla", "PuTTY", "WinSCP", "Everything", "Greenshot",
|
19 |
+
"Visual Studio Code", "JetBrains IntelliJ IDEA", "Sublime Text", "Atom", "Eclipse",
|
20 |
+
"PyCharm", "NetBeans", "Xcode", "Android Studio", "GitLab",
|
21 |
+
"Norton Antivirus", "McAfee Total Protection", "Kaspersky Internet Security", "Bitdefender Antivirus Plus", "Avast Free Antivirus",
|
22 |
+
"Sophos Home", "Trend Micro Antivirus+", "ESET NOD32 Antivirus", "F-Secure SAFE", "Malwarebytes",
|
23 |
+
"Microsoft Office 365", "Google Workspace", "Slack", "Trello", "Asana",
|
24 |
+
"Zoom", "Evernote", "Notion", "Dropbox", "Adobe Acrobat Reader",
|
25 |
+
"Adobe Photoshop", "Adobe Illustrator", "Adobe Premiere Pro", "Final Cut Pro", "Sketch",
|
26 |
+
"Blender", "Autodesk Maya", "CorelDRAW", "GIMP", "Inkscape"
|
27 |
+
],
|
28 |
+
"Category": [
|
29 |
+
"Utility Tools", "Utility Tools", "Utility Tools", "Utility Tools", "Utility Tools",
|
30 |
+
"Utility Tools", "Utility Tools", "Utility Tools", "Utility Tools", "Utility Tools",
|
31 |
+
"Development Tools", "Development Tools", "Development Tools", "Development Tools", "Development Tools",
|
32 |
+
"Development Tools", "Development Tools", "Development Tools", "Development Tools", "Development Tools",
|
33 |
+
"Security Software", "Security Software", "Security Software", "Security Software", "Security Software",
|
34 |
+
"Security Software", "Security Software", "Security Software", "Security Software", "Security Software",
|
35 |
+
"Productivity Software", "Productivity Software", "Productivity Software", "Productivity Software", "Productivity Software",
|
36 |
+
"Productivity Software", "Productivity Software", "Productivity Software", "Productivity Software", "Productivity Software",
|
37 |
+
"Creative Software", "Creative Software", "Creative Software", "Creative Software", "Creative Software",
|
38 |
+
"Creative Software", "Creative Software", "Creative Software", "Creative Software", "Creative Software"
|
39 |
+
],
|
40 |
+
"Cyber Approved": [True] * 50,
|
41 |
+
"Accessibility Approved": [True] * 50,
|
42 |
+
"Privacy Approved": [True] * 50,
|
43 |
+
"Review Date": [datetime.now().strftime("%Y-%m-%d")] * 50
|
44 |
+
}
|
45 |
return pd.DataFrame(products)
|
46 |
|
47 |
# Cached function for filtering the catalog
|