24👍
I’ve looked and not yet found something for Django quite like the Rails Generate command. Django has a bit of a different philosophy. It gives you tools to make doing things easily but doesn’t actually do it for you (except the admin interface). In the grand scheme of things, I think this is OK. When I use rails’ scaffolding I’m not able to often keep much of the auto-generated stuff. When I do, the django admin interface would probably also have worked and given me more functionality.
Instead, what I suggest is reading through the Django tutorial step 4, which introduces generic views, and then chapter 7 of the Django book which introduces forms. You have to be patient on chapter 7 because the authors think you want to know the minute details of the hard-way before they teach you the easy way. (try searching the page for the phrase django.forms)
In the end the amount of work you have to do between rails and django is equivalent, and maybe slightly less with Django. However you don’t have one command to automatically give you boilerplate code to use as a foundation.
8👍
So Django 1.3 still lacks ‘scaffold’ functionality. Not good.
What is best in scaffold, is that it allows developer to immediately start with the project, without recalling all ‘models’, ‘urls’ and ‘views’ syntaxes.
Look at this example, let’s start new project and app:
$django-admin startproject mysite
$python manage.py startapp blog
and now we need to manually ‘START’ everything, from almost empty files.
BUT it would be very convenient to do it in this way (like in rails)
$python manage.py scaffold app:blog model:Post title:string content:text
This should give us:
models.py
class Post(models.Model):
title = models.CharField
content = models.TextField
views.py
def index(request):
posts = Post.objects.all().order_by('-id')
return render_to_response('blog/index.html', {'posts': posts})
and update urls.py somehow, … or not, this is more complicated but less needed.
This should not be difficult to implement in future Django releases. I would do this if I had enough knowledge and experience in Django. Unfortunately I’m not doing many Django projects and that’s why I need this functionality.
- [Django]-Django 1.8 – what's the difference between migrate and makemigrations?
- [Django]-Django Overriding Model Clean() vs Save()
- [Django]-Gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3> django
7👍
This one is closer to rails-like scaffolding: https://github.com/modocache/django-generate-scaffold
- [Django]-Django and query string parameters
- [Django]-Generating file to download with Django
- [Django]-In Django is there a way to display choices as checkboxes?
2👍
there is actually a new django package that scaffolds everything you’d need in your application models, views, urls, tests and a lot more here https://github.com/Abdenasser/dr_scaffold
- [Django]-Django – How to get self.id when saving a new object?
- [Django]-How to use custom manager with related objects?
- [Django]-What is StatReloader while running Django?
1👍
I found this: https://github.com/madhusudancs/django-groundwork
Looks like it is exactly what you’re looking for. Hope it helps.
- [Django]-Django admin make a field read-only when modifying obj but required when adding new obj
- [Django]-Edit/show Primary Key in Django Admin
- [Django]-Django and Middleware which uses request.user is always Anonymous
1👍
I just used the scaffold helper/management command provided by Django Common and it seems to have set up a decent chunk of boilerplate code. The options are limited, but decent enough.
I skimmed through the code and most of it looks fine. I needed to do a little bit of cleaning up, once the scaffolding was ‘erected’, though:
- Separate
import
lines were added for each model created. Merged them. - The templates still carried the old (1.4)
url
template tag specs. Modified them to reflect the new (1.5) specs, i.e. enclosed the second parameter in single quotes, in each of the html files created, for each of the models. - Updated the main
urls.py
with aninclude
for theapp.urls
module. - I use a non-standard settings.py setup – three separate files
common.py
,dev.py
andprod.py
for my setup. Had to add the app manually to the installed apps. YMMV.
(Will edit this list if I think of anything else)
That being said, looking at the amount of boilerplate code that I did NOT have to write, I’d say it does a very good job!
As of now, the repo seems pretty well-maintained – the last commit was 18 days ago at the time of writing this response. I’ll probably submit a pull request/raise an issue about the problems I faced on their repo, some time soon.
- [Django]-How to get the common name for a pytz timezone eg. EST/EDT for America/New_York
- [Django]-How to receive POST data in django
- [Django]-One-to-many inline select with django admin
0👍
You may check django-addview. It is meant to do boring, mundane steps needed to add new view automatically with nice ncurses GUI. What it does for you:
- Extend CBV or write function
- Fill parameters of CBV
- Creates template in given location
- Edits urls.py for you
- Cares about all imports
Full disclosure: I wrote it.
- [Django]-Django – Static file not found
- [Django]-Django 1.7 upgrade error: AppRegistryNotReady: Apps aren't loaded yet
- [Django]-Can you give a Django app a verbose name for use throughout the admin?