Update app.py
Browse files
app.py
CHANGED
|
@@ -59,7 +59,9 @@ def dynamic_huff_model(df_distances, df_attractiveness, alpha, beta, df_capacity
|
|
| 59 |
return df_visitors
|
| 60 |
|
| 61 |
def app_function(input_json):
|
|
|
|
| 62 |
# Parse the input JSON string
|
|
|
|
| 63 |
inputs = json.loads(input_json)
|
| 64 |
|
| 65 |
# Convert 'df_distances' from a list of lists into a DataFrame directly
|
|
|
|
| 59 |
return df_visitors
|
| 60 |
|
| 61 |
def app_function(input_json):
|
| 62 |
+
print("something happend")
|
| 63 |
# Parse the input JSON string
|
| 64 |
+
print(input_json)
|
| 65 |
inputs = json.loads(input_json)
|
| 66 |
|
| 67 |
# Convert 'df_distances' from a list of lists into a DataFrame directly
|