All Projects → aio-libs → Aiohttp_admin

aio-libs / Aiohttp_admin

Licence: apache-2.0
admin interface for aiohttp application http://aiohttp-admin.readthedocs.io

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Aiohttp admin

tomodachi
💻 Microservice library / framework using Python's asyncio event loop with full support for HTTP + WebSockets, AWS SNS+SQS, RabbitMQ / AMQP, middleware, etc. Extendable for GraphQL, protobuf, gRPC, among other technologies.
Stars: ✭ 170 (-17.87%)
Mutual labels:  aiohttp, asyncio, async-await
Aiozipkin
Distributed tracing instrumentation for asyncio with zipkin
Stars: ✭ 161 (-22.22%)
Mutual labels:  asyncio, async-await, aiohttp
Aiohttp Session
Web sessions for aiohttp.web
Stars: ✭ 171 (-17.39%)
Mutual labels:  asyncio, aiohttp
Linkedin Learning Downloader
Linkedin Learning videos downloader
Stars: ✭ 171 (-17.39%)
Mutual labels:  asyncio, aiohttp
Aiohttp Devtools
dev tools for aiohttp
Stars: ✭ 202 (-2.42%)
Mutual labels:  asyncio, aiohttp
Kubernetes asyncio
Python asynchronous client library for Kubernetes http://kubernetes.io/
Stars: ✭ 147 (-28.99%)
Mutual labels:  asyncio, aiohttp
Gain
Web crawling framework based on asyncio.
Stars: ✭ 2,002 (+867.15%)
Mutual labels:  asyncio, aiohttp
Aiohttp Cors
CORS support for aiohttp
Stars: ✭ 173 (-16.43%)
Mutual labels:  asyncio, aiohttp
Cppcoro
A library of C++ coroutine abstractions for the coroutines TS
Stars: ✭ 2,118 (+923.19%)
Mutual labels:  asyncio, async-await
Aiohttp Debugtoolbar
aiohttp_debugtoolbar is library for debugtoolbar support for aiohttp
Stars: ✭ 183 (-11.59%)
Mutual labels:  asyncio, aiohttp
Aiohttp Jinja2
jinja2 template renderer for aiohttp.web
Stars: ✭ 180 (-13.04%)
Mutual labels:  asyncio, aiohttp
Aiomisc
aiomisc - miscellaneous utils for asyncio
Stars: ✭ 200 (-3.38%)
Mutual labels:  asyncio, async-await
Bolt Python
A framework to build Slack apps using Python
Stars: ✭ 190 (-8.21%)
Mutual labels:  asyncio, aiohttp
Python Simple Rest Client
Simple REST client for python 3.6+
Stars: ✭ 143 (-30.92%)
Mutual labels:  asyncio, aiohttp
Aioinflux
Asynchronous Python client for InfluxDB
Stars: ✭ 142 (-31.4%)
Mutual labels:  asyncio, aiohttp
Aiohttp Apispec
Build and document REST APIs with aiohttp and apispec
Stars: ✭ 172 (-16.91%)
Mutual labels:  asyncio, aiohttp
Aiohttp Security
auth and permissions for aiohttp
Stars: ✭ 195 (-5.8%)
Mutual labels:  asyncio, aiohttp
Aiohttp
Asynchronous HTTP client/server framework for asyncio and Python
Stars: ✭ 11,972 (+5683.57%)
Mutual labels:  asyncio, aiohttp
Pymxget
mxget的Python实现
Stars: ✭ 136 (-34.3%)
Mutual labels:  asyncio, aiohttp
Owllook
owllook-小说搜索引擎
Stars: ✭ 2,163 (+944.93%)
Mutual labels:  asyncio, aiohttp

aiohttp_admin

.. image:: https://travis-ci.org/aio-libs/aiohttp_admin.svg?branch=master :target: https://travis-ci.org/aio-libs/aiohttp_admin .. image:: https://codecov.io/gh/aio-libs/aiohttp_admin/branch/master/graph/badge.svg :target: https://codecov.io/gh/aio-libs/aiohttp_admin

aiohttp_admin will help you on building an admin interface on top of an existing data model. Library designed to be database agnostic and decoupled of any ORM or database layer. Admin module relies on async/await syntax (PEP492) thus not compatible with Python older than 3.5.

.. image:: https://raw.githubusercontent.com/aio-libs/aiohttp_admin/master/docs/demo.gif :align: center

Design

aiohttp_admin using following design philosophy:

  • backend and frontend of admin views are decoupled by REST API as a result it is possible to change admin views without changing any python code. On browser side user interacts with single page application (ng-admin).

  • admin views are database agnostic, if it is possible to implement REST API it should be straightforward to add admin views. Some filtering features may be disabled if database do not support some kind of filtering.

.. image:: https://cdn.rawgit.com/aio-libs/aiohttp_admin/master/docs/diagram2.svg :align: center :scale: 60 %

.. include:: CONTRIBUTING.rst

Supported backends

  • PostgreSQL with, aiopg_ and sqlalchemy.core_
  • MySQL with aiomysql_ and sqlalchemy.core_
  • Mongodb with motor_

Mailing List

https://groups.google.com/forum/#!forum/aio-libs

Requirements

  • Python_ 3.5+
  • aiopg_ or aiomysql_ or motor_

.. _Python: https://www.python.org .. _asyncio: http://docs.python.org/3.4/library/asyncio.html .. _aiopg: https://github.com/aio-libs/aiopg .. _aiomysql: https://github.com/aio-libs/aiomysql .. _motor: https://github.com/mongodb/motor .. _sqlalchemy.core: http://www.sqlalchemy.org/ .. _PEP492: https://www.python.org/dev/peps/pep-0492/ .. _docker: https://www.docker.com/ .. _instruction: https://docs.docker.com/engine/installation/linux/ubuntulinux/ .. _docker-machine: https://docs.docker.com/machine/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].