1
vote
Python web development - with or without a framework
Django makes it possible to whip out a website rapidly, that's for sure. You don't need to be a Python master to use it, and since it's very pythonic in it's design, and there is not really any "ma …
3
votes
What IDE would you recommend for Python development?
Vim (or gVim, or MacVim).
Free, very powerful. You can write your own functions, macros, extensions, etc in minutes and expand it's functionality. There are tons of plugins and …
0
votes
How do I use django.core.urlresolvers.reverse with a function reference instead of a named URL pattern?
Jack M.'s example is nearly correct.
It needs to be a url function, not a tuple, if you want to use named urls.
url(r'^no_monkeys/$', 'views.noMonkeys', {}, "no-monkeys"),
…
13
votes
listing all functions in a python module
You can use dir(module) to see all available methods/attributes. Also check out PyDocs.
…
1
vote
Is there any list of blog engines, written in Django?
Nathan Borror has a great package of 'basic apps' that has a blog. These are well written, well documented apps that you should try out, get ideas from, etc.
…
7
votes
Is there an easy way to populate SlugField from CharField?
for Admin in 1.0, you'd need to use
prepopulated_fields = {'slug':('title',),}
in your admin.py
Your key in the prepopulated_fields dictionary is the field …
1
vote
Getting MAC Address
I haven't personally used this, but it looks like it's exactly what you want.
Python netifaces
…
