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
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 have a bit wide question. Maybe someone knows where I can find good examples of functional test frameworks on python.
I'm working on functional tests on python 2.5. I use standart unittest framework, but maybe where is some better ways, with support of nice html reporting.
Also maybe where is examples of tests structure.
Thanks
Unfortuantly I dont have that much experience with testing in Python, but I found these links which seems to contain a lot of useful information:
The sites below lists a lot of different test frameworks. One of which is called TestOOB and has html/xml reporting.
https://pythonhosted.org/testing/
http://pycheesecake.org/wiki/PythonTestingToolsTaxonomy
O'reilly also has a free book on test driven python development which can be found here:
http://chimera.labs.oreilly.com/books/1234000000754/index.html
This site also has some information and examples of different testing frameworks.
http://docs.python-guide.org/en/latest/writing/tests/
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 way to test python programmers as part of my hiring process.
I can understand python and follow the flow but have no idea how to technically challenge someone.
Can someone recommend an online test?
Thanks
There's been plenty of such discussions over at /r/Python. Here's one:
http://www.reddit.com/r/Python/comments/1knw7z/python_interview_questions/
What do specifically want to check?
Their algorithm skills?
Knowledge of specific python technologies (such as django)?
Python pit falls compered to other 3 generation language?
For the first one any interview question can be ok (like how to reverse a linked list, or sort an sorted binary tree and so on) you can find more here http://programmerinterview.com/index.php/data-structures/introduction
For the second ones it more depends on what are you looking for (web developer, server side and so on).
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
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.