Which framework is best for web based app [closed] - python

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have a program written in python. I wan to create a site, which provides the results from the site in a web page. The web-page takes input from user process data by the python [program and gives output in the web[age. I have heard that there are web frameworks like web2py, flask, django etc. The site has only minimal data to work on. Which one should I use?

I can only tell my opinion, because there is no right or wrong answer. If you have a small project, use a microframework like bottle.py, cherrypy..., if you have a HUGE project it might pay off to get familiar with a full-blown framework with database-integration like django.

Related

bottle vs cherry decision for a REST service [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am putting together a REST service that can do the following:
Accept incoming files as part of a PUT request. The files can be as much as a few gigs in size.
Handle authentication.
I started my code with bottle and it was pretty compact to use but someone pointed me to cherry. I am still new to python web frameworks so would like to know people's opinions.
well, you can do RESTful webservices with any framework you like. I do have a small preference over bottle.py, because I like the plugins and routes as decorator model... And btw, you can put cherry in a bottle :-) (sorry for the joke)
But what's important given your constraints is that you do not use a wsgi backend to serve your files, as current wsgi implementation is a terrible bottleneck for concurrency, but instead choose another backend.

Example google app engine (python, Django) websites with open source [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am learning to create a website using google app engine with python and django. Does anyone have sample websites with open source that i can look at and learn from ?
thanks,
A nice variety of example projects:
http://code.google.com/p/google-app-engine-samples/
Checkout rietveld, a code review web app along with its source code.

Good examples of open source Google App Engine Django projects [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a good example of a Django / python based Google App Engine app to use a learning tool.
I have seen some of the other posts and they are mainly Java based and not really what I am looking for.
Any advice?
Thank you in advance,
Kent
Jaiku and Code Review are two good examples of opensource projects run with GAE/Django.
http://code.google.com/p/jaikuengine/
http://code.google.com/p/rietveld/
i didnt find an open source project but i think i found a good tutorial for you
http://www.joeyb.org/blog/2009/05/28/django-based-blog-on-google-app-engine-tutorial-part-1
i'll keep this post updated when i find more
Here you have an example of the google prediction api in python that uses appengine and Django in order to build a model and use it to predict the results. It is a great application
http://code.google.com/p/google-prediction-api-samples/source/browse/#svn/trunk/blog_moderation

any django 's simple login/register demo to be download? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
i will be write a login/register demo using django
i want to know that : Does django has a demo like this ?
thanks
Django does not has any demo for login/registration.
One of the pillar reasons for Django's popularity is its wholesome documentation. You should be able to comfortably get going using the docs for Django auth.
If interested, you may explore Django registration, which is a custom app that you can easily integrate in your Django powered project.

Online file comparison tool [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to a visualize web file compare tool,that can embed into my app,I know there some software like beyond compare,it has done great job,but it on windows & need buy licence,if someone has develop a web version,then it can cross platform,
does some already achieve this?
if it is python - friendly is great appreciated
Take a look at rietveld
http://code.google.com/p/rietveld/
Here is an example http://codereview.appspot.com/2208048/diff/4001/Documentation/notation/fretted-strings.itely
There is Trac: Trac is an enhanced wiki and issue tracking system for software development projects. ... It provides an interface to Subversion (or other version control systems)...
It is written in python, and can compare source files. This looks like:
http://trac.edgewall.org/changeset?old_path=%2Ftrunk%2Ftrac%2Fdb%2Fschema.py&old=7890&new_path=%2Ftrunk%2Ftrac%2Fdb%2Fschema.py&new=9406

Categories

Resources