mirror of
https://github.com/Novartis/cellxgene-gateway.git
synced 2026-09-25 05:28:12 +08:00
Due to issue with opening annotation files with "-" in the name, this doesn't quite work.
6 lines
128 B
Python
6 lines
128 B
Python
from flask import request
|
|
|
|
def querystring():
|
|
qs = request.query_string.decode()
|
|
return f'?{qs}' if len(qs) > 0 else ''
|