Metadata-Version: 2.1
Name: pyApp
Version: 4.0.1
Summary: A Python application framework - Let us handle the boring stuff!
Home-page: https://github.com/pyapp-org/pyapp
Author: Tim Savage
Author-email: tim@savage.company
License: BSD-3-Clause
Description: ######################################
        pyApp - A python application framework
        ######################################
        
        *Let us handle the boring stuff!*
        
        .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
           :target: https://github.com/ambv/black
           :alt: Once you go Black...
        
        .. image:: https://img.shields.io/travis/pyapp-org/pyapp.svg?style=flat
           :target: https://travis-ci.org/pyapp-org/pyapp
           :alt: Travis CI Status
        
        .. image:: https://api.codeclimate.com/v1/badges/58f9ffacb711c992610d/test_coverage
           :target: https://codeclimate.com/github/pyapp-org/pyapp/test_coverage
           :alt: Test Coverage
        
        .. image:: https://api.codeclimate.com/v1/badges/58f9ffacb711c992610d/maintainability
           :target: https://codeclimate.com/github/pyapp-org/pyapp/maintainability
           :alt: Maintainability
        
        
        Many features inspired by Django, but modified to be more general for use
        outside of web applications.
        
        With pyApp 4.0, versions of Python < 3.6 are no longer supported.
        
        
        So what do we handle?
        =====================
        
        - Configuration - Loading, merging your settings from different sources
          + Python modules
          + File and HTTP(S) endpoints for JSON and YAML files.
        - Instance Factories - Configuration of plugins, database connections, or just
          implementations of an ``ABC``.
          Leveraging settings to make setup of your application easy and reduce coupling.
        - Checks - A framework for checking settings are correct and checking that your
          application connect to that API end point (your ops team will love you)?
        - Extensions - Extend the basic framework with extensions, the framework provides
          deterministic startup, addition of commands to the CLI and the ability to
          register checks and default settings.
        - Application - Provides a extensible and simple CLI interface for starting
          running commands, comes with built-in commands to support Checks, report
          settings/extensions.
        - Logging - Initialise and apply sane logging defaults (when using an Application).
          Defaults to logging to `stderr` so your application can write data to `stdout`
          for piping into other tools.
        
        
        Extensions
        ==========
        
        - SQLAlchemy - `pyapp.sqlalchemy <https://www.github.com/pyapp-org/pyapp.sqlalchemy>`_
        - SMTP - `pyapp.SMTP <https://www.github.com/pyapp-org/pyapp.SMTP>`_
        - Redis - `pyapp.redis <https://www.github.com/pyapp-org/pyapp.redis>`_
        
        In development
        --------------
        
        - Boto3 - `pyapp.boto3 <https://www.github.com/pyapp-org/pyapp.boto3>`_
        - AIOBotocore - `pyapp.aiobotocore <https://www.github.com/pyapp-org/pyapp.aiobotocore>`_
        
        Coming soon
        -----------
        
        Extensions for LDAP, Paramiko.
        
        
        Contributions
        =============
        
        Contributions are most welcome, be it in the form of a extension and factories
        for your favourite service client of bug reports, feature enhancements.
        
        The core of pyApp is intended to remain simple and only provide required features
        with extensions providing optional more specific functionality.
        
        
Keywords: application,framework
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Provides-Extra: dev
Provides-Extra: yaml
