Django

Code

Changeset 652

Show
Ignore:
Timestamp:
09/19/05 22:18:05 (3 years ago)
Author:
adrian
Message:

Added 'Why did you write all of Django from scratch' FAQ question

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/faq.txt

    r651 r652  
    127127to add a given feature to Django. 
    128128 
     129Why did you write all of Django from scratch, instead of using other Python libraries? 
     130-------------------------------------------------------------------------------------- 
     131 
     132When Django was originally written a couple of years ago, Adrian and Simon 
     133spent quite a bit of time exploring the various Python Web frameworks 
     134available. 
     135 
     136In our opinion, none of them were completely up to snuff. 
     137 
     138We're picky. You might even call us perfectionists. (With deadlines.) 
     139 
     140Over time, we stumbled across open-source libraries that did things we'd 
     141already implemented. It was reassuring to see other people solving similar 
     142problems in similar ways, but it was too late to integrate outside code: We'd 
     143already written, tested and implemented our own framework bits in several 
     144production settings -- and our own code met our needs delightfully. 
     145 
    129146Do you have any of those nifty "screencast" things? 
    130147---------------------------------------------------