@@ -4,6 +4,8 @@ pyApp - A python application framework
44
55*Let us handle the boring stuff! *
66
7+ As of pyApp 4.0, Python < 3.6 is no longer supported.
8+
79+---------+---------------------------------------------------------------------------------------+
810| Docs | .. image:: https://readthedocs.org/projects/pyapp/badge/?version=latest |
911| | :target: https://docs.pyapp.info/ |
@@ -12,6 +14,9 @@ pyApp - A python application framework
1214| Build | .. image:: https://img.shields.io/travis/pyapp-org/pyapp.svg?style=flat |
1315| | :target: https://travis-ci.org/pyapp-org/pyapp |
1416| | :alt: Travis CI Status |
17+ | | .. image:: https://api.dependabot.com/badges/status?host=github&repo=pyapp-org/pyapp |
18+ | | :target: https://dependabot.com |
19+ | | :alt: Dependabot Status |
1520+---------+---------------------------------------------------------------------------------------+
1621| Quality | .. image:: https://api.codeclimate.com/v1/badges/58f9ffacb711c992610d/maintainability |
1722| | :target: https://codeclimate.com/github/pyapp-org/pyapp/maintainability |
@@ -23,22 +28,20 @@ pyApp - A python application framework
2328| | :target: https://github.com/ambv/black |
2429| | :alt: Once you go Black... |
2530+---------+---------------------------------------------------------------------------------------+
26- | Package | .. image:: https://img.shields.io/pypi/v/pyapp.svg |
31+ | Package | .. image:: https://img.shields.io/pypi/v/pyapp |
2732| | :target: https://pypi.io/pypi/pyapp/ |
2833| | :alt: Latest Version |
29- | | .. image:: https://img.shields.io/pypi/pyversions/pyapp.svg |
34+ | | .. image:: https://img.shields.io/pypi/pyversions/pyapp |
3035| | :target: https://pypi.io/pypi/pyapp/ |
31- | | .. image:: https://img.shields.io/pypi/l/pyapp.svg |
36+ | | .. image:: https://img.shields.io/pypi/l/pyapp |
3237| | :target: https://pypi.io/pypi/pyapp/ |
33- | | .. image:: https://img.shields.io/pypi/wheel/pyapp.svg |
38+ | | .. image:: https://img.shields.io/pypi/wheel/pyapp |
39+ | | :alt: PyPI - Wheel |
3440| | :target: https://pypi.io/pypi/pyapp/ |
3541+---------+---------------------------------------------------------------------------------------+
3642
37- Many features inspired by Django, but modified to be more general for use
38- outside of web applications.
39-
40- With pyApp 4.0, versions of Python < 3.6 are no longer supported.
41-
43+ pyApp takes care of the boring boilerplate code for building a CLI, manageing
44+ settings and much more so you can focus on your buisness logic.
4245
4346So what do we handle?
4447=====================
@@ -73,26 +76,53 @@ So what do we handle?
7376Extensions
7477==========
7578
76- - SQLAlchemy - `pyapp.sqlalchemy `_
77- - Redis - `pyapp.redis `_
78- - AIOBotocore - `pyapp.aiobotocore `_
79+ - 🔌 SQLAlchemy - `pyapp.sqlalchemy `_
80+ - 🔌 Redis - `pyapp.redis `_
81+
82+ In Beta
83+ -------
84+
85+ - 🐛 Rollbar - `pyapp.rollbar `_
86+
87+ - 📧 AIO SMTPlib - `pyapp.aiosmtplib `_ Extension for aiosmtplib
88+
89+ - ☁ Boto3 - `pyapp.boto3 `_
90+
91+ - ☁ AIOBotocore - `pyapp.aiobotocore `_
92+
93+ - 📨 Messaging - `pyapp.messaging `_ - Extension to provide abstract interfaces for Message Queues.
94+
95+ - 📨 AWS Messaging - `pyapp.messaging-aws `_ - Messaging extension for AWS (SQS/SNS)
7996
8097In development
8198--------------
8299
83- - SMTP - `pyapp.SMTP `_
84- - Boto3 - `pyapp.boto3 `_
100+ - 📧 SMTP - `pyapp.SMTP `_
101+
102+ - 📨 Aio-Pika - `pyapp.aiopika `_ - Messaging extension for pika (RabbitMQ/AMQP)
103+
104+ - 🔌 PySpark - `pyapp.pyspark `_ - Extension for PySpark
105+
106+ - 🔎 Elastic Search - `pyapp.elasticsearch `_ - Extension for Elasticsearch
85107
86108Coming soon
87109-----------
88110
89- Extensions for LDAP, Paramiko.
111+ - 📨 AMQP Messaging - Messaging extension for AMQP (RabbitMQ)
112+
90113
91114.. _pyapp.sqlalchemy : https://www.github.com/pyapp-org/pyapp.sqlalchemy
92115.. _pyapp.redis : https://www.github.com/pyapp-org/pyapp.redis
93116.. _pyapp.aiobotocore : https://www.github.com/pyapp-org/pyapp.aiobotocore
94117.. _pyapp.SMTP : https://www.github.com/pyapp-org/pyapp.SMTP
95118.. _pyapp.boto3 : https://www.github.com/pyapp-org/pyapp.boto3
119+ .. _pyapp.rollbar : https://www.github.com/pyapp-org/pyapp.rollbar
120+ .. _pyapp.aiosmtplib : https://www.github.com/pyapp-org/pyapp.aiosmtplib
121+ .. _pyapp.messaging : https://www.github.com/pyapp-org/pyapp-messaging
122+ .. _pyapp.messaging-aws : https://www.github.com/pyapp-org/pyapp-messaging-aws
123+ .. _pyapp.aiopika : https://www.github.com/pyapp-org/pyapp.aiopika
124+ .. _pyapp.pyspark : https://www.github.com/pyapp-org/pyapp.pyspark
125+ .. _pyapp.elasticsearch : https://www.github.com/pyapp-org/pyapp.elasticsearch
96126
97127
98128Contributions
0 commit comments