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).
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 9 years ago.
Improve this question
where do I find sample program of python ? I've got a book about Python " Hands-On Python
A Tutorial Introduction for Beginners Python 3.1 Version ", and it explains about there are a lot of sample program which can be used to practice, like : madlib.py, formatBraces.py, face.py, etc. But, I don't find them in Python's directory like the book said. I'm using Python 3.3, or is the problem because the author using Python 3.1 ? But, I don't think so. Does anyone here got the same problem ?
Those are not examples from the Python distribution itself, they are specific to that book. In any case, some of them seem to be at this address.
I don't know if I'm entirely answering your question but...there are many good websites where you can find sample code and how to do different things...i use these a lot...
http://docs.python.org/2/library/
http://infohost.nmt.edu/tcc/help/pubs/lang/pytut27/web/index.html
These should give you the answers to what you're looking for :) sorry if i didnt answer your question properly
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
We handle huge data streams through our socket servers and in need of a non-block way to management callbacks to prevent race conditions.
Recently I came to know about functional reactive programming a method of programming and the solution is just what we are looking for.
There are examples in Haskell (reactive banana), ClojureScript and Javascript (bacon js), but none for python. Are there any libraries written for Python enabling Functional Reactive Programming? If there aren't any libraries, where is a good place to start? What are the possible challenges to write one?
There's an official Microsoft wip Rx (Reactive Extensions) implementation for Python called Rx.py.
This project targets Python 3.
I just checked the Wikipedia article on reactive programming, and in there, three modules are mentioned. You could check those out:
Trellis
Yoopf
Traits
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
Can I get a list of popular blog engines written in python?
google didn't help much!
How about this list:
http://wiki.python.org/moin/PythonBlogSoftware
Although I can't speak to how popular any of these are.
also among the popular static site generators written in python that are missing from the above list.
Hyde: http://ringce.com/hyde (now being developed at https://github.com/hyde/hyde)
Pelican: http://pelican.readthedocs.org/en/latest/
Blogofile: http://www.blogofile.com
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