pdnd-python-client 0.1.8__tar.gz → 0.1.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/PKG-INFO +7 -1
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/README.md +6 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_python_client.egg-info/PKG-INFO +7 -1
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pyproject.toml +1 -1
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/LICENSE +0 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_client/__init__.py +0 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_client/client.py +0 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_client/config.py +0 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_client/jwt_generator.py +0 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_python_client.egg-info/SOURCES.txt +0 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_python_client.egg-info/dependency_links.txt +0 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_python_client.egg-info/requires.txt +0 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_python_client.egg-info/top_level.txt +0 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/setup.cfg +0 -0
- {pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/tests/test_pdnd_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pdnd-python-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.10
|
|
4
4
|
Summary: Client Python per autenticazione e interazione con le API della Piattaforma Digitale Nazionale Dati (PDND).
|
|
5
5
|
Author-email: Francesco Loreti <francesco.loreti@isprambiente.it>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -154,6 +154,7 @@ python main.py --api-url "https://api.pdnd.example.it/resource" --config /config
|
|
|
154
154
|
- `--env` : Specifica l'ambiente da usare (es. collaudo, produzione). Default: `produzione`
|
|
155
155
|
- `--config` : Specifica il percorso completo del file di configurazione (es: `--config /configs/progetto.json`)
|
|
156
156
|
- `--debug` : Abilita output dettagliato
|
|
157
|
+
- `--pretty` : Abilita l'output dei json formattato in modo leggibile
|
|
157
158
|
- `--api-url` : URL dell’API da chiamare dopo la generazione del token
|
|
158
159
|
- `--api-url-filters` : Filtri da applicare all'API (es. ?parametro=valore)
|
|
159
160
|
- `--status-url` : URL dell’API di status per verificare la validità del token
|
|
@@ -179,6 +180,11 @@ python main.py --status-url="https://api.pdnd.example.it/status" --config /confi
|
|
|
179
180
|
python main.py --debug --api-url="https://api.pdnd.example.it/resource"
|
|
180
181
|
```
|
|
181
182
|
|
|
183
|
+
**Pretty attivo:**
|
|
184
|
+
```bash
|
|
185
|
+
python main.py --pretty --api-url="https://api.pdnd.example.it/resource"
|
|
186
|
+
```
|
|
187
|
+
|
|
182
188
|
### Opzione di aiuto
|
|
183
189
|
|
|
184
190
|
Se esegui il comando con `--help` oppure senza parametri, viene mostrata una descrizione delle opzioni disponibili e alcuni esempi di utilizzo:
|
|
@@ -136,6 +136,7 @@ python main.py --api-url "https://api.pdnd.example.it/resource" --config /config
|
|
|
136
136
|
- `--env` : Specifica l'ambiente da usare (es. collaudo, produzione). Default: `produzione`
|
|
137
137
|
- `--config` : Specifica il percorso completo del file di configurazione (es: `--config /configs/progetto.json`)
|
|
138
138
|
- `--debug` : Abilita output dettagliato
|
|
139
|
+
- `--pretty` : Abilita l'output dei json formattato in modo leggibile
|
|
139
140
|
- `--api-url` : URL dell’API da chiamare dopo la generazione del token
|
|
140
141
|
- `--api-url-filters` : Filtri da applicare all'API (es. ?parametro=valore)
|
|
141
142
|
- `--status-url` : URL dell’API di status per verificare la validità del token
|
|
@@ -161,6 +162,11 @@ python main.py --status-url="https://api.pdnd.example.it/status" --config /confi
|
|
|
161
162
|
python main.py --debug --api-url="https://api.pdnd.example.it/resource"
|
|
162
163
|
```
|
|
163
164
|
|
|
165
|
+
**Pretty attivo:**
|
|
166
|
+
```bash
|
|
167
|
+
python main.py --pretty --api-url="https://api.pdnd.example.it/resource"
|
|
168
|
+
```
|
|
169
|
+
|
|
164
170
|
### Opzione di aiuto
|
|
165
171
|
|
|
166
172
|
Se esegui il comando con `--help` oppure senza parametri, viene mostrata una descrizione delle opzioni disponibili e alcuni esempi di utilizzo:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pdnd-python-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.10
|
|
4
4
|
Summary: Client Python per autenticazione e interazione con le API della Piattaforma Digitale Nazionale Dati (PDND).
|
|
5
5
|
Author-email: Francesco Loreti <francesco.loreti@isprambiente.it>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -154,6 +154,7 @@ python main.py --api-url "https://api.pdnd.example.it/resource" --config /config
|
|
|
154
154
|
- `--env` : Specifica l'ambiente da usare (es. collaudo, produzione). Default: `produzione`
|
|
155
155
|
- `--config` : Specifica il percorso completo del file di configurazione (es: `--config /configs/progetto.json`)
|
|
156
156
|
- `--debug` : Abilita output dettagliato
|
|
157
|
+
- `--pretty` : Abilita l'output dei json formattato in modo leggibile
|
|
157
158
|
- `--api-url` : URL dell’API da chiamare dopo la generazione del token
|
|
158
159
|
- `--api-url-filters` : Filtri da applicare all'API (es. ?parametro=valore)
|
|
159
160
|
- `--status-url` : URL dell’API di status per verificare la validità del token
|
|
@@ -179,6 +180,11 @@ python main.py --status-url="https://api.pdnd.example.it/status" --config /confi
|
|
|
179
180
|
python main.py --debug --api-url="https://api.pdnd.example.it/resource"
|
|
180
181
|
```
|
|
181
182
|
|
|
183
|
+
**Pretty attivo:**
|
|
184
|
+
```bash
|
|
185
|
+
python main.py --pretty --api-url="https://api.pdnd.example.it/resource"
|
|
186
|
+
```
|
|
187
|
+
|
|
182
188
|
### Opzione di aiuto
|
|
183
189
|
|
|
184
190
|
Se esegui il comando con `--help` oppure senza parametri, viene mostrata una descrizione delle opzioni disponibili e alcuni esempi di utilizzo:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_python_client.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_python_client.egg-info/requires.txt
RENAMED
|
File without changes
|
{pdnd_python_client-0.1.8 → pdnd_python_client-0.1.10}/pdnd_python_client.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|