Metadata-Version: 1.1
Name: easy-kubernetes
Version: 0.1.0
Summary: A python module to interact with kubernetes REST API.
Home-page: https://github.com/GoDllkE/python-api-kubernetes
Author: Gustavo Toledo de Oliveira
Author-email: gustavot53@gmail.com
License: UNKNOWN
Download-URL: https://github.com/GoDllkE/Easy-Kubernetes/archive/master.zip
Project-URL: Source, https://github.com/GoDllkE/python-api-kubernetes
Project-URL: Documentation, https://github.com/GoDllkE/python-api-kubernetes/docs
Project-URL: Tracker, https://github.com/GoDllkE/python-api-kubernetes/issues
Description: 
            Easy-Kubernetes
        ========================
        This module has purpose to create easy and fast ways to communicate with the API from kubernetes, allowing the developer to create and manage their own data with their own way. Python is a great language and very well used for DevOps Automantions. With it, creating a kubernetes module will easy many steps and automantions allowing a better infrastructure automation or management with great performance.
        This version requires Python 3 or later; a Python 2 version is not available... yet.
        
        Features
        ========================
        - Handle kubernetes through your python script.
        - Free to manage the data from kubernetes API on your own way.
        - There's functions to manage it too, if you don't like the previous ideia.
        - Simplify most of the kubernetes client functions to simple and unique interactions.
        - Simple code, simple functions, simple management. Keep simple!
        
        Installation
        ============
        To install easy-kubernetes from PYPI:
        
        
            $ pip install easy-kubernetes
        
        To install easy-kubernetes manually (please download the source code from either
        PYPI_ or Github_ first):
        
            $ python setup.py install
        
        Usage
        ========
        To use easy-kubernetes, just import this module with:
        
            $ from kubernetes import kubernetes
        
        Then, create a instance of the class with the functionality you desire:
        
            # Cria instancia com dados de acesso ao clusterK8s
            $ k8s_config = kubernetes.config(url=<k8s_master_url>, token=<serviceaccount_token>)
        
            # Cria instancia para funcionalidades prontas do k8s
            $ k8s_tools = kubernetes.tools()
        
            # Cria instancia com chamadas para REST API
            $ k8s = kubernetes.core(configuration=k8s_config)
        
        After this, you will be able to use and explore all functionalities.
        
        Enjoy!
        
        
        Citing
        ======
        Please cite the following paper if you use easy-kubernetes in a published work:
        
        Gustavo Toledo, Tiago Albuquerque. "Easy-Kubernetes: Improving kubernetes auto-management through Python 3", 2018
        
        .. _PYPI: https://pypi.python.org/pypi/Easy-Kubernetes
        .. _Github: https://github.com/GoDllkE/python-api-kubernetes
            
Keywords: kubernetes,origin,easy-kubernetes,kubernetes api,python kubernetes,kubectl.py
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3 :: Only
