Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
/ pylibcklb Public archive

The python library used in many python projects from me

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
LICENSE.md
Notifications You must be signed in to change notification settings

Ecklebe/pylibcklb

Repository files navigation

The pylibcklb library

Python version License
PyPI Build Status (mirroring, build and install on Linux)

The pylibcklb library an package of different functions and classes for programming in python.

Requirements

The package was programmed with python 3.6 64 bit. Older or newer versions of python were not been tested.

Installation

To install the package to the python packages you need pip the package install management which is included in the python interpreter.

  1. Call the command line under windows as admin
  2. Type the following to command line and that's is
pip install https://github.com/Ecklebe/pylibcklb/archive/master.zip

or

pip install pylibcklb

Uninstallation

  1. Call the command line under windows as admin
  2. Type the following to command line and that's is
pip uninstall pylibcklb

Usage

To use (with caution), simply use this small example:

Write main.py:

# Import of the package functions
from pylibcklb.FunctionLibrary import HelloWorld

# Main fucntion to call with python interpreter
def main():

    # Simple function call
    HelloWorld()

if __name__ == "__main__":
    main()

Call the main.py with python from command line:

python.exe main.py

Output of the command line:

>>> Hello world i am the pylibcklb package

Changes

For the changes of each version see the CHANGELOG.md in this folder.

About

The python library used in many python projects from me

Resources

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
LICENSE.md

Stars

Watchers

Forks