{"id":13424557,"url":"https://github.com/piccolo-orm/piccolo_admin","last_synced_at":"2026-03-06T18:16:18.187Z","repository":{"id":37492982,"uuid":"193770368","full_name":"piccolo-orm/piccolo_admin","owner":"piccolo-orm","description":"A powerful web admin for your database.","archived":false,"fork":false,"pushed_at":"2025-05-12T15:10:43.000Z","size":9679,"stargazers_count":350,"open_issues_count":52,"forks_count":42,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-05-12T15:53:18.229Z","etag":null,"topics":["admin","asgi","asyncio","cms","content-management-system","dashboard","database","fastapi","hacktoberfest","piccolo","postgresql","python","python3","sqlite","starlette","vuejs"],"latest_commit_sha":null,"homepage":"https://piccolo-orm.com/ecosystem/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/piccolo-orm.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.rst","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-06-25T19:24:31.000Z","updated_at":"2025-05-12T15:07:55.000Z","dependencies_parsed_at":"2023-11-16T13:42:51.116Z","dependency_job_id":"2ef8ba03-abfc-477e-8fe7-e708ae72daae","html_url":"https://github.com/piccolo-orm/piccolo_admin","commit_stats":{"total_commits":553,"total_committers":16,"mean_commits":34.5625,"dds":"0.20795660036166363","last_synced_commit":"9306373cc7ac6f7058d41379023bebe1c3560341"},"previous_names":[],"tags_count":143,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piccolo-orm%2Fpiccolo_admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piccolo-orm%2Fpiccolo_admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piccolo-orm%2Fpiccolo_admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piccolo-orm%2Fpiccolo_admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/piccolo-orm","download_url":"https://codeload.github.com/piccolo-orm/piccolo_admin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254254040,"owners_count":22039792,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["admin","asgi","asyncio","cms","content-management-system","dashboard","database","fastapi","hacktoberfest","piccolo","postgresql","python","python3","sqlite","starlette","vuejs"],"created_at":"2024-07-31T00:00:56.182Z","updated_at":"2026-03-06T18:16:18.176Z","avatar_url":"https://github.com/piccolo-orm.png","language":"Python","readme":"![Logo](https://raw.githubusercontent.com/piccolo-orm/piccolo_admin/master/docs/logo_hero.png \"Piccolo Admin Logo\")\n\n# Piccolo Admin\n\n[![Documentation Status](https://readthedocs.org/projects/piccolo-admin/badge/?version=latest)](https://piccolo-admin.readthedocs.io/en/latest/?badge=latest)\n\nPiccolo Admin is a powerful admin interface / content management system for Python, built on top of Piccolo.\n\n![Screenshot](https://raw.githubusercontent.com/piccolo-orm/piccolo_admin/master/docs/images/screenshot.png \"Screenshot\")\n\nIt was created at a design agency to serve the needs of customers who demand a high quality, beautiful admin interface for their websites. It's a modern alternative to tools like Wordpress and Django Admin.\n\nIt's built using the latest technologies, with Vue.js on the front end, and a powerful REST backend.\n\nSome of it's standout features:\n\n* Powerful data filtering\n* Builtin security\n* Media support, both locally and in S3 compatible services\n* Dark mode support\n* CSV exports\n* Easily create custom forms\n* Works on mobile and desktop\n* Use standalone, or integrate it easily with ASGI apps like FastAPI, and Starlette\n* Multilingual out of box\n* Bulk actions, like updating and deleting data\n* Flexible UI - only show the columns you want your users to see\n\n## Try it\n\n[Try it online](https://demo1.piccolo-orm.com/) (username: piccolo, password: piccolo123).\n\n## Local Demo\n\nTo run a demo locally, using Python 3.9 or above:\n\n```bash\npip install piccolo_admin\nadmin_demo\n```\n\nAnd then just launch `localhost:8000` in your browser.\n\nTo see what happens behind the scenes, see `piccolo_admin/example/app.py`.\n\nIn a few lines of code we are able to:\n\n-   Define our models\n-   Setup a database\n-   Create a REST API\n-   Setup a web server and admin interface\n\n## ASGI\n\nSince the admin is an ASGI app, you can either run it standalone like in the demo, or integrate it with a larger ASGI app such as FastAPI and Starlette.\n\nFor example, using Starlette routes:\n\n```python\nimport uvicorn\nfrom movies.endpoints import HomeEndpoint\nfrom movies.tables import Director, Movie\nfrom starlette.routing import Mount, Route, Router\n\nfrom piccolo_admin.endpoints import create_admin\n\n# The `allowed_hosts` argument is required when running under HTTPS. It's\n# used for additional CSRF defence.\nadmin = create_admin([Director, Movie], allowed_hosts=[\"my_site.com\"])\n\n\nrouter = Router(\n    [\n        Route(path=\"/\", endpoint=HomeEndpoint),\n        Mount(path=\"/admin/\", app=admin),\n    ]\n)\n\n\nif __name__ == \"__main__\":\n    uvicorn.run(router)\n\n```\n\n## Full docs\n\nFull documentation is available on [Read the docs](https://piccolo-admin.readthedocs.io/en/latest/).\n","funding_links":[],"categories":["Third-Party Extensions","Uncategorized","Admin","Web"],"sub_categories":["Admin","Uncategorized"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiccolo-orm%2Fpiccolo_admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpiccolo-orm%2Fpiccolo_admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiccolo-orm%2Fpiccolo_admin/lists"}