string = input("Please enter the text you want to compress")
    file = input("Please enter the desired filename")
    with gzip.open(file+".gz","wb") as f_out:
        f_out.write(string) 

The above python code is giving me following error:

Traceback (most recent call last):
  File "C:/Users/Ankur Gupta/Desktop/Python_works/gzip_work1.py", line 33, in <module>
    compress_string()
  File "C:/Users/Ankur Gupta/Desktop/Python_works/gzip_work1.py", line 15, in compress_string
    f_out.write(string)
  File "C:\Python32\lib\gzip.py", line 312, in write
    self.crc = zlib.crc32(data, self.crc) & 0xffffffff
TypeError: 'str' does not support the buffer interface

Please help

link|improve this question

55% accept rate
I'm curious what you're trying to accomplish by gzipping a text string... how is that useful? – Mike Pennington Mar 29 '11 at 10:44
Is your code actually indented like that? Python should complain if it is. – Tom Zych Mar 29 '11 at 10:49
feedback

3 Answers

up vote 12 down vote accepted

If you use Python3x then string is not the same type as for Python 2.x, you must cast it to bytes (encode it).

s = input("Please enter the text you want to compress")
fn = input("Please enter the desired filename")
with gzip.open(fn+".gz","wb") as f_out:
    f_out.write(bytes(s, 'UTF-8'))

Also do not use variable names like string or file while those are names of module or function.

EDIT @Tom

Yes, not ASCII text is also compressed/decompressed. I use Polish letters with UTF-8 encoding:

s = 'Polish text: ąćęłńóśźżĄĆĘŁŃÓŚŹŻ'
fn = 'fn.gz'
with gzip.open(fn, 'wb') as f_out:
    f_out.write(bytes(s, 'UTF-8'))
with gzip.open(fn, 'r') as f_in:
    s2 = f_in.read().decode('UTF-8')
print(s2)
link|improve this answer
Thanks It Worked! – Future King Mar 29 '11 at 10:55
It's odd that this fixed it; the original code worked for me under 3.1, and the sample code in the docs also does not encode explicitly. If you use it on non-ASCII text, does gunzip decompress it? I got an error. – Tom Zych Mar 29 '11 at 10:59
I typed my Name in Unicode Hindi and it compressed it in gzip successfully. I am using Python 3.2 – Future King Mar 29 '11 at 11:15
@Tom Zych: Probably has something to do with the changes in 3.2: docs.python.org/dev/whatsnew/3.2.html#gzip-and-zipfile – Skurmedel Mar 29 '11 at 11:15
I tested it with ActiveState Python 3.1 and 3.2. On my machine it works in both. – Michał Niklas Mar 29 '11 at 11:21
feedback

You can not serialize a Python 3 'string' to bytes without explict conversion to some encoding.

f_out.write(string.encode('utf-8')

is possibly what you want.

link|improve this answer
feedback

For Python 3.x you can convert your text to raw bytes through:

bytes("my data", "encoding")

For example:

bytes("attack at dawn", "utf-8")

The object returned will work with f_out.write.

link|improve this answer
1  
The stack trace shows it's 3.2. – Tom Zych Mar 29 '11 at 10:46
@Tom Zych: Ah, I missed that, my answer is still correct though. – Skurmedel Mar 29 '11 at 11:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.