Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retrieve four things from the web with concurrency #938

Closed
wants to merge 3 commits into from

Commits on Jun 19, 2016

  1. Retrieve four things from the web with concurrency

    Add a simple example to show how to create a client that gathers multiple web resources _concurrently_ .
    
    I am not sure if this example is serial or concurrent.  :-(  If it is serial then it would be quite helpful for readers to understand how to make it concurrent.
    cclauss authored Jun 19, 2016
    Configuration menu
    Copy the full SHA
    358269c View commit details
    Browse the repository at this point in the history
  2. Update README.rst

    cclauss authored Jun 19, 2016
    Configuration menu
    Copy the full SHA
    6ed388c View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2016

  1. Use asyncio.gather()

    Thanks @bhuman, asyncio.gather() was the correct way to go...
    
    I had been doing [other experiments](https://github.com/cclauss/asyncio_hacks/blob/master/factorial_futures.py) to get these asynchronous execution ideas clear in my head.
    cclauss authored Jun 21, 2016
    Configuration menu
    Copy the full SHA
    36789d5 View commit details
    Browse the repository at this point in the history