All Projects → sdiehl → Gevent Tutorial

sdiehl / Gevent Tutorial

Gevent tutorial for the Working Python Developer

Projects that are alternatives of or similar to Gevent Tutorial

Awesome Swoole
A curated list of Swoole
Stars: ✭ 283 (-25.13%)
Mutual labels:  coroutines
Swoole Src
🚀 Coroutine-based concurrency library for PHP
Stars: ✭ 17,175 (+4443.65%)
Mutual labels:  coroutines
Corbind
Kotlin Coroutines binding APIs for Android UI widgets from the platform and support libraries
Stars: ✭ 357 (-5.56%)
Mutual labels:  coroutines
Quantum
Powerful multi-threaded coroutine dispatcher and parallel execution engine
Stars: ✭ 291 (-23.02%)
Mutual labels:  coroutines
Umka Lang
Umka: a statically typed embeddable scripting language
Stars: ✭ 308 (-18.52%)
Mutual labels:  coroutines
Pokedex Ar
🦄 Android Pokedex-AR using ARCore, Sceneform, Hilt, Coroutines, Flow, Jetpack (Room, ViewModel, LiveData) based on MVVM architecture.
Stars: ✭ 347 (-8.2%)
Mutual labels:  coroutines
Coroutineworker
Kotlin Coroutine-based workers for native
Stars: ✭ 282 (-25.4%)
Mutual labels:  coroutines
Restc Cpp
Modern C++ REST Client library
Stars: ✭ 371 (-1.85%)
Mutual labels:  coroutines
Goldmovies
👑 The GoldMovies is based on Kotlin, MVVM architecture, coroutines, dagger, koin, and material designs & animations.
Stars: ✭ 314 (-16.93%)
Mutual labels:  coroutines
Stackzy
💻 A cross-platform desktop application to identify libraries used inside an android application. Made possible by Compose Desktop ⚡
Stars: ✭ 307 (-18.78%)
Mutual labels:  coroutines
Inline Activity Result
Receive Activity results inline, without any boilerplate. Optional coroutines and RxJava support.
Stars: ✭ 298 (-21.16%)
Mutual labels:  coroutines
Amp
A non-blocking concurrency framework for PHP applications. 🐘
Stars: ✭ 3,457 (+814.55%)
Mutual labels:  coroutines
Concurrencpp
Modern concurrency for C++. Tasks, executors, timers and C++20 coroutines to rule them all
Stars: ✭ 340 (-10.05%)
Mutual labels:  coroutines
Clean Mvvm Archcomponents
👽 Android app consuming Star Wars API.Built with clean architecture ,MVVM pattern, Koin , Coroutines + Flows ,Architecture Components, Data Binding , Firebase , Unit/UI Tests ,Motion Layout
Stars: ✭ 285 (-24.6%)
Mutual labels:  coroutines
Tbox
🎁 A glib-like multi-platform c library
Stars: ✭ 3,800 (+905.29%)
Mutual labels:  coroutines
Korio
Korio: Kotlin cORoutines I/O : Virtual File System + Async/Sync Streams + Async TCP Client/Server + WebSockets for Multiplatform Kotlin 1.3
Stars: ✭ 282 (-25.4%)
Mutual labels:  coroutines
Moko Mvvm
Model-View-ViewModel architecture components for mobile (android & ios) Kotlin Multiplatform development
Stars: ✭ 329 (-12.96%)
Mutual labels:  coroutines
Aiotasks
A Celery like task manager that distributes Asyncio coroutines
Stars: ✭ 375 (-0.79%)
Mutual labels:  coroutines
Disneycompose
🧸 A demo Disney app using Jetpack Compose and Hilt based on modern Android tech-stacks and MVVM architecture.
Stars: ✭ 368 (-2.65%)
Mutual labels:  coroutines
Jetpack Wanandroid
Kotlin+Jetpack+Coroutines+Retrofit+koin 完成的MVVM 组件化客户端 🔥🔥
Stars: ✭ 353 (-6.61%)
Mutual labels:  coroutines

Online Version: http://sdiehl.github.com/gevent-tutorial/

Want to add an example. Its uber simple.

  1. Fork the repo.
  2. pip install -r requirements.txt
  3. Edit tutorial.md.

Add your text as Markdown.

Add your code as Cog:

 [[[cog

 print("Hello World!")
 for i in xrange(25):
     print(i)

 ]]]
 [[[end]]]

Will output this as html:

<pre>
<code class="python">

print("Hello World!")
for i in xrange(5):
    print(i)

</code>
</pre>

<pre><code class="python">
Hello World!
0
1
2
3
4
</code>
</pre>
  1. Run ./build
  2. Issue pull request.
  3. Get good gevent karma.

Released under MIT License.

Copyright (c) 2011 Stephen Diehl, <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].