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 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

Related Questions

I have been sold on mod_wsgi and apache rather than mod_python. I have all
I've been told wsgi is the way to go and not mod_python. But more
Right now I've got a mod_wsgi script that's structured like this.. def application(environ, start_response):
How to send file from C# to apache with mod_wsgi (django) and python? It
I have a development server set up running Apache 2.2 with mod_wsgi. I have
If I use mod_rewrite to control all my 301 redirects, does this happen before
I'm using mod_wsgi and was wondering if it's possible to over-write the print() command
Has anybody succeeded with mod_wsgi 2.5 on Ubuntu 9.04 with default Python installation (2.6.2)?
I am deploying a mod_wsgi application on top of Apache, and have a client
I'm debugging a really weird problem with a mod_wsgi-deployed application resulting in Django/Apache (not

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.