Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -24,9 +24,12 @@ def process():
|
|
| 24 |
print('here',data)
|
| 25 |
# data = request.get_json() # Use get_json() to parse JSON data
|
| 26 |
# print('Received data:', data)
|
|
|
|
| 27 |
filePath = data.get('filePath')
|
| 28 |
groupName = data.get('groupName')
|
| 29 |
-
|
|
|
|
|
|
|
| 30 |
|
| 31 |
# dbxTeam = tsadropboxretrieval.ADR_Access_DropboxTeam('user')
|
| 32 |
# print('3')
|
|
|
|
| 24 |
print('here',data)
|
| 25 |
# data = request.get_json() # Use get_json() to parse JSON data
|
| 26 |
# print('Received data:', data)
|
| 27 |
+
# Extracting values
|
| 28 |
filePath = data.get('filePath')
|
| 29 |
groupName = data.get('groupName')
|
| 30 |
+
|
| 31 |
+
print(f'File Path: {filePath}')
|
| 32 |
+
print(f'Group Name: {groupName}')
|
| 33 |
|
| 34 |
# dbxTeam = tsadropboxretrieval.ADR_Access_DropboxTeam('user')
|
| 35 |
# print('3')
|