Add asynchronous python frameworks content

pull/1657/head
Kamran Ahmed 2 years ago
parent 0f683d239e
commit 99a2430f4c
  1. 9
      content/roadmaps/107-python/content/106-python-frameworks/101-asynchronous/100-gevent.md
  2. 12
      content/roadmaps/107-python/content/106-python-frameworks/101-asynchronous/101-aiohttp.md
  3. 11
      content/roadmaps/107-python/content/106-python-frameworks/101-asynchronous/102-tornado.md
  4. 9
      content/roadmaps/107-python/content/106-python-frameworks/101-asynchronous/103-sanic.md
  5. 3
      content/roadmaps/107-python/content/106-python-frameworks/101-asynchronous/readme.md

@ -1 +1,8 @@
# Gevent
# gevent
gevent is a Python library that provides a high-level interface to the event loop.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='http://www.gevent.org/'>gevent — Official Website</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='GitHub Repository' href='https://github.com/gevent/gevent'>GitHub Repository</BadgeLink>

@ -1 +1,11 @@
# Aiohttp
# AIOHTTP
aiohttp is a Python 3.5+ library that provides a simple and powerful asynchronous HTTP client and server implementation.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://docs.aiohttp.org/en/stable/'>Official Docs</BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=nFn4_nA_yk8'>Python Asyncio, Requests, Aiohttp | Make faster API Calls</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://tutorialedge.net/python/create-rest-api-python-aiohttp/'>Creating a RESTful API with Python and aiohttp</BadgeLink>

@ -1 +1,10 @@
# Tornado
# Tornado
Tornado is a scalable, non-blocking web server and web application framework written in Python. It was developed for use by FriendFeed; the company was acquired by Facebook in 2009 and Tornado was open-sourced soon after.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://www.tornadoweb.org/'>Tornado — Official Website</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://phrase.com/blog/posts/tornado-web-framework-i18n/'>A Step-by-Step Tutorial on Python Tornado</BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=-gJ21qzpieA'>Torando Python Framework</BadgeLink>

@ -1 +1,8 @@
# Sanic
# Sanic
Sanic is a Python 3.7+ web server and web framework that&#39;s written to go fast. It allows the usage of the async/await syntax added in Python 3.5, which makes your code non-blocking and speedy.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://sanic.dev/en/'>Sanic Official Website</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.geeksforgeeks.org/introduction-to-sanic-web-framework-python/'>Introduction to Sanic Web Framework – Python</BadgeLink>

@ -1,5 +1,6 @@
# Asynchronous
Asynchronous programming is a style of programming that is mostly concerned with the asynchronous execution of tasks. Python has several asynchronous frameworks that are used to implement asynchronous programming.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://geekflare.com/python-asynchronous-web-frameworks/'>Top 5 Asynchronous Web Frameworks for Python</BadgeLink>

Loading…
Cancel
Save