3
votes
What is the simplest way to find the difference between 2 times in python?
You could transform both into timedelta objects and subtract these from each other, taking care to handle carry-overs …
1
vote
Convert XML/HTML Entities into Unicode String in Python
Use the builtin unichr -- BeautifulSoup isn't necessary:
>>> entity = 'ǎ'
>>> unichr(int(entity[3:],16))
u'\u01ce'
…
1
vote
detecting if a module is imported inside the app engine environment
You could simply use sys.modules to test if a module has been imported (I'm using unicodedata as an example):
>>> import sys
>>> 'unicodedata' in sys.modules
False …
0
votes
Benefits of os.path.splitext over regular .split?
In the comment to the answer that provided this solution:
"If the file has no extension this incorrectly returns the file name instead of an empty string."
…
