Metadata-Version: 2.1
Name: pylibcklb
Version: 1.9.0
Summary: The pylibcklb is a library of functions and classes created from me and were used in different other projects of me.
Home-page: https://github.com/ecklebe/pylibcklb
Author: Tobias Ecklebe
Author-email: development.ecklebe@outlook.de
License: GNU LGPLv3
Download-URL: https://github.com/ecklebe/pylibcklb/archive/master.zip
Description: 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
        
        .. code:: batch
        
            pip install https://github.com/Ecklebe/pylibcklb/archive/master.zip
        
        or
        
        .. code:: batch
        
            pip install pylibcklb
        
        Uninstallation
        --------------
        
        1. Call the command line under windows as admin
        2. Type the following to command line and that’s is
        
        .. code:: batch
        
            pip uninstall pylibcklb
        
        Usage
        -----
        
        To use (with caution), simply use this small example:
        
        Write main.py:
        
        .. code:: python
        
            # 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:
        
        .. code:: batch
        
            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 <https://github.com/Ecklebe/pylibcklb/blob/master/CHANGELOG.md>`__
        in this folder.
        
        .. |Python version| image:: https://img.shields.io/pypi/v/pylibcklb.svg
           :target: https://pypi.org/project/pylibcklb/
        .. |License| image:: https://img.shields.io/pypi/l/pylibcklb.svg
           :target: https://github.com/Ecklebe/pylibcklb/blob/master/LICENSE.md
        .. |PyPI| image:: https://img.shields.io/pypi/pyversions/pylibcklb.svg
           :target: https://pypi.org/project/pylibcklb/
        .. |Build Status| image:: https://gitlab.ecklebe.de/open-source/python/pylibcklb/badges/master/build.svg
           :target: https://gitlab.ecklebe.de/open-source/python/pylibcklb/commits/master
        
Platform: UNKNOWN
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3
Provides-Extra: gui
