Neapolitan: quick CRUD views for Django.
Project description
I have a Django model:
from django.db import models
class Bookmark(models.Model):
url = models.URLField(unique=True)
title = models.CharField(max_length=255)
note = models.TextField(blank=True)
favourite = models.BooleanField(default=False)
I want easy CRUD views for it, without it taking all day:
# urls.py
from neapolitan.views import CRUDView
from .models import Bookmark
class BookmarkView(CRUDView):
model = Bookmark
fields = ["url", "title", "note"]
filterset_fields = [
"favourite",
]
urlpatterns = [
*BookmarkView.get_urls(),
]
Neapolitan’s CRUDView provides the standard list, detail, create, edit, and delete views for a model, as well as the hooks you need to be able to customise any part of that.
Neapolitan provides base templates and re-usable template tags to make getting your model on the page as easy as possible.
Where you take your app after that is up to you. But Neapolitan will get you started.
Let’s go! 🚀
Next stop the docs 🚂
Versioning and Status
Neapolitan uses a two-part CalVer versioning scheme, such as 23.7. The first number is the year. The second is the release number within that year.
This is alpha software. I’m still working out the details of the API, and I’ve only begun the docs.
But: You could just read neapolitan.views.CRUDView and see what it does. Up to you. 😜
Installation
Install with pip:
pip install neapolitan
Add neapolitan to your INSTALLED_APPS:
INSTALLED_APPS = [
...
"neapolitan",
]
Templates expect a base.html template to exist and for that to defined a content block. (Refs <https://github.com/carltongibson/neapolitan/issues/6>.)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file neapolitan-24.8.tar.gz
.
File metadata
- Download URL: neapolitan-24.8.tar.gz
- Upload date:
- Size: 24.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae45b2133bb15dfc48edbfb35f625b4c37d77d6586857cc51e45dd3932d88a01 |
|
MD5 | c54047205a924461f97f91d0bdeb2366 |
|
BLAKE2b-256 | 3fb5153b05d6893794d423df655f1c0ddab332eb2f81643741881c231e34678f |
File details
Details for the file neapolitan-24.8-py2.py3-none-any.whl
.
File metadata
- Download URL: neapolitan-24.8-py2.py3-none-any.whl
- Upload date:
- Size: 14.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8551e5e6d00f81920a248f1b1267ef5caaa46d14a67e7bb4ae1856a260787e7b |
|
MD5 | 79bc3c335ea7093cd3b55994aa75e268 |
|
BLAKE2b-256 | 94da3875acc031778cd5249621f390667b724c30b2d1d111ed17f8e23882c483 |