Skip to content

Commit c6aacb9

Browse files
committed
add new webrtc and ORM resources
1 parent 3c2c89f commit c6aacb9

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

content/pages/03-data/05-object-relational-mappers.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ There are numerous ORM implementations written in Python, including
137137
1. [The Django ORM](/django-orm.html)
138138
1. [PonyORM](/pony-orm.html)
139139
1. [SQLObject](http://sqlobject.org/)
140-
1. [Tortoise ORM](https://tortoise-orm.readthedocs.io/en/latest/)
140+
1. [Tortoise ORM](https://tortoise-orm.readthedocs.io/en/latest/)
141+
([source code](https://github.com/tortoise/tortoise-orm/))
141142

142143
There are other ORMs, such as Canonical's
143144
[Storm](https://storm.canonical.com/), but most of them do not appear to

content/pages/04-web-development/43-webrtc.markdown

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ browser) and server (usually a [web server](/web-servers.html)).
1818
explains what you do and do not need to know as prerequisites for
1919
building with WebRTC along with some sources for learning.
2020

21+
* This post titled
22+
[WebRTC: a working example](http://pfertyk.me/2020/03/webrtc-a-working-example/)
23+
and the
24+
[companion open source repository](https://github.com/pfertyk/webrtc-working-example)
25+
provides a simple working example of WebRTC technology, without any 3rd party
26+
dependencies. It allows 2 web browsers to exchange audio and video streams by
27+
using the `aiohttp` and `python-socketio` modules.
28+
2129
* [A real world guide to WebRTC](https://deepstreamhub.com/tutorials/protocols/webrtc-intro/)
2230
goes through WebRTC fundamentals such as data channels, audio and video,
2331
screen sharing and file transfers with the JavaScript code provided

0 commit comments

Comments
 (0)