Omar ID EL MOUMEN
commited on
Commit
·
0027d7d
1
Parent(s):
a01e43c
Fix 2
Browse files
server.py
CHANGED
@@ -100,6 +100,7 @@ async def search_specs(keywords: str, limit: int, release: str = None, wg: str =
|
|
100 |
"""
|
101 |
Search 3GPP specifications only by their keywords [note that it will only work with keywords](and some filters [see kwargs field])
|
102 |
Arguments available: keywords: string [mandatory, separated by space], limit [mandatory, default = 5], release: string [optional, filter] (the release version (e.g. 18, 9, 19, ...), generally the first number of the full version), wg: string [optional, filter] = working group (S1, C4, SP, ...), spec_type: string [optional, filter] (either TS or TR), mode [mandatory, default = 'and'] = search mode (and = all keywords must be in the search, or = at least one keyword in the search)
|
|
|
103 |
"""
|
104 |
endpoint = DOC3GPPFINDER_BASE + "/search-spec"
|
105 |
body = {
|
|
|
100 |
"""
|
101 |
Search 3GPP specifications only by their keywords [note that it will only work with keywords](and some filters [see kwargs field])
|
102 |
Arguments available: keywords: string [mandatory, separated by space], limit [mandatory, default = 5], release: string [optional, filter] (the release version (e.g. 18, 9, 19, ...), generally the first number of the full version), wg: string [optional, filter] = working group (S1, C4, SP, ...), spec_type: string [optional, filter] (either TS or TR), mode [mandatory, default = 'and'] = search mode (and = all keywords must be in the search, or = at least one keyword in the search)
|
103 |
+
Do not include null parameters into the POST body
|
104 |
"""
|
105 |
endpoint = DOC3GPPFINDER_BASE + "/search-spec"
|
106 |
body = {
|