Thiloid commited on
Commit
b70bafe
·
verified ·
1 Parent(s): 3b54a33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -11
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 query string part after the '?'
181
- query_string = url[question_mark_index + 1:]
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):