Search Results

0
votes

Splitting strings in python

Well, I've encountered this problem quite a few times, which led me to write my own system for parsing any kind of syntax. The result of this can be found …
13
votes

What are the biggest differences between Python and Ruby from a philosophical perspective

Well, if you really want to know, I'd consult a book called "On Lisp" by Paul Graham, which is available free as a PDF …
2
votes

Solving the shared-server security problem for Python

Well, there is a system called virtualenv which allows you to run Python in a sort of safe environment, and configure/load/shutdo …
0
votes

I want a program that writes every possible combination to a different line of a text file.

A naïve solution which solves the problem and is general enough for any application you might have is this: def combinations(words, length): if length == 0: return [] …
4
votes

Python + Leopard + Fink + Mac Ports + Python.org + Idiot = broken Python - fresh start?

I had this problem so much when I first got my Mac. The best solution I found was to delete everything I'd installed and just go with the pythonmac.org …
3
votes

Python snippet to remove C and C++ comments

I don't know if you're familiar with sed, the UNIX-based (but Windows-available) text parsing program, but I've found a sed script …
2
votes

Reading collections of extended elements in an RSS feed with Universal Feed Parser

Universal Feed Parser is really nice for most feeds, but for extended feeds, you might wanna try something called BeautifulSoup …
2
votes

Possible to integrate Google AppEngine and Google Code for continuous integration?

You'd probably have to have some glue on another computer which monitored SVN commits and deployed a new version for you. Google Code has yet to develop and release an API (which they need to do so …
1
vote

socket trouble in python

There are two much simpler ways I can think of in which you can solve this. Both involve some changes in the behaviors of both the client and the server. The first is to use padding. Let's …
2
votes

Is there a Python module/recipe (not numpy) for 2d arrays for small games

The simplest approach would just be to use nested lists: >>> matrix = [[0] * num_cols] * num_rows >>> matrix[i][j] = 'value' # row i, column j, value 'value' >& …