Name | picata JSON |
Version |
0.0.12
JSON |
| download |
home_page | None |
Summary | Ada's Wagtail-based CMS & blog |
upload_time | 2025-02-15 09:33:45 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.13 |
license | # The MIT License (MIT)
Copyright © `2024` `Ada Wright <ada@hpk.io>`
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the “Software”), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE. |
keywords |
blog
cms
django
wagtail
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Picata
**_This project is very much pre-alpha_**
Picata is a CMS & blog application I forked off from my personal website. At the
moment it's effectively a ton of pre-made [Wagtail](https://wagtail.org) "stuff"
(models, views, templatetags, middleware, hooks, etc.), made generic enough that
you can `pip install` the package, add it to your `INSTALLED_APPS`, and have a
CMS/blog up-and-running without having to spend weeks or months tailoring Wagtail
to your needs.
It's still under heavy development, with most documentation and a project
template pending but - if you're already working with Wagtail - the source
provides many working solutions to common problems. The repo for the aforementioned
personal website [lives on GitHub](https://github.com/hipikat/hpk.io), and
demonstrates a working implementation of this package (requiring, in fact, only
this package as a dependency).
## What's in the box?
- [Wagtail](https://wagtail.org) (on [Django](https://www.djangoproject.com)) as the CMS & web frameworks
- Runs on [PostgreSQL](https://www.postgresql.org); loaded with scripts for managing the
database lifecycle and snapshots
- [Tailwind CSS](https://tailwindcss.com) in [Sass](https://sass-lang.com) for front-end styling
- [lxml](https://lxml.de) is used for fast HTML processing in a middleware layer
### Development features & workflows
Everything's written in very modern Python (circa 2025), with agressive linting and type-checking
thanks to [mypy](https://mypy-lang.org),
[Pydantic](https://docs.pydantic.dev/latest/)/[Pyright](https://github.com/microsoft/pyright),
and [Ruff](https://docs.astral.sh/ruff/). Picata uses [Django Debug Toolbar](https://django-debug-toolbar.readthedocs.io),
[runserver_plus](https://django-extensions.readthedocs.io/en/latest/runserver_plus.html), and
[iPython](https://www.google.com/search?client=safari&rls=en&q=ipython&ie=UTF-8&oe=UTF-8) for
development workflows. The project itself uses [pre-commit](https://pre-commit.com) extensively,
with 16 hooks to keep everything neat and tidy.
All front-end code is written in [TypeScript](https://typescript-eslint.io), with
[React](https://react.dev) set up and ready-to-go in the [Webpack](https://webpack.js.org) pipeline,
if you're into that kind of thing.
### Holding things together
- Uses [UV](https://github.com/astral-sh/uv) and
[pyproject.toml](https://packaging.python.org/en/latest/specifications/pyproject-toml/)
exclusively for Python project management
- [Just](https://just.systems) as a task runner, with over 60 recipes (at last count)
- [OpenTofu](https://opentofu.org) (a fork of [Terraform](https://www.terraform.io)) and
[cloud-init](https://cloud-init.io) for all DevOps & rapid deployment
- [Docker](https://www.docker.com) and [Docker Compose](https://docs.docker.com/compose/) for local
development
Raw data
{
"_id": null,
"home_page": null,
"name": "picata",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.13",
"maintainer_email": null,
"keywords": "blog, cms, django, wagtail",
"author": null,
"author_email": "Ada Wright <ada@hpk.io>",
"download_url": "https://files.pythonhosted.org/packages/f7/7c/613688b34556192275b2726a5e9b522d5154ad52c7a29016b3f802e321ad/picata-0.0.12.tar.gz",
"platform": null,
"description": "# Picata\n\n**_This project is very much pre-alpha_**\n\nPicata is a CMS & blog application I forked off from my personal website. At the\nmoment it's effectively a ton of pre-made [Wagtail](https://wagtail.org) \"stuff\"\n(models, views, templatetags, middleware, hooks, etc.), made generic enough that\nyou can `pip install` the package, add it to your `INSTALLED_APPS`, and have a\nCMS/blog up-and-running without having to spend weeks or months tailoring Wagtail\nto your needs.\n\nIt's still under heavy development, with most documentation and a project\ntemplate pending but - if you're already working with Wagtail - the source\nprovides many working solutions to common problems. The repo for the aforementioned\npersonal website [lives on GitHub](https://github.com/hipikat/hpk.io), and\ndemonstrates a working implementation of this package (requiring, in fact, only\nthis package as a dependency).\n\n## What's in the box?\n\n- [Wagtail](https://wagtail.org) (on [Django](https://www.djangoproject.com)) as the CMS & web frameworks\n- Runs on [PostgreSQL](https://www.postgresql.org); loaded with scripts for managing the\n database lifecycle and snapshots\n- [Tailwind CSS](https://tailwindcss.com) in [Sass](https://sass-lang.com) for front-end styling\n- [lxml](https://lxml.de) is used for fast HTML processing in a middleware layer\n\n### Development features & workflows\n\nEverything's written in very modern Python (circa 2025), with agressive linting and type-checking\nthanks to [mypy](https://mypy-lang.org),\n[Pydantic](https://docs.pydantic.dev/latest/)/[Pyright](https://github.com/microsoft/pyright),\nand [Ruff](https://docs.astral.sh/ruff/). Picata uses [Django Debug Toolbar](https://django-debug-toolbar.readthedocs.io),\n[runserver_plus](https://django-extensions.readthedocs.io/en/latest/runserver_plus.html), and\n[iPython](https://www.google.com/search?client=safari&rls=en&q=ipython&ie=UTF-8&oe=UTF-8) for\ndevelopment workflows. The project itself uses [pre-commit](https://pre-commit.com) extensively,\nwith 16 hooks to keep everything neat and tidy.\n\nAll front-end code is written in [TypeScript](https://typescript-eslint.io), with\n[React](https://react.dev) set up and ready-to-go in the [Webpack](https://webpack.js.org) pipeline,\nif you're into that kind of thing.\n\n### Holding things together\n\n- Uses [UV](https://github.com/astral-sh/uv) and\n [pyproject.toml](https://packaging.python.org/en/latest/specifications/pyproject-toml/)\n exclusively for Python project management\n- [Just](https://just.systems) as a task runner, with over 60 recipes (at last count)\n- [OpenTofu](https://opentofu.org) (a fork of [Terraform](https://www.terraform.io)) and\n [cloud-init](https://cloud-init.io) for all DevOps & rapid deployment\n- [Docker](https://www.docker.com) and [Docker Compose](https://docs.docker.com/compose/) for local\n development\n",
"bugtrack_url": null,
"license": "# The MIT License (MIT)\n \n Copyright \u00a9 `2024` `Ada Wright <ada@hpk.io>`\n \n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation\n files (the \u201cSoftware\u201d), to deal in the Software without\n restriction, including without limitation the rights to use,\n copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following\n conditions:\n \n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \u201cAS IS\u201d, WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.",
"summary": "Ada's Wagtail-based CMS & blog",
"version": "0.0.12",
"project_urls": {
"Documentation": "https://github.com/hipikat/picata#readme",
"Issues": "https://github.com/hipikat/picata/issues",
"Source": "https://github.com/hipikat/picata"
},
"split_keywords": [
"blog",
" cms",
" django",
" wagtail"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "a491c0e577e5390ddf3e2117ebb7619230bdcdfc9bdad46de9c5a768857a8017",
"md5": "f6014cae2044c7f2ffbfb84a5f75a72f",
"sha256": "762ce95848a580d36e8bdf8f32d0804831c231f06ecc8dd2cc973262ce1e41e2"
},
"downloads": -1,
"filename": "picata-0.0.12-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f6014cae2044c7f2ffbfb84a5f75a72f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.13",
"size": 2639214,
"upload_time": "2025-02-15T09:33:48",
"upload_time_iso_8601": "2025-02-15T09:33:48.778055Z",
"url": "https://files.pythonhosted.org/packages/a4/91/c0e577e5390ddf3e2117ebb7619230bdcdfc9bdad46de9c5a768857a8017/picata-0.0.12-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f77c613688b34556192275b2726a5e9b522d5154ad52c7a29016b3f802e321ad",
"md5": "1bb55893c457175f664e3d53f68615e8",
"sha256": "a63bbba7ce800e07ba2445819dfe2c3b68016865a5854fc92edf563fb6fc8b2e"
},
"downloads": -1,
"filename": "picata-0.0.12.tar.gz",
"has_sig": false,
"md5_digest": "1bb55893c457175f664e3d53f68615e8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.13",
"size": 2184222,
"upload_time": "2025-02-15T09:33:45",
"upload_time_iso_8601": "2025-02-15T09:33:45.406433Z",
"url": "https://files.pythonhosted.org/packages/f7/7c/613688b34556192275b2726a5e9b522d5154ad52c7a29016b3f802e321ad/picata-0.0.12.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-15 09:33:45",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "hipikat",
"github_project": "picata#readme",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "picata"
}