Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/igalarzab/asyncio-training

asyncio training of the Madrid's Python Local Meetup
https://github.com/igalarzab/asyncio-training

Last synced: 3 months ago
JSON representation

asyncio training of the Madrid's Python Local Meetup

Awesome Lists containing this project

README

        

# asyncio training

These are examples shown on the asyncio's training of the Python Madrid meetup (June 2014)

## Execute examples

First create a virtualenv with Python 3.4 (here with virtualenvwrapper) and install the
dependencies:

```sh
$ mkvirtualenv --python=`which python3` asyncio
$ workon asyncio
$ pip install requirements.txt
```

Then, execute the scripts as usual:

```sh
$ python 01-hello-world.py
```