awacke1 commited on
Commit
2a0fe4c
Β·
1 Parent(s): 07446c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -11
app.py CHANGED
@@ -211,17 +211,6 @@ def link_button_with_emoji(url, title, emoji_summary):
211
  st.markdown(f"[{random_emoji} {emoji_summary} - {title}]({url})")
212
 
213
  python_parts = {
214
- "Syntax": {"emoji": "✏️", "details": "Variables, Comments, Printing"},
215
- "Data Types": {"emoji": "πŸ“Š", "details": "Numbers, Strings, Lists, Tuples, Sets, Dictionaries"},
216
- "Control Structures": {"emoji": "πŸ”", "details": "If, Elif, Else, Loops, Break, Continue"},
217
- "Functions": {"emoji": "πŸ”§", "details": "Defining, Calling, Parameters, Return Values"},
218
- "Classes": {"emoji": "πŸ—οΈ", "details": "Creating, Inheritance, Methods, Properties"},
219
- "API Interaction": {"emoji": "🌐", "details": "Requests, JSON Parsing, HTTP Methods"},
220
- "Data Visualization Libraries1": {"emoji": "πŸ“ˆ", "details": "matplotlib, seaborn, plotly, altair, bokeh, pydeck"},
221
- "Data Visualization Libraries2": {"emoji": "πŸ“ˆ", "details": "holoviews, plotnine, graphviz"},
222
- "Error Handling": {"emoji": "⚠️", "details": "Try, Except, Finally, Raising"},
223
- "Azure Cloud Libraries": {"emoji": "☁️", "details": "azure-sdk, azure-cosmos, azure-storage-blob, azure-storage-file-share, azure-storage-queue, azure-mgmt-containerinstance, azure-mgmt-containerregistry, azure-mgmt-cosmosdb, azure-mgmt-resource, azure-functions"},
224
- "Azure Development Tools": {"emoji": "πŸ› οΈ", "details": "azure-devtools, azure-cli-core, azure-cli, vscode-python"},
225
  "HTML5 Graphics Libraries": {
226
  "emoji": "🌐",
227
  "details": "aframe, threejs, p5.js, pixi.js, paper.js, babylonjs, d3.js, vis.js"
@@ -299,6 +288,18 @@ python_parts = {
299
  "emoji": "🌩️",
300
  "details": "httpx, asyncio, xml, collections, huggingface"
301
  },
 
 
 
 
 
 
 
 
 
 
 
 
302
 
303
  }
304
 
 
211
  st.markdown(f"[{random_emoji} {emoji_summary} - {title}]({url})")
212
 
213
  python_parts = {
 
 
 
 
 
 
 
 
 
 
 
214
  "HTML5 Graphics Libraries": {
215
  "emoji": "🌐",
216
  "details": "aframe, threejs, p5.js, pixi.js, paper.js, babylonjs, d3.js, vis.js"
 
288
  "emoji": "🌩️",
289
  "details": "httpx, asyncio, xml, collections, huggingface"
290
  },
291
+ "Syntax": {"emoji": "✏️", "details": "Variables, Comments, Printing"},
292
+ "Data Types": {"emoji": "πŸ“Š", "details": "Numbers, Strings, Lists, Tuples, Sets, Dictionaries"},
293
+ "Control Structures": {"emoji": "πŸ”", "details": "If, Elif, Else, Loops, Break, Continue"},
294
+ "Functions": {"emoji": "πŸ”§", "details": "Defining, Calling, Parameters, Return Values"},
295
+ "Classes": {"emoji": "πŸ—οΈ", "details": "Creating, Inheritance, Methods, Properties"},
296
+ "API Interaction": {"emoji": "🌐", "details": "Requests, JSON Parsing, HTTP Methods"},
297
+ "Data Visualization Libraries1": {"emoji": "πŸ“ˆ", "details": "matplotlib, seaborn, plotly, altair, bokeh, pydeck"},
298
+ "Data Visualization Libraries2": {"emoji": "πŸ“ˆ", "details": "holoviews, plotnine, graphviz"},
299
+ "Error Handling": {"emoji": "⚠️", "details": "Try, Except, Finally, Raising"},
300
+ "Azure Cloud Libraries": {"emoji": "☁️", "details": "azure-sdk, azure-cosmos, azure-storage-blob, azure-storage-file-share, azure-storage-queue, azure-mgmt-containerinstance, azure-mgmt-containerregistry, azure-mgmt-cosmosdb, azure-mgmt-resource, azure-functions"},
301
+ "Azure Development Tools": {"emoji": "πŸ› οΈ", "details": "azure-devtools, azure-cli-core, azure-cli, vscode-python"},
302
+
303
 
304
  }
305