Skip to main content

Common libraries for DSC projects/services

Project description

DSC Labs common libraries.

A python3 library for commonly used utilities

Installation and Usage:

Install with pip

pip3 install dsc_labs --trusted-host 192.168.195.200 --no-cache-dir --extra-index-url http://192.168.195.200:8151/simple/

Usage:

  1. Import libraries
# example: using logger from dsc_labs
from dsc_labs.libs.logger import DSCLabsLoggerMixin
from dsc_labs.common import current_utc_timestamp

class Timer(DSCLabsLoggerMixin):
    def __init__(self):
        super().__init__()
        
    def get_current_time(self):
        utc_time = current_utc_timestamp()
        # self.log is a method that inherits from `DSCLabsLoggerMixin` class
        self.log.info('event=get-current-time message="Current time: %s"', str(utc_time))
  1. Command line:
dsc_labs-config -h

dsc_labs-* ...

Package development

Install required libraries

pip install -r requirements.txt

Build

python setup.py sdist

Release

python -m twine upload --repository-url http://192.168.195.200:8151 -u USERNAME -p PASSWORD -f FILEPACKAGE

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

dsc_labs-1.0.0.tar.gz (5.9 kB view hashes)

Uploaded Source

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