m7n commited on
Commit
b555cfc
·
verified ·
1 Parent(s): 20ec1b8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +58 -7
app.py CHANGED
@@ -74,6 +74,51 @@ print(f"Imports are done: {time.strftime('%Y-%m-%d %H:%M:%S')}")
74
 
75
 
76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  def openalex_url_to_pyalex_query(url):
78
  """
79
  Convert an OpenAlex search URL to a pyalex query.
@@ -97,7 +142,7 @@ def openalex_url_to_pyalex_query(url):
97
  if ':' in f:
98
  key, value = f.split(':', 1)
99
  if key == 'default.search':
100
- query = query.search(value)
101
  else:
102
  query = query.filter(**{key: value})
103
 
@@ -105,10 +150,12 @@ def openalex_url_to_pyalex_query(url):
105
  if 'sort' in query_params:
106
  sort_params = query_params['sort'][0].split(',')
107
  for s in sort_params:
108
- if s.startswith('-'):
109
- query = query.sort(**{s[1:]: 'desc'})
110
- else:
111
- query = query.sort(**{s: 'asc'})
 
 
112
 
113
  # Handle other parameters
114
  params = {}
@@ -119,6 +166,10 @@ def openalex_url_to_pyalex_query(url):
119
  return query, params
120
 
121
 
 
 
 
 
122
  def invert_abstract(inv_index):
123
  if inv_index is not None:
124
  l_inv = [(w, p) for w, pos in inv_index.items() for p in pos]
@@ -440,8 +491,8 @@ with gr.Blocks() as block:
440
 
441
 
442
  new_btn = gr.Button("Run Query",variant='primary')
443
- markdown = gr.Markdown(label="")
444
- html = gr.HTML(label="HTML preview", show_label=True)
445
 
446
  new_btn.click(fn=predict, inputs=[text_input, sample_size_slider, reduce_sample_checkbox,sample_reduction_method], outputs=[markdown, html])
447
 
 
74
 
75
 
76
 
77
+ # def openalex_url_to_pyalex_query(url):
78
+ # """
79
+ # Convert an OpenAlex search URL to a pyalex query.
80
+
81
+ # Args:
82
+ # url (str): The OpenAlex search URL.
83
+
84
+ # Returns:
85
+ # tuple: (Works object, dict of parameters)
86
+ # """
87
+ # parsed_url = urlparse(url)
88
+ # query_params = parse_qs(parsed_url.query)
89
+
90
+ # # Initialize the Works object
91
+ # query = Works()
92
+
93
+ # # Handle filters
94
+ # if 'filter' in query_params:
95
+ # filters = query_params['filter'][0].split(',')
96
+ # for f in filters:
97
+ # if ':' in f:
98
+ # key, value = f.split(':', 1)
99
+ # if key == 'default.search':
100
+ # query = query.search(value)
101
+ # else:
102
+ # query = query.filter(**{key: value})
103
+
104
+ # # Handle sort
105
+ # if 'sort' in query_params:
106
+ # sort_params = query_params['sort'][0].split(',')
107
+ # for s in sort_params:
108
+ # if s.startswith('-'):
109
+ # query = query.sort(**{s[1:]: 'desc'})
110
+ # else:
111
+ # query = query.sort(**{s: 'asc'})
112
+
113
+ # # Handle other parameters
114
+ # params = {}
115
+ # for key in ['page', 'per-page', 'sample', 'seed']:
116
+ # if key in query_params:
117
+ # params[key] = query_params[key][0]
118
+
119
+ # return query, params
120
+
121
+
122
  def openalex_url_to_pyalex_query(url):
123
  """
124
  Convert an OpenAlex search URL to a pyalex query.
 
142
  if ':' in f:
143
  key, value = f.split(':', 1)
144
  if key == 'default.search':
145
+ query = query.search(unquote(value))
146
  else:
147
  query = query.filter(**{key: value})
148
 
 
150
  if 'sort' in query_params:
151
  sort_params = query_params['sort'][0].split(',')
152
  for s in sort_params:
153
+ if ':' in s:
154
+ field, order = s.split(':')
155
+ if order.lower() == 'desc':
156
+ query = query.sort(f"-{field}")
157
+ else:
158
+ query = query.sort(field)
159
 
160
  # Handle other parameters
161
  params = {}
 
166
  return query, params
167
 
168
 
169
+
170
+
171
+
172
+
173
  def invert_abstract(inv_index):
174
  if inv_index is not None:
175
  l_inv = [(w, p) for w, pos in inv_index.items() for p in pos]
 
491
 
492
 
493
  new_btn = gr.Button("Run Query",variant='primary')
494
+ markdown = gr.Markdown(label="", show_label=False)
495
+ html = gr.HTML(label="Map", show_label=False,min_height=1000)
496
 
497
  new_btn.click(fn=predict, inputs=[text_input, sample_size_slider, reduce_sample_checkbox,sample_reduction_method], outputs=[markdown, html])
498