Utils for Gen3 Commons user management
Project description
gen3users
Utils for Gen3 commons user management.
user.yaml validation
Validate a user.yaml
file using the CLI:
pip install gen3users
gen3users validate first_user.yaml second_user.yaml
Validate a user.yaml
file in a Python script:
from gen3users.validation import validate_user_yaml
file_name = "my-gen3-commons/user.yaml"
with open(file_name, "r") as f:
user_yaml = f.read()
validate_user_yaml(user_yaml, file_name)
user.yaml conversion
Converts a user.yaml
file from the old format to the new ABAC-based centralized auth format, required by the latest Fence and Arborist.
Convert a user.yaml
file using the CLI:
pip install gen3users
gen3users convert old_user.yaml [new_user.yaml]
Convert a user.yaml
in a Python script:
from gen3users.conversion import convert_old_user_yaml_to_new_user_yaml
src_file_name = "my-gen3-commons/old_user.yaml"
dst_file_name = "my-gen3-commons/new_user.yaml"
with open (src_file_name, "r") as f:
user_yaml = f.read()
convert_old_user_yaml_to_new_user_yaml(user_yaml, dst_file_name)
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
gen3users-1.1.1.tar.gz
(15.2 kB
view hashes)
Built Distribution
gen3users-1.1.1-py3-none-any.whl
(18.5 kB
view hashes)
Close
Hashes for gen3users-1.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a38ba90c8cef5f7c4ed6ae2f1f1d733524d48b1b2c60e66db8537e36194faab |
|
MD5 | 24a833d6905c66b3e0f48b9cdf6f71ce |
|
BLAKE2b-256 | 08d7327f0d4aa4d654950d7f81d38e9330a94959f452eb45608410a486c6e95a |