Python pyton3

Open-source Python projects categorized as pyton3

Python pyton3 Projects

  1. fastapi_cache

    FastAPI simple cache

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. Python

    Code. Learn. Repeat. Python Edition (by Zemerik)

    Project mention: Asyncio: Interview Questions and Practice Problems | dev.to | 2025-11-03

    import time import requests import asyncio import aiohttp urls = [ 'https://example.com', 'https://httpbin.org/get', 'https://python.org' ] # Synchronous version def sync_fetch(): for url in urls: response = requests.get(url) print(f"{url} fetched with {len(response.text)} characters") # Async version async def async_fetch(): async with aiohttp.ClientSession() as session: tasks = [session.get(url) for url in urls] responses = await asyncio.gather(*tasks) for i, resp in enumerate(responses): text = await resp.text() print(f"{urls[i]} fetched with {len(text)} characters") if __name__ == "__main__": print("Running synchronous fetch") start = time.perf_counter() sync_fetch() duration_sync = time.perf_counter() - start print(f"Synchronous fetching took {duration_sync:.2f} seconds\n") print("Running asynchronous fetch") start = time.perf_counter() asyncio.run(async_fetch()) duration_async = time.perf_counter() - start print(f"Asynchronous fetching took {duration_async:.2f} seconds")

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Python pyton3 discussion

Index

# Project Stars
1 fastapi_cache 222
2 Python 16

Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Python is
the 2nd most popular programming language
based on number of references?