Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/igalarzab/asyncio-training
- Owner: igalarzab
- Created: 2014-06-23T23:30:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-11-15T23:52:00.000Z (about 3 years ago)
- Last Synced: 2023-03-22T21:49:58.988Z (almost 2 years ago)
- Language: Python
- Size: 9.77 KB
- Stars: 29
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```