Utility to download or upload data from/to .Stat Suite using ADFS authentication to connect to it
Project description
DotStat_IO:
A generic python package which could be integrated with other end-user applications and Gitlab runner to perform basic io with .Stat Suite. Its role is to mask the complexities of authentication to connect to .Stat Suite. The user needs to provide a set of parameters and the package exposes a couple of methods which will download or upload data from/to .Stat Suite.
This package contains two modules:
- ADFS-authentication module
- Download-upload module
In ADFS-authentication module, four methods are available:
1. To initialise the module for interactive use:
interactive(client_id: str, sdmx_resource_id: str, scopes: list[str], authority_url: str, redirect_port: int)
client_id:
The Application (client) ID that the ADFS assigned to your appsdmx_resource_id:
The ID of the application to be accessed such as .Stat Suite PPscopes:
Scopes requested to access a protected API (a resource defined by sdmx_resource_id)authority_url:
URL that identifies a token authorityredirect_port:
The port of the address to return to upon receiving a response from the authority
2. To initialise the module for non-interactive use using a secret:
nointeractive_with_secret(client_id: str, sdmx_resource_id: str, scopes: list[str], authority_url: str, client_secret: str)
client_id:
The Application (client) ID that the ADFS assigned to your appsdmx_resource_id:
The ID of the application to be accessed such as .Stat Suite PPscopes:
Scopes requested to access a protected API (a resource defined by sdmx_resource_id)authority_url:
URL that identifies a token authorityclient_secret:
The application secret that you created during app registration in ADFS
3. To initialise the module for non-interactive use using windows client authentication:
nointeractive_with_adfs(client_id: str, sdmx_resource_id: str, token_url: str)
client_id:
The Application (client) ID that the ADFS assigned to your appsdmx_resource_id:
The ID of the application to be accessed such as .Stat Suite PPtoken_url:
URL of the authentication service
4. To get a token after initialisation:
get_token()
In Download-upload module, three methods are available:
1. To download a file from .Stat:
download_file(self, dotstat_url: str, content_format: str, file_path: Path)
dotstat_url:
URL of data to be downloaded from .Stat Suitecontent_format:
Format of the downloaded contentfile_path:
The full path where the file will downloaded
2. To download streamed content from .Stat:
download_stream(self, dotstat_url: str, content_format: str)
dotstat_url:
URL of data to be downloaded from .Stat Suitecontent_format:
Format of the downloaded content
3. To upload a file to .Stat:
upload_file(self, transfer_url: str, file_path: Path, space: str)
transfer_url:
URL of the transfer servicefile_path:
The full path of the SDMX-CSV file, which will be uploaded to .Stat Suitespace:
Data space where the file will be uploaded
For more information about how to use this package, all test cases can be accessed from this link
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dotstat_io-0.1.0.tar.gz
(4.9 kB
view hashes)
Built Distribution
Close
Hashes for dotstat_io-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ffc090fc2e8dc8e439b8edd806bf0eb4f8148318b84862e3ea42e5211f842da |
|
MD5 | c3b91184a91133e7debb43092b973964 |
|
BLAKE2b-256 | 7b1977abd7bcf4044bba697acd91442ec41170f29a24ef20bea1e29f8bea7cb0 |