Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8272367
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T07:06:25+00:00 2026-06-08T07:06:25+00:00

Okay, I have: class Content(db.Model): code=db.TextProperty() And there are 3 different values of code

  • 0

Okay, I have:

class Content(db.Model):
    code=db.TextProperty()

And there are 3 different values of code stored in the database. How would I create a zip file that stores the three values of code in 3 separate files that would be downloaded?

Based on eric.f’s answer:
I rewrote his code to make it to do what I wanted:

    contents = db.GqlQuery("SELECT * FROM Content ORDER BY created DESC")
    output = StringIO.StringIO()
    with zipfile.ZipFile(output, 'w') as myzip:
        for content in contents:
            if content.code:
                code=content.code
            else:
                code=content.code2
            myzip.writestr('udacity_code'+`content.key().id()`, code)
    self.response.headers["Content-Type"] = "application/zip"
    self.response.headers['Content-Disposition'] = "attachment; filename=test.zip"
    self.response.out.write(output.getvalue())

I got an error though…

self.response.out.write(output.getvalue(), "utf-8")
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/StringIO.py", line 270, in getvalue
UnicodeDecodeError: 'ascii' codec can't decode byte 0xb4 in position 10: ordinal not in range(128)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T07:06:26+00:00Added an answer on June 8, 2026 at 7:06 am
    import zipfile
    import StringIO
    
    output = StringIO.StringIO()
    
    with zipfile.ZipFile(output, 'w') as myzip:
        myzip.writestr('file1.txt', 'aaaaaaaaa')
        myzip.writestr('file2.txt', 'bbbbbbbbb')
        myzip.writestr('file3.txt', 'ccccccccc')
    

    then make your response, set output.getvalue() as the content, and set headers as below:

    Content-type: application/zip
    Content-disposition: attachment; filename=test.zip
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay, let's say I have a database Class Content(db.Model): code=db.TextProperty() And I wanted to
Okay so I have this mode: class Posts(db.Model): rand1 = db.FloatProperty() #other models here
Okay, so i have this code i wrote: class Connection { public static StreamWriter
Okay, so I have a database project for my database class. I have a
Okay so let's say I have class A... CLASS A has a method that
Okay I have a series of objects based on a base class which are
Okay so I have started a new language in class. We are learning Scheme
Okay, newbie multi-threading question: I have a Singleton class. The class has a Static
Okay, I have something like this in C++: class MyClass{ private: int someVariable; int
Okay so, I have this project structure: package A.B class SuperClass (this class is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.