Skip to main content

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 = cncnd_ioio.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 = cncnd_ioio.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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

CndIO-2.0.2.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

CndIO-2.0.2-py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page