Commit 0aea7341 authored by Pauline Maury Laribière's avatar Pauline Maury Laribière
Browse files

readme line limit

parent bec083e5
......@@ -26,7 +26,12 @@ In the first part, we describe the API available from everywhere, then we descri
#### Codelists
1. Export a codelist based on an identifier
```
response = get_codelist(identifier, export_format="SDMX-ML", version_format=2.1, annotations=False)
response = get_codelist(
identifier,
export_format="SDMX-ML",
version_format=2.1,
annotations=False
)
```
Parameters:
......@@ -118,7 +123,13 @@ response = get_nomenclature_path_nodes(identifier, path, filters={}, language='f
2. Export one level of a nomenclature
```
response = get_nomenclature_one_level(identifier, level_number, filters={}, language='fr', annotations=False)
response = get_nomenclature_one_level(
identifier,
level_number,
filters={},
language='fr',
annotations=False
)
```
Parameters:
......@@ -135,7 +146,14 @@ response = get_nomenclature_one_level(identifier, level_number, filters={}, lang
3. Export multiple levels of a nomenclature (from `level_from` to `level_to`)
```
response = get_nomenclature_multiple_levels(identifier, level_from, level_to, filters={}, language='fr', annotations=False)
response = get_nomenclature_multiple_levels(
identifier,
level_from,
level_to,
filters={},
language='fr',
annotations=False
)
```
Parameters:
......@@ -152,7 +170,14 @@ response = get_nomenclature_multiple_levels(identifier, level_from, level_to, fi
4. Search query within a nomenclature
```
response = query_nomenclature(identifier, query, page_number, page_size, fiters={}, language='fr')
response = query_nomenclature(
identifier,
query,
page_number,
page_size,
fiters={},
language='fr'
)
```
Parameters:
......@@ -271,4 +296,4 @@ All the APIs made available in this library are also documented in Swagger UI sh
## Example
Examples for each API are provided in the notebook [examples.ipynb](https://renkulab.io/gitlab/pauline.maury-laribiere/meatadata-auto/-/blob/class_apis/examples.ipynb).
\ No newline at end of file
Examples for each API are provided in the notebook [examples.ipynb](https://renkulab.io/gitlab/pauline.maury-laribiere/meatadata-auto/-/blob/class_apis/fso_metadata/examples.ipynb).
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment