Metadata-Version: 2.1
Name: k8s
Version: 0.12.0
Summary: Python client library for the Kubernetes API
Home-page: https://github.com/fiaas/k8s
Author: FiaaS developers
Author-email: fiaas@googlegroups.com
License: Apache License
Keywords: kubernetes fiaas
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Clustering
Classifier: Topic :: System :: Distributed Computing
Requires-Dist: six (==1.12.0)
Requires-Dist: requests (==2.22.0)
Requires-Dist: pyrfc3339 (==1.1)
Requires-Dist: cachetools (==3.1.1)
Provides-Extra: codacy
Requires-Dist: codacy-coverage ; extra == 'codacy'
Provides-Extra: dev
Requires-Dist: tox (==3.13.2) ; extra == 'dev'
Requires-Dist: mock (==3.0.5) ; extra == 'dev'
Requires-Dist: pytest-sugar (==0.9.2) ; extra == 'dev'
Requires-Dist: pytest-html (==1.22.0) ; extra == 'dev'
Requires-Dist: pytest-cov (==2.7.1) ; extra == 'dev'
Requires-Dist: pytest-helpers-namespace (==2019.1.8) ; extra == 'dev'
Requires-Dist: pytest (==3.10.1) ; extra == 'dev'
Requires-Dist: GitPython (==2.1.14) ; extra == 'dev'
Requires-Dist: prospector ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: Sphinx (>=1.6.3) ; extra == 'docs'
Provides-Extra: release
Requires-Dist: gitpython ; extra == 'release'
Requires-Dist: twine ; extra == 'release'

k8s - Python client library for the Kubernetes API
--------------------------------------------------

|Build Status| |Codacy Quality Badge| |Codacy Coverage Badge|

.. |Build Status| image:: https://semaphoreci.com/api/v1/fiaas/k8s/branches/master/badge.svg
    :target: https://semaphoreci.com/fiaas/k8s
.. |Codacy Quality Badge| image:: https://api.codacy.com/project/badge/Grade/cb51fc9f95464f22b6084379e88fad77
    :target: https://www.codacy.com/app/mortenlj/k8s?utm_source=github.com&utm_medium=referral&utm_content=fiaas/k8s&utm_campaign=badger
.. |Codacy Coverage Badge| image:: https://api.codacy.com/project/badge/Coverage/cb51fc9f95464f22b6084379e88fad77
    :target: https://www.codacy.com/app/mortenlj/k8s?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=fiaas/k8s&amp;utm_campaign=Badge_Coverage

Documentation
    https://k8s.readthedocs.io
Code
    https://github.com/fiaas/k8s

k8s is a python client library for Kubernetes developed as part of the FiaaS project at FINN.no, Norway's leading classifieds site. The library tries to provide an intuitive developer experience, rather than modelling the REST API directly. Our approach does not allow us to use Swagger to auto-generate a library that covers the entire API, but the parts we have implemented are (in our opinion) easier to work with than the client you get when using Swagger.

Check out the tutorial_ to find out how to use the library, or the `developer guide`_ to learn how to extend the library to cover parts of the API we haven't gotten around to yet.

.. _tutorial: http://k8s.readthedocs.io/en/latest/tutorial.html
.. _developer guide: http://k8s.readthedocs.io/en/latest/developer.html


Changes since last version
--------------------------

* `c7cb189`_: Ignore .pip_cache, so semaphore builds can be published
* `15314db`_: Rewrite code to accommodate PEP-479 related to use of StopIteration
* `8ae6fd9`_: Fix copy-paste error
* `9e03766`_: Clean up leftovers
* `ee3777b`_: Basically copied the semaphore setup from fiaas/publish
* `8ac01bc`_: Make it possible to use other label selectors than equality
* `bf2743f`_: Drop support for Python 3.4 and bump dependencies.
* `8c3bb8a`_: Set a timeout for watch connections
* `fb82324`_: Add support for watching Ingress and Service
* `145ebfb`_: Bump versions
* `f88b460`_: Set a returncode to reflect errors when uploading artifacts

.. _c7cb189: https://github.com/fiaas/k8s/commit/c7cb189
.. _15314db: https://github.com/fiaas/k8s/commit/15314db
.. _8ae6fd9: https://github.com/fiaas/k8s/commit/8ae6fd9
.. _9e03766: https://github.com/fiaas/k8s/commit/9e03766
.. _ee3777b: https://github.com/fiaas/k8s/commit/ee3777b
.. _8ac01bc: https://github.com/fiaas/k8s/commit/8ac01bc
.. _bf2743f: https://github.com/fiaas/k8s/commit/bf2743f
.. _8c3bb8a: https://github.com/fiaas/k8s/commit/8c3bb8a
.. _fb82324: https://github.com/fiaas/k8s/commit/fb82324
.. _145ebfb: https://github.com/fiaas/k8s/commit/145ebfb
.. _f88b460: https://github.com/fiaas/k8s/commit/f88b460

