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
Is there any Cheat Sheet or Document where I can see all the build-in modules, functions, commands etc in Django and or Python and where I will get an overview of ALL possible elements I could use. I am sure this is would be a big file/image etc , but it would be very helpful to know what commands I could use.
Run:
pydoc -p 8080
And go here.
For django use this. It is a little out of date but still relevant.
For python I like this quick reference.
There is the Global Module Index
for Python.
Here are some build-in functions
If you're using django, a useful way of browsing the template tags, models and so on for your project is to enable admin docs. See this post on how to enable admin docs.
Related
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/
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 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.
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
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 am trying to find tutorials on how to write buildout recipes. I haven't found any, except the one on buildout site. But it is very rudimentary. Is there a good tutorial for writing buildout recipes?
http://pypi.python.org/pypi/ZopeSkel/ has a template for a buildout recipe. That at least gets you started regarding having a skeleton for adding your own code.
http://pypi.python.org/pypi/zc.buildout#id1 has some information on which methods you need to implement.
Best way to learn it is by looking at an existing recipe to see how it gets done. I'd suggest my own recipe :-) :
https://svn.plone.org/svn/collective/buildout/collective.recipe.backup/trunk/
Here's a short tutorial with basic information http://grok.zope.org/documentation/tutorial/introduction-to-zc.buildout/writing-your-own-recipes
A quick google search came back with the following:
http://docs.plone.org/old-reference-manuals/buildout/creating.html
And the answers in the following Stack Overflow question look pretty helpful as well:
Better resources to learn buildout