Update app.py
Browse files
app.py
CHANGED
|
@@ -1680,6 +1680,9 @@ def insert_data(data, verify_phone, add_curator):
|
|
| 1680 |
|
| 1681 |
try:
|
| 1682 |
cursor.execute(query, values)
|
|
|
|
|
|
|
|
|
|
| 1683 |
except Exception as e:
|
| 1684 |
print(f"Error inserting row: {row}")
|
| 1685 |
print(f"Error message: {str(e)}")
|
|
|
|
| 1680 |
|
| 1681 |
try:
|
| 1682 |
cursor.execute(query, values)
|
| 1683 |
+
# Отправка данных в Google Forms
|
| 1684 |
+
user_data = dict(zip(columns, values))
|
| 1685 |
+
send_to_google_forms(user_data, gog_url)
|
| 1686 |
except Exception as e:
|
| 1687 |
print(f"Error inserting row: {row}")
|
| 1688 |
print(f"Error message: {str(e)}")
|