Tagged Questions
3
votes
6answers
56 views
Interpreting Strings as Other Data Types in Python
I'm reading a file into python 2.4 that's structured like this:
field1: 7
field2: "Hello, world!"
field3: 6.2
The idea is to parse it into a dictionary that takes fieldfoo as the key and whatever ...
0
votes
4answers
384 views
Parsing timestamp with Python2.4
I want to parse a timestamp from a log file that has been written via
datetime.datetime.now().strftime('%Y%m%d%H%M%S')
and then compute the number of seconds that have passed since this timestamp.
...
0
votes
1answer
323 views
Is there a library which handles the parsing of BIND zone files in Python?
This is related to a similar question about BIND, but in this case I'm trying to see if there's any easy way to parse various zone files into a dictionary, list, or some other manageable data ...