Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other 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 want to start developing an ERP for small companies, So I'd like to know what python web framework is highly recommendable for?
I don't think there's any particularly suited for ERPs. Check out a list of all the current frameworks: http://wiki.python.org/moin/WebFrameworks.
openerp is open source and written in python, it uses cherrypy and other things
A open source erp solution called ERP Next [ https://erpnext.com/ ] uses python framework called WNF Framework [ https://github.com/webnotes/wnframework ] .You can ask for a free demo and gauge the
Frappe is the underlying framework of ERPNext, you can check it out. Documentation is relatively unavailable though so you may have to work your way through the source.
Check out web.py. It's a very minimalist Python framework and gives you the flexibility you might need to build something outside of the mainstream data-driven app
http://webpy.org/
Related
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.
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'm looking to get into web development. My goal is to create some interactive webpages that interact with MS SQL databases (read/insert/updates), and also possibly sites that interact with XML files.
I've got some basic understanding of Python and Perl scripting. Can someone point me in the right direction in either of those languages to accomplish what i'm looking to do, or if it's easier to accomplish in another language what would that be?
Apologies if my stated goal is too broad.
I'd strongly suggest you to look into some of the web development frameworks. They take care of many low-level tasks which is needed in order to build a solid web page. I'm not very familiar with perl, so I can only suggest Python frameworks, especially one of the my favourites - Django. It has very good documentation which is essential for the first-timer. I believe you should be fine as long as you follow the official documentation.
Good luck
You can use SQL Alchamy in python, and lxml or the default ElementTree xml module for simple cases.
I have done both for a webservice I maintain, and they work nice.
You can also use a web development framework. I personally suggest Flask based on that it is a lightweight framework as opposted to django for instance. However, depending on your exact use case the latter might be better.
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 do not even know how to start to ask this question. So here is my best effort. Please guide me along. I have always been interested in GAE. Now I would like to develop an application that uses GAE. But I am having trouble selecting the appropriate technology stack to use with GAE. For example, should I use Python or Java in GAE? Should I use GWT or some other tool to develop the end user interface (GUI).
Right now, I tend to favor using Python on the GAE. But I don't know about the end user interface (GUI). Is GWT the only option?
About my little application:
The application will allow the user to input information/photos about an inspection (common stuff) and create a record of the inspection. Then the application will generated an inspection report (common format) of a selected record.
I hope this is enough to describe my dilemma. Thanks,
App Engine Python applications have built in support for webapp2 which itself inherently support Django templates out of the box. GWT is definitely not the only option.
As Thomas Orozco said in his answer, you can use a myriad of front end technologies. Although I've never tried it, if you wrote your app in Python I'm sure you could use Cheetah, Jinja2, or some other templating language.
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
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