1
vote
Get list of XML attribute values in Python
Using a standard W3 DOM such as the stdlib's minidom, or pxdom:
def getValues(category):
for parent in document.getElementsByTagName('parent'):
if parent.getAttribute('n …
2
votes
String Simple Substitution
.replacing() each of the wildcards is the quick way, but what if the wildcarded string contains other regex special characters? eg. someone searching for 'my.thing*' probably doesn't mean that '.' …
5
votes
Javascript style dot notation for dictionary keys unpythonic?
Your DictObj example is actually quite common. Object-style dot-notation access can be a win if you are dealing with ‘things that resemble objects’, ie. they have fixed property names containing on …
5
votes
Python Find Question
Use [r]strip to remove trailing slashes:
url.rstrip('/').rsplit('/', 1)[-1]
If a wider range of possible URLs is possible, including URLs with ?queries, #anchors o …
2
votes
What is your convention to distinguish between object methods to be called by the outside, and object methods to be called by a subclass ?
use no underscores for the external API,
one underscore for the subclassable API,
and two underscores for the private/internal API
This is a reasonable and relatively comm …
9
votes
smart truncate in python?
Here's a slightly better version of the last line in Adam's solution:
return content[:length].rsplit(' ', 1)[0]+suffix
(This is slightly more efficient, and return …
4
votes
Python MySQL Statement returning Error
As pointed out, you're failing to copy the Python variable values into the query, only their names, which mean nothing to MySQL.
However the direct string concatenation option:
…
5
votes
What’s the difference between scgi and wsgi?
SCGI is a language-neutral means of connecting a front-end web server and a web application. WSGI is a Python-specific interface standard for web applications.
Though they both have roots i …
16
votes
Python filter/remove URLs from a list
Here's another alternative to Graeme's, using the newer list comprehension syntax:
list2= [line for line in file if 'CONTENT_ITEM_ID' in line]
Which you prefer is …
4
votes
python smtplib
login() was introduced in Python 2.2, unluckily for you! The only way to do it in Python 2.1's own smtplib would be to issue the AUTH commands manually, which wouldn't be much fun.
I haven' …
9
votes
how to tell if a string is base64 or not.
Please note both Content-Transfer-Encoding have base64
Not relevant in this case, the Content-Transfer-Encoding only applies to the bo …
8
votes
python list in sql query as parameter
Answers so far have been templating the values into a plain SQL string. That's absolutely fine for integers, but if we wanted to do it for strings we get the escaping issue.
Here's a varian …
1
vote
Processing chunked encoded HTTP POST requests in python (or generic CGI under apache)
Apache 2.2 mod_cgi works fine for me, Apache transparently unchunks the request as it is passed to the CGI application.
WSGI currently disallows chunked requests, and mod_wsgi does indeed b …
1
vote
Short Description of Python Scoping Rules
Where is x found?
x is not found as you haven't defined it. :-) It could be found in code1 (global) or code3 (local) if you put it there.
code2 (class m …
0
votes
Turn a string into a valid filename in Python
Another issue that the other comments haven't addressed yet is the empty string, which is obviously not a valid filename. You can also end up with an empty string from stripping too many characters …
