aino-utkik 0.7.6
pip install aino-utkik==0.7.6
Newer version available (0.9.1)
Released:
Small, clean code with a lazy view dispatcher and class based views for Django.
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD)
- Author: Mikko Hellsing
Classifiers
- Development Status
- Environment
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
aino-utkik provides minimalistic class based views for Django focusing on common usage, readability and convienience.
Example:
# urls.py
from utkik.dispatch import *
urlpatterns = patterns('',
(r'^(?P<slug>[-\w]+)/$', 'news.NewsDetailView'),
(r'^$', 'news.NewsListView'),
)
# news/views.py
from django.shortcuts import get_object_or_404
from news.models import News
from utkik import View
class NewsDetailView(View):
template_name = 'news/news_detail.html'
def get(self, slug):
self.c.news = get_object_or_404(News.objects, slug=slug)
class NewsListView(View):
template_name = 'news/news_list.html'
def get(self):
self.c.news_list = News.objects.all()
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD)
- Author: Mikko Hellsing
Classifiers
- Development Status
- Environment
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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
File details
Details for the file aino-utkik-0.7.6.tar.gz.
File metadata
- Download URL: aino-utkik-0.7.6.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f50e39b8bc9149938ded0c0457e967a4938e1a07baa0196338b0f4113b09d99f
|
|
| MD5 |
6e5400fec3219e54aec21e2c23d8b69a
|
|
| BLAKE2b-256 |
f36dd471e7dbf48f42438d2709c50167e5f7049caab2657ad8af24512f72c909
|