19 lines
379 B
Markdown
Raw Normal View History

2018-11-22 15:23:44 +01:00
Kore python async/await examples.
This example also shows off the asynchronous HTTP client support
and requires libcurl on your machine.
2018-11-22 15:23:44 +01:00
Run:
```
$ kodev run
```
Test:
```
2018-11-23 22:34:09 +01:00
$ curl -k http://127.0.0.1:8888/queue
$ curl -k http://127.0.0.1:8888/lock
$ curl -k http://127.0.0.1:8888/proc
$ curl -k http://127.0.0.1:8888/socket
$ curl -k http://127.0.0.1:8888/httpclient
2018-11-22 15:23:44 +01:00
```