Tagged Questions

168
votes
23answers
21k views

Does Django Scale?

I'm building a web application with Django. The reasons I chose Django were: I wanted to work with free/open-source tools I like Python and feel it's a "long term" language, whereas regarding Ruby I ...
32
votes
8answers
5k views

Does Ruby on Rails affect how a web page looks?

Most of the time, whenever I hit a website that looks "bubbly" in nature, and all prettified in those pastel-like colors, I think to myself, "This was probably done with Rails." And, lo and behold, ...
27
votes
7answers
3k views

Why use Django on Google App Engine?

When researching Google App Engine (GAE), it's clear that using Django is wildly popular for developing in Python on GAE. I've been scouring the web to find information on the costs and benefits of ...
26
votes
11answers
8k views

Any early impressions of PyCharm for Python, Django and web development?

I just discovered PyCharm, which is a Python/Django/web IDE currently in "public preview" being developed by JetBrains. Has anyone been using it for the last month it has been available, and if so, ...
24
votes
4answers
2k views

In a django web application, how do you give users their own subdomain?

I'm starting a new web app project using Django and Pinax. I want to be able to give my users unique domain names like Wordpress and other sites do : username.wordpress.com. I'm not sure how to ...
23
votes
3answers
2k views

What are the best benefits of using Pinax?

I recently discovered Pinax that appear to be an django stack with added most-used apps so easy and speed up development. I never used or heard of Pinax before and like to know if you have feedback ...
17
votes
5answers
3k views

Serving dynamically generated ZIP archives in Django

How to serve users a dynamically generated ZIP archive in Django? I'm making a site, where users can choose any combination of available books and download them as ZIP archive. I'm worried that ...
16
votes
3answers
5k views

Is there a mature Django forum application?

I am looking for a forum solution for a Django site. I looked over the options in the Django wiki and I check about integrating non-Django solutions. As much as I do not feel comfortable with ...
14
votes
8answers
1k views

Experience with Django

Having read some great things about the Django framework I'm becoming quite interested in it. But before making my decision to use it for a small project I would like to hear some more down to earth ...
14
votes
7answers
4k views

JSP template inheritance

Coming from a background in Django, I often use "template inheritance", where multiple templates inherit from a common base. Is there an easy way to do this in JSP? If not, is there an alternative to ...
13
votes
4answers
6k views

Django signals vs. overriding save method

I'm having trouble wrapping my head around this. Right now I have some models that looks kind of like this: def Review(models.Model) ...fields... overall_score = ...
12
votes
6answers
5k views

cherrypy vs django

cherrypy vs django, which would you use and why
12
votes
9answers
1k views

Two parter: Django book recommendation + Django real world advice [closed]

First question: What is your favorite Django book or online learning material? CodeProject examples + Django documentation, O'Reilly, etc. Second Question: What are some good tips and advice you ...
12
votes
6answers
2k views

Deploying Google Analytics With Django

We're about to deploy a new Django website, and we want to use Google Analytics to keep track of traffic on the site. However, we don't want all of the hits on development instances to contribute to ...
11
votes
5answers
610 views

Authorization in social networking website

I need to accomplish the following related to privileges: I have 3 users: - User A - User B - User C Each of the users has the following documents with associated access settings: - User A - ...
11
votes
10answers
614 views

How should I go about learning Python?

I am currently learning PHP and want to learn about OOP. I know Python is a well-organized and is all OOP, so would learning Python be a wise choose to learn OOP? The thing is I am more towards ...
11
votes
5answers
864 views

Mercurial: keep 2 branches in sync but with certain persistent differences?

I'm a web developer working on my own using django, and I'm trying to get my head round how best to deploy sites using mercurial. What I'd like to have is to be able to keep one repository that I can ...
11
votes
4answers
1k views

Beginner: Trying to understand how apps interact in Django

I just got done working through the Djano tutorials for the second time, and am understanding things much more clearly now. However, I'm still unclear how apps inside a site interact with one another. ...
11
votes
6answers
6k views

Will Django be a good choice for a permissions based web-app?

I've been exploring the details of Django for about a week now and like what I see. However I've come upon some.. negativity in relation to fine-grained control of permissions to the CRUD interface. ...
10
votes
6answers
803 views

Learning Web Development : Django vs Node vs Rails vs Others

I know Java and Python(with some Django) and little bit of Ruby(no Rails) and no Node.js and probably there are more that I am not aware of. I am planing to start learning web development and its ...
10
votes
12answers
8k views

What is the best IDE setup for web development?

I am starting a little side project which consists of building a small-medium sized, django-based, website. However, last time I was actually in the business of websites, was a few good years ago. So ...
9
votes
2answers
2k views

Can I use Socket.IO with Django?

Is there any way to use Socket.IO http://socket.io/ with Django?
9
votes
4answers
1k views

Migrating Django Application to Google App Engine?

I'm developing a web application and considering Django, Google App Engine, and several other options. I wondered what kind of "penalty" I will incur if I develop a complete Django application ...
8
votes
3answers
571 views

How should Django Apps bundle static media?

Background: I'm starting to use Django for the first time, which is also my first foray into web development. I just got stuck on the whole "serving static media" problem. After spending a while ...
8
votes
5answers
2k views

Apache or lighttpd

For development, I use a local LAMP stack, for production I'm using MediaTemple's Django Container (which I'm loving BTW). MT's container uses lighthttpd. Honestly I've never had any other ...
7
votes
2answers
352 views

The Web 2.0 Ecosystem/Stack

I'm a fairly experienced C/C++/C# programmer but I have absolutely no experience with frontend website related things. Today I decided to take a step to remedy that and write a frontend for a service, ...
7
votes
11answers
1k views

Is python good enough for big applications

From the moment I faced python the only thing I can say for it is "It is awesome". I am using Django framework for it and I am amazed how quick the things happen and how developer friendly this ...
7
votes
4answers
252 views

Stack Overflow's User authentication style

I have to say, stack overflow's user authentication system is probably the best out there. I truly admire using cookies to store anonymous's identity and was planning to do something like that for my ...
7
votes
4answers
1k views

Updated (current) recommendation on Rails versus Django?

(Disclaimer: I asked this question yesterday on Hacker News. While responses were good, there was a notable lack of technical discussion and more of a "you should use rails because that's what you ...
7
votes
4answers
4k views

Django media URLs in CSS files

In django templates, it's common to do the following: <img src="{{ MEDIA_URL }}/img/someImage.jpg"> How would you accomplish this in a CSS file which is not served as a template? .someClass ...
7
votes
4answers
9k views

How do I include image files in Django templates?

I'm new to Django and I'm trying to learn it through a simple project I'm developing called 'dubliners' and an app called 'book'. The directory structure is like this: dubliners/book/ [includes ...
7
votes
4answers
3k views

Should I use git to deploy websites?

I have a site running on django, (but the question applies to anything, php, etc) Currently I'm using unison to deploy my changes, and I (kinda used to) love it because before that I was doing it ...
7
votes
5answers
368 views

How to safely update a live website

We have a fairly simple Django-based website for doing CRUD operations. I've been doing testing and development locally and then checking out releases and database schema changes onto the live server ...
6
votes
2answers
2k views

Accessing local django webserver from outside world

I followed the instructions here to run Django using the built-in webserver and was able to successfully run it using "python manage.py runserver". If I access 127.0.0.1:port locally from the ...
5
votes
3answers
97 views

Django Includes - are they evil?

A friend and developer I respect recently advised that I avoid using 'Includes' in django templates. The sum of their argument was that includes are 'evil'. I am having trouble understanding the ...
5
votes
1answer
82 views

RBAC or ACL, for private content?

Trying to build a micro-CMS (of sorts), which needs to dish out content i.e. images only, for the moment, to person logged in via a username/password. Let's say there can be 10K such users, and each ...
5
votes
4answers
158 views

Are there any good options for baking out a Django site as static files?

Say you have an existing database-backed Django site. Something simple, like single model containing a record for every minor league baseball team. The model is accessed by one view that lists all the ...
5
votes
6answers
687 views

Can you really scale up with Django…given that you can only use one database? (In the models.py and settings.py)

Django only allows you to use one database in settings.py. Does that prevent you from scaling up? (millions of users)
5
votes
11answers
524 views

How limiting are web frameworks

This is a general question about how limiting are web development frameworks such as Django and ruby-on-rails. I am planning on building a RESTful web service which will have a purely JSON/XML ...
5
votes
6answers
1k views

Productive Django Web Development

I am just starting Django by reading the online django book. Could you provide productivity tips for Django web development.Code snippest? Which IDE you use? I am MySQL guy are there any benefits ...
5
votes
2answers
246 views

Where to go to learn about web architecture? Youtube example? [closed]

I'm trying to build a web application that is similar to Youtube (it's not a knock off), but I guess I don't know how video is served on the internet very well. I know how to build regular database ...
5
votes
4answers
2k views

Web application background processes, newbie design question

I'm building my first web application after many years of desktop application development (I'm using Django/Python but maybe this is a completely generic question, I'm not sure). So please beware - ...
5
votes
6answers
713 views

should I drop Google App Engine?

I am developing some kind of financial market simulation on GAE. Although I have attained much progress, I have begun to consider dismissing GAE and going for a Django + rdbms solution for the last ...
5
votes
5answers
2k views

Creating an entire web application using django admin

I was thinking that django admin is an utility to provide trusted administrators of the site, full access to the site's data model. However, after going through django admin in detail, I understand ...
5
votes
5answers
3k views

Django - How to preopopluate admin form fields

I know that you can prepopulate admin form fields based on other fields. For example, I have a slug field that is automatically populated based on the title field. However, I would also like to make ...
5
votes
3answers
3k views

Django and Python 2.6

I'm just starting to get into Django, and of course as of last night one of the two new Python versions went final (2.6 obviously ;)) so I'm wondering if 2.6 plus Django is ready for actual use or do ...
4
votes
1answer
96 views

How can I test https connections with Django as easily as I can non-https connections using 'runserver'?

I have an application that uses "secure" cookies and want to test it's functionality without needing to set up a complicated SSL enabled development server. Is there any way to do this as simply as I ...
4
votes
4answers
173 views

Deploying Django on an apache server

OK, first off I am new to web development. So be gentle. AND thanks in advance. I am developing on windows env. and deploying on a linux server w/ Python 2.6.2 installed. Running apache2.2 as Virtual ...
4
votes
5answers
556 views

Python Web Framework for Small Team

I have 4 days off and I will use this time to rewrite our RoR (Ruby on Rails) Application in a python web framework just for fun ;-] (and why not make the switch, RoR is great but keep changing all ...
4
votes
1answer
215 views

How can I disable Django's admin in a deployed project, but keep it for local development?

I am currently working in a Django project for which I need access to the admin area for local development, but want to disable it in the deployed site (for security reasons, among others). How can I ...

1 2 3 4 5 7