9 Replies - 561 Views - Last Post: 21 March 2012 - 02:11 PM Rate Topic: -----

#1 jinks  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 2
  • Joined: 28-February 12

python library for creating a website

Posted 13 March 2012 - 12:26 AM

Does anyone know a useful python library that allows me to create a website?
Is This A Good Question/Topic? 0
  • +

Replies To: python library for creating a website

#2 Simown  Icon User is offline

  • Blue Sprat
  • member icon

Reputation: 315
  • View blog
  • Posts: 650
  • Joined: 20-May 10

Re: python library for creating a website

Posted 13 March 2012 - 01:06 AM

What sort of thing were you looking for? A way to create dynamic scripts for your website maybe? Or a fully kitted out web framework like Django?
Was This Post Helpful? 2
  • +
  • -

#3 Choscura  Icon User is offline

  • D.I.C Lover


Reputation: 441
  • View blog
  • Posts: 2,190
  • Joined: 18-October 08

Re: python library for creating a website

Posted 20 March 2012 - 01:55 PM

Django gets my recommendation as well. There's a learning curve- I'm on it, it's not easy to start with, especially if you're used to 'pretty' IDE's like Visual Studio or Netbeans - but it's very powerful once you get into the lower levels of it, and it's very fast, if you know what you want to do.
Was This Post Helpful? 0
  • +
  • -

#4 darek9576  Icon User is offline

  • D.I.C Lover

Reputation: 194
  • Posts: 1,618
  • Joined: 13-March 10

Re: python library for creating a website

Posted 20 March 2012 - 03:59 PM

In what way is Django fast if i may ask. I dont know much abt web languages thats why im asking. What low level stuff does it let you do?
Was This Post Helpful? 0
  • +
  • -

#5 Simown  Icon User is offline

  • Blue Sprat
  • member icon

Reputation: 315
  • View blog
  • Posts: 650
  • Joined: 20-May 10

Re: python library for creating a website

Posted 20 March 2012 - 04:09 PM

Simply, everything you can do with Python, you can do with Django, since it IS Python - it's definitely not just a web language. One of the reasons why it's fast in development is because it's Python code, which lends itself to that task.

Django makes development even faster for all things web having it's own template system, a MCV development style, each URL is mapped by regex so dynamic URLs and binding to user-generated content is simple. It's database backed, and every table is represented by a model - which is provided with its own API. Shipped with every deployment is an admin system, which simplifies the task of adding new content after the initial model creation.

As you can probably tell, I would highly recommend it. The Django website and free online book are good resources to get started.
Was This Post Helpful? 0
  • +
  • -

#6 AVReidy  Icon User is offline

  • D.I.C Regular
  • member icon

Reputation: 52
  • View blog
  • Posts: 391
  • Joined: 17-February 11

Re: python library for creating a website

Posted 20 March 2012 - 06:53 PM

Since Django uses Python, in addition to being inherently fast to develop with, it is relatively fast on the execution speed side of things (for being an interpreted language). When clocked, it outperforms both Ruby (on rails) and PHP.
Was This Post Helpful? 1
  • +
  • -

#7 darek9576  Icon User is offline

  • D.I.C Lover

Reputation: 194
  • Posts: 1,618
  • Joined: 13-March 10

Re: python library for creating a website

Posted 21 March 2012 - 06:44 AM

So Django/Python is fast when developing an application but what powerful, low level stuff does Django let you do.
Was This Post Helpful? 0
  • +
  • -

#8 Simown  Icon User is offline

  • Blue Sprat
  • member icon

Reputation: 315
  • View blog
  • Posts: 650
  • Joined: 20-May 10

Re: python library for creating a website

Posted 21 March 2012 - 01:36 PM

Python is a high level language, what do you mean by "low level stuff"?
Was This Post Helpful? 0
  • +
  • -

#9 darek9576  Icon User is offline

  • D.I.C Lover

Reputation: 194
  • Posts: 1,618
  • Joined: 13-March 10

Re: python library for creating a website

Posted 21 March 2012 - 02:02 PM

Choscura mentioned it, and i dont know what they meant by it, thats why im asking.
Was This Post Helpful? 0
  • +
  • -

#10 Simown  Icon User is offline

  • Blue Sprat
  • member icon

Reputation: 315
  • View blog
  • Posts: 650
  • Joined: 20-May 10

Re: python library for creating a website

Posted 21 March 2012 - 02:11 PM

I think he was referring to the "lower levels" being the more "in depth" Django - especially since he stated there is a steep learning curve for him. The further you advance with it, you'll see more features that make it an even more powerful tool.

This post has been edited by Simown: 21 March 2012 - 02:12 PM

Was This Post Helpful? 0
  • +
  • -

Page 1 of 1