3
votes
How do I modify a text file in Python?
Python's mmap module will allow you to insert into a file. The following sample shows how it can be done in Unix (Windows mmap may be different). Note that this does not handle all error conditions …
1
vote
After C++ - Python or Java?
You want a rapid development cycle so definitely choose Python over Java. I have never heard anyone describe Java as a rapid development language. I do, however, know plenty of ex Java developers w …
0
votes
Difflib.SequenceMatcher isjunk optional parameter query: how to ignore whitespaces, tabs, empty lines?
Using your sample strings:
>>> s=difflib.SequenceMatcher(lambda x: x == '\n', s1, s2)
>>> s.ratio()
0.94669848846459825
Interestingly if ' ' is a …
2
votes
Getting MAC Address
One other thing that you should note is that uuid.getnode() can fake the MAC addr by returning a random 48-bit number which may not be what you are expecting. Also, there's no explicit …
1
vote
How to handle a broken pipe (SIGPIPE) in python?
Assuming that you are using the standard socket module, you should be catching the socket.error: (32, 'Broken pipe') exception (not IOError as others have suggested). This will be rais …
2
votes
Delete Folder Contents in Python
You might be better off using os.walk() for this.
os.listdir() doesn't distinguish files from directories and you will quickly get into trouble trying to unlink th …
1
vote
How can I search through stackoverflow questions from a script?
Suggest that a REST API be added to SO. http://stackoverflow.uservoice.com/
…
1
vote
Which AES library to use in Ruby/Python?
Kind of depends on how you are transferring the encrypted data. It is possible that you are writing a file in one language and then trying to read it in from the other. Python (especially on Window …
1
vote
Can I pickle a python dictionary into a sqlite3 text field?
The other option, considering that your requirement is to save a dict and then spit it back out for the user's "viewing pleasure", is to use the shelve module which will let you persis …
1
vote
How can I check the syntax of Python code in Emacs without actually executing it?
Or from emacs (or vim) you could run python -c 'import x' where x is the name of your file minus the .py extension.
…
0
votes
Receive socket size limits good?
I don't know what your actual application is, however, setting a hard limit on the total amount of data that a client can send could be useful in reducing your exposure to denial of service attacks …
3
votes
When does urllib2 actually download a file from a url?
I agree with ddaa. However, if you want to understand this sort of thing, you can set up a dummy server using something like nc (in *nix) and then open the URL in the interactive Pytho …
2
votes
how to use ‘super’ ?
Doesn't all of this assume that the base class is inherited from object?
class A:
def __init__(self):
print "A.__init__()"
class B(A):
def __init__(sel …
3
votes
Javascript style dot notation for dictionary keys unpythonic?
This is a simpler version of your DictObj class:
class DictObj(object):
def __getattr__(self, attr):
return self.__dict__.get(attr)
>>> d = DictObj()
>>& …
10
votes
Passing a list while retaining the original
You can call burninate() with a copy of the list like this:
d = burninate(a[:])
or,
d = burninate(list(a))
The other alternati …
