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

  • Home
  • SEARCH
  • 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 252969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:43:21+00:00 2026-05-11T21:43:21+00:00

In mod_wsgi I send the headers by running the function start_response(), but all the

  • 0

In mod_wsgi I send the headers by running the function start_response(), but all the page content is passed by yield/return. Is there a way to pass the page content in a similar fashion as start_response()? Using the return.yield statement is very restrictive when it comes to working with chunked data.

E.g.

def Application():

    b = buffer()

    [... page code ...]

    while True:
        out = b.flush()    
        if out:
            yield out

class buffer:

    def __init__(self):        
        b = ['']
        l = 0

    def add(self, s):
        s = str(s)
        l += len(s)
        b.append(s)

    def flush(self):

        if self.l > 1000:
            out = ''.join(b)
            self.__init__()
            return out

I want to have the buffer outputting the content as the page loads, but only outputs the content once enough of it has piled up (in this eg. 1000 bytes).

  • 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-05-11T21:43:21+00:00Added an answer on May 11, 2026 at 9:43 pm

    No; But I don’t think it is restrictive. Maybe you want to paste an example code where you describe your restriction and we can help.

    To work with chunk data you just yield the chunks:

    def application(environ, start_response):
        start_response('200 OK', [('Content-type', 'text/plain')]
        yield 'Chunk 1\n'    
        yield 'Chunk 2\n'    
        yield 'Chunk 3\n'
        for chunk in chunk_data_generator():
            yield chunk
    
    def chunk_data_generator()
        yield 'Chunk 4\n'
        yield 'Chunk 5\n'
    

    EDIT: Based in the comments you gave, an example of piling data up to a certain length before sending forward:

    BUFFER_SIZE = 10 # 10 bytes for testing. Use something bigger
    def application(environ, start_response):
        start_response('200 OK', [('Content-type', 'text/plain')]
        buffer = []
        size = 0
        for chunk in chunk_generator():
            buffer.append(chunk)
            size += len(chunk)
            if size > BUFFER_SIZE:
                for buf in buffer:
                    yield buf
                buffer = []
                size = 0
    
    def chunk_data_generator()
        yield 'Chunk 1\n'    
        yield 'Chunk 2\n'    
        yield 'Chunk 3\n'
        yield 'Chunk 4\n'
        yield 'Chunk 5\n'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 207k
  • Answers 207k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You might like to view the domain models for the… May 12, 2026 at 9:26 pm
  • Editorial Team
    Editorial Team added an answer You are almost there - getChildByName returns a DisplayObject and… May 12, 2026 at 9:26 pm
  • Editorial Team
    Editorial Team added an answer Since you are doing it with MVC - you could… May 12, 2026 at 9:26 pm

Related Questions

I am using FCKEditor within a Django app served by Apache/mod-wsgi. I don't want
Right now I've got a mod_wsgi script that's structured like this.. def application(environ, start_response):
Below are the relevant configuration files, also at http://dpaste.com/97213/ . The apache config is
I have URLs of the form http://domain/image/⟨uuid⟩/42x42/some_name.png . The Web server (nginx) is configured

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.