Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
602 views

BytesIO with python v2.5

Question: How do I get a byte stream that works like StringIO for Python 2.5? Application: I'm converting a PDF to text, but don't want to save a file to the hard disk. Other Thoughts: I figured ...
1
vote
1answer
213 views

Python3.0: tokenize & BytesIO

When attempting to tokenize a string in python3.0, why do I get a leading 'utf-8' before the tokens start? From the python3 docs, tokenize should now be used as follows: g = ...
0
votes
1answer
170 views

Strange “BadZipfile: Bad CRC-32” problem

This code is simplification of code in a Django app that receives an uploaded zip file via HTTP multi-part POST and does read-only processing of the data inside: #!/usr/bin/env python import csv, ...