Tools to manage In/Out file. Easy to add new class if you need to change source/dest (file system, git ...)
Project description
CND IO
Python lib to import/export content from/into different type of provider : filesystem, git etc...
Usage
Declare a provider
First you need declare a provider, in this sample only one provider is available : FileSystem
For a more simple use of error message, this lib can use CndPrint
import cndprint
import cnd_io
_print = cndprint.CndPrint(level="Info")
provider = cnd_io.CndProviderLocalfile(print=_print)
Use the provider local file system into cnd_io
import cndprint
import cnd_io
_print = cndprint.CndPrint(level="Info")
provider = cnd_io.CndProviderLocalfile(print=_print)
cnd_io = cnd_io.CndIO(provider, print=_print)
Use the provider gitlab into cnd_io
import cndprint
import cnd_io
_print = cndprint.CndPrint(level="Info")
provider = cnd_io.CndProviderGitlab(creds={'private_token': 'my-private-token', host="https://gitlab.com/api/v4/"}, print=_print)
cnd_io = cnd_io.CndIO(provider, print=_print)
Get Content
with file system provider
cnd_io.pull_file('source_name', 'path/myfile.txt')
with gitlab provider
cnd_io.pull_file('source_name', 'path/myfile.txt', branch="main")
Send on file
cnd_io.push_file('source_name', 'path/myfile.txt', 'content_to_push')
Get YAML Content
cnd_io.pull_yaml_file('source_name', 'path/myfile.txt')
Send one YAML file
cnd_io.push_yaml_file('source_name', 'path/myfile.txt', 'content_to_push')
Send multiple file in the same time (one text file + 1 yaml file)
cnd_io.commit_file('source_name', 'path/myfile1.txt', content_to_push1)
cnd_io.commit_yaml_file('source_name', 'path/myfile2.txt', content_to_push2)
cnd_io.push_files('source_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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
CndIO-2.4.0-py3-none-any.whl
(5.5 kB
view details)
File details
Details for the file CndIO-2.4.0-py3-none-any.whl
.
File metadata
- Download URL: CndIO-2.4.0-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f4628de16e4405c4aa001a07e339ca4982324c7288d33b955ce0e24b6da9040 |
|
MD5 | bbdb4e3d41469f4474d5f7c0d30d7c59 |
|
BLAKE2b-256 | aa4b9b16eb06365c7810f7050d22e7c22addc56faebe738f83455d10f2d028ab |