1
vote
Standalone Python applications in Linux
The standard python way is to create a python "Egg".
You could have a look at this tutorial, or …
12
votes
Would python make a good substitute for the windows command line/batch scripts?
Python is well suited for these tasks, and I would guess much easier to develop in and debug than windows batch files.
The question is, I think, how easy and painless it is to ensure that a …
0
votes
how to tell if a string is base64 or not.
Well, you parse the email header into a dictionary. And then you check if Content-Transfer-Encoding is set, and if it = "base64" or "base-64".
…
14
votes
How do I resize an image using PIL and maintain its aspect ratio?
Define a maximum size.
Then, compute a resize ratio by taking min(maxwidth/width, maxheight/height).
The proper size is oldsize*ratio.
There is of course a …
-1
votes
What is the Python equivalent of static variables inside a function?
Use a generator function to generate an iterator.
def foo_gen():
n = 0
while True:
n+=1
yield n
Then use it like
foo = foo_ …
3
votes
2
votes
What is a partial class?
The concept of partial types have already been explained.
This can be done in python. As an example, do the following in a python shell.
class A(object):
pass
obj = A() …
0
votes
How do I get data from stdin using os.system()
As an alternetive to urllib, you could use the libCurl Python bindings.
…
4
votes
Save a deque in a text file
As an alternative, you could set up an exit function, and pickle the deque on exit.
Exit function
…
7
votes
Does Python have something like anonymous inner classes of Java?
You can accomplish this in three ways:
Proper subclass (of course)
a custom method that you invoke with the object as an argument
(what you probably want) -- adding …
2
votes
What GUI toolkit looks best for a native LAF for Python in Windows and Linux?
For KDE and Windows, Qt is the best option. Qt is fine for Gnome/Windows too, but in that case you might prefer …
0
votes
Split by \b when your regex engine doesn’t support it
Try
>>> re.compile(r'\W\b').split('hello, foo')
['hello,', 'foo']
This splits at the non-word characted before a boundry.
Your example has nothing to spl …
2
votes
Python: Set Bits Count (popcount)
The direct translation of your C algorithm is as follows:
def bitsoncount(x):
b = 0
while x > 0:
x &= x - 1
b += 1
return b
…
4
votes
How to bring program to front using python
Check if KWin is configured to prevent focus stealing.
There might be nothing wrong with your code -- but we linux people don't like applications bugging us when we work, so stealing focus …
3
votes
how to convert string representation bytes back to bytes?
As the SOAP element says, the bytes are base64-encoded.
To decode, use the python module
…
