Update app.py
Browse files
app.py
CHANGED
@@ -177,17 +177,9 @@ def get_value_after_question_mark(url):
|
|
177 |
|
178 |
# Extract the part after the question mark
|
179 |
if question_mark_index != -1:
|
180 |
-
# Get the
|
181 |
-
|
182 |
-
|
183 |
-
# Split the query string into key-value pairs
|
184 |
-
key_value_pairs = query_string.split('&')
|
185 |
-
|
186 |
-
# Loop through key-value pairs and extract the value
|
187 |
-
for pair in key_value_pairs:
|
188 |
-
key, value = pair.split('=')
|
189 |
-
if key == 'var1': # Check for the specific variable
|
190 |
-
return value
|
191 |
|
192 |
return ""
|
193 |
def extract_ip_and_device(headers_obj):
|
|
|
177 |
|
178 |
# Extract the part after the question mark
|
179 |
if question_mark_index != -1:
|
180 |
+
# Get the part after the question mark and split by '='
|
181 |
+
value = url[question_mark_index + 1:].split('=')[1]
|
182 |
+
return value
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
|
184 |
return ""
|
185 |
def extract_ip_and_device(headers_obj):
|