File size: 9,245 Bytes
10c89d7 715218e 10c89d7 ea2400d 10c89d7 cdb68ce 4a79184 cdb68ce 715218e c43fbee 715218e 2b22ecd d2efda9 4a79184 715218e 2a6ea32 715218e 10c89d7 4a79184 715218e 2b22ecd 715218e 10c89d7 715218e 4a79184 2b22ecd 715218e 156531b 2b22ecd 715218e 2b22ecd 715218e 2b22ecd 715218e 4a79184 2b22ecd 715218e 520d961 f6ed65a 715218e 26bec7a 2b22ecd 715218e 156531b 715218e 78acf2b 715218e 78acf2b e2a5983 26bec7a 10c89d7 26bec7a 10c89d7 4a79184 715218e 10c89d7 4a79184 10c89d7 4a79184 10c89d7 4a79184 715218e 26bec7a 10c89d7 539e1c0 715218e 10c89d7 715218e d2efda9 715218e d2efda9 2a6ea32 715218e eb70ca7 |
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
import gradio as gr
import pandas as pd
import sqlite3
import os
import datetime
DATA_DIR = "data"
os.makedirs(DATA_DIR, exist_ok=True)
# Paths
DB_PATH = os.path.join(DATA_DIR, "teamup.db")
# Initialize SQLite DB
def init_db():
with sqlite3.connect(DB_PATH) as conn:
conn.execute("""
CREATE TABLE IF NOT EXISTS teamup (
id INTEGER PRIMARY KEY AUTOINCREMENT,
Name TEXT,
Discord TEXT UNIQUE,
City TEXT,
Country TEXT,
Address TEXT,
Looking TEXT,
Onlinecheck TEXT,
Languages TEXT,
Laptop TEXT,
Robot TEXT,
Skills TEXT,
Describe3 TEXT,
Experience TEXT,
Idea TEXT
);
""")
print("β
SQLite database initialized.")
init_db()
# Initialize database
conn = sqlite3.connect(DB_PATH)
c = conn.cursor()
c.execute('''
CREATE TABLE IF NOT EXISTS teamup (
discord TEXT PRIMARY KEY,
name TEXT,
city TEXT,
country TEXT,
address TEXT,
looking TEXT,
onlinecheck TEXT,
languages TEXT,
laptop TEXT,
robot TEXT,
skills TEXT,
describe3 TEXT,
experience TEXT,
idea TEXT
)
''')
conn.commit()
conn.close()
ADMIN_CODE = os.getenv("ADMIN_CODE", "")
ALL_COUNTRIES = sorted(list(set([
"United States of America", "United Kingdom", "India", "France", "Germany", "Canada", "Australia", "Japan", "Brazil", "Mexico",
"Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Argentina", "Armenia", "Austria", "Azerbaijan",
"Bangladesh", "Belgium", "Bhutan", "Bolivia", "Bosnia and Herzegovina", "Botswana", "Bulgaria", "Cambodia",
"Chile", "China", "Colombia", "Croatia", "Cuba", "Czech Republic", "Denmark", "Dominican Republic", "Ecuador",
"Egypt", "Estonia", "Ethiopia", "Finland", "Greece", "Hungary", "Iceland", "Indonesia", "Iran", "Iraq", "Ireland",
"Israel", "Italy", "Jordan", "Kenya", "Kuwait", "Latvia", "Lithuania", "Luxembourg", "Malaysia", "Malta", "Morocco",
"Nepal", "Netherlands", "New Zealand", "Nigeria", "Norway", "Pakistan", "Peru", "Philippines", "Poland", "Portugal",
"Qatar", "Romania", "Russia", "Saudi Arabia", "Serbia", "Singapore", "Slovakia", "Slovenia", "South Africa", "South Korea",
"Spain", "Sri Lanka", "Sweden", "Switzerland", "Thailand", "Tunisia", "Turkey", "Ukraine", "United Arab Emirates", "Vietnam",
"Zambia", "Zimbabwe"
])))
LANGUAGES = ["English", "French", "Spanish", "German", "Portuguese", "Chinese", "Arabic", "Hindi"]
# Insert or update profile
def submit_profile(name, discord, city, country, address, looking, onlinecheck, languages, laptop, robot, skills, describe3, experience, idea):
if not discord or not city or not country or not laptop or not robot:
return "β Please fill in all required fields."
lang_str = ", ".join(languages) if isinstance(languages, list) else languages
conn = sqlite3.connect(DB_FILE)
c = conn.cursor()
c.execute("""
INSERT INTO teamup (discord, name, city, country, address, looking, onlinecheck, languages, laptop, robot, skills, describe3, experience, idea)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
ON CONFLICT(discord) DO UPDATE SET
name=excluded.name,
city=excluded.city,
country=excluded.country,
address=excluded.address,
looking=excluded.looking,
onlinecheck=excluded.onlinecheck,
languages=excluded.languages,
laptop=excluded.laptop,
robot=excluded.robot,
skills=excluded.skills,
describe3=excluded.describe3,
experience=excluded.experience,
idea=excluded.idea
""", (discord, name, city.title(), country.title(), address, looking, onlinecheck, lang_str.lower(), laptop, robot, skills, describe3, experience, idea))
conn.commit()
conn.close()
return "β
Profile saved!"
# Filter and return HTML table
def filter_by_fields(selected_country, selected_city, selected_language):
conn = sqlite3.connect(DB_FILE)
df = pd.read_sql_query("SELECT * FROM teamup", conn)
conn.close()
if df.empty:
return "<p>No data available.</p>"
df["City"] = df["city"].str.title()
df["Country"] = df["country"].str.title()
df["Languages"] = df["languages"]
if selected_country != "All":
df = df[df["Country"] == selected_country.title()]
if selected_city != "All":
df = df[df["City"] == selected_city.title()]
if selected_language != "All":
df = df[df["Languages"].str.contains(selected_language.lower(), na=False)]
if df.empty:
return "<p>No participants match your filters.</p>"
html = "<table style='width:100%; border-collapse: collapse;'><tr>"
headers = ["Discord", "Name", "City", "Country", "Looking", "Onlinecheck", "Languages", "Laptop", "Robot", "Skills", "Describe3", "Experience", "Idea"]
for col in headers:
html += f"<th style='border:1px solid #ccc; padding:6px;'>{col}</th>"
html += "</tr>"
for _, row in df.iterrows():
html += "<tr>"
for col in ["discord", "name", "City", "Country", "looking", "onlinecheck", "Languages", "laptop", "robot", "skills", "describe3", "experience", "idea"]:
val = row[col]
if col == "discord":
val = f"<a href='https://discord.com/users/{val}' target='_blank'>{val}</a>"
html += f"<td style='border:1px solid #eee; padding:6px;'>{val}</td>"
html += "</tr>"
html += "</table>"
return html
# Update city dropdown
def update_city_filter(country):
conn = sqlite3.connect(DB_FILE)
c = conn.cursor()
if country == "All":
c.execute("SELECT DISTINCT city FROM teamup")
else:
c.execute("SELECT DISTINCT city FROM teamup WHERE country = ?", (country.title(),))
cities = [r[0].title() for r in c.fetchall() if r[0]]
conn.close()
return gr.update(choices=["All"] + sorted(cities), value="All")
# Delete
def delete_by_discord(discord, code):
if code != ADMIN_CODE:
return "β Invalid admin code."
conn = sqlite3.connect(DB_FILE)
c = conn.cursor()
c.execute("DELETE FROM teamup WHERE lower(discord) = ?", (discord.lower(),))
conn.commit()
conn.close()
return f"ποΈ Deleted user with Discord: {discord}"
with gr.Blocks(css=".gr-dropdown { max-height: 100px; overflow-y: auto; font-size: 12px; }") as demo:
gr.Markdown("# π LeRobot Worldwide Hackathon - Team-Up Dashboard")
with gr.Row():
with gr.Column():
name = gr.Text(label="Name")
discord = gr.Text(label="π€ Discord Username *")
city = gr.Text(label="π City *")
country = gr.Dropdown(label="π Country *", choices=ALL_COUNTRIES, value="France")
address = gr.Text(label="Address (optional)")
looking = gr.Radio(["Yes", "No"], label="π Looking for a team?")
onlinecheck = gr.Radio(["Participate Online", "Join a Local Hackathon"], label="π I will...")
languages = gr.CheckboxGroup(choices=LANGUAGES, label="Languages Spoken *")
laptop = gr.Text(label="π» Laptop Setup *")
robot = gr.Text(label="π€ Robot Setup *")
skills = gr.Text(label="π§ Skills (comma separated)")
describe3 = gr.Text(label="3 Words That Describe You")
experience = gr.Dropdown(choices=["Beginner", "Intermediate", "Advanced"], label="Experience Level", value="Beginner")
idea = gr.Textbox(label="Project Idea (optional)")
submit_btn = gr.Button("Submit or Update β
")
status = gr.Textbox(label="", interactive=False)
with gr.Column():
country_filter = gr.Dropdown(label="Filter by Country", choices=["All"] + ALL_COUNTRIES, value="All")
city_filter = gr.Dropdown(label="Filter by City", choices=["All"], value="All")
language_filter = gr.Dropdown(label="Filter by Language", choices=["All"] + LANGUAGES, value="All")
table_html = gr.HTML(label="Matching Participants")
country_filter.change(fn=update_city_filter, inputs=[country_filter], outputs=[city_filter])
for dropdown in [country_filter, city_filter, language_filter]:
dropdown.change(fn=filter_by_fields, inputs=[country_filter, city_filter, language_filter], outputs=[table_html])
submit_btn.click(fn=submit_profile, inputs=[name, discord, city, country, address, looking, onlinecheck, languages, laptop, robot, skills, describe3, experience, idea], outputs=[status])
submit_btn.click(fn=filter_by_fields, inputs=[country_filter, city_filter, language_filter], outputs=[table_html])
gr.Markdown("---\n### π‘οΈ Admin Panel")
admin_discord = gr.Text(label="Discord Username")
admin_code = gr.Text(label="Admin Code", type="password")
del_btn = gr.Button("Delete Profile")
del_status = gr.Textbox(label="Status", interactive=False)
del_btn.click(delete_by_discord, inputs=[admin_discord, admin_code], outputs=[del_status])
demo.launch()
|