Anton Belev
Anton Belev

Reputation: 13533

Framework for developing web sites using python and eclipse

I am participating in a student team and we are going to develop a web-site. I have experience in developing web sites using ASP.Net and C# as codebehind (in visual studio). So basically we were wondering if we can make the same thing but with Eclipse and Python. Any suggestions will be appreciated.

Upvotes: 0

Views: 421

Answers (1)

Code Painters
Code Painters

Reputation: 7275

I don't think there's much support you can get from Eclipse for Python web frameworks, with one minor exception: PyDev (Python plugin for Eclipse) offers some basic tools for Django framework.

Speaking of frameworks alone, Django is a good one to start with (and it's very popular). If you need more flexibility, you can try Pyramid, or Turbo Gears. There are in fact many possibilities, take a look here.

Upvotes: 1

Related Questions