{"id":19500034,"url":"https://github.com/anuprshetty/fast_python","last_synced_at":"2026-06-15T11:32:09.250Z","repository":{"id":177135509,"uuid":"473053223","full_name":"anuprshetty/fast_python","owner":"anuprshetty","description":"Multi threading, multi processing and event loop in Python.","archived":false,"fork":false,"pushed_at":"2024-02-21T06:45:06.000Z","size":6,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T21:22:36.803Z","etag":null,"topics":["asynchronous-programming","eventloop","multiprocessing","multithreading","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anuprshetty.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-23T05:48:47.000Z","updated_at":"2024-05-10T13:16:22.000Z","dependencies_parsed_at":"2025-02-25T21:21:44.826Z","dependency_job_id":"22bae4b9-cb51-4458-8910-410dbe92ca5e","html_url":"https://github.com/anuprshetty/fast_python","commit_stats":null,"previous_names":["anuprshetty/fast_python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/anuprshetty/fast_python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anuprshetty%2Ffast_python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anuprshetty%2Ffast_python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anuprshetty%2Ffast_python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anuprshetty%2Ffast_python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anuprshetty","download_url":"https://codeload.github.com/anuprshetty/fast_python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anuprshetty%2Ffast_python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34358728,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asynchronous-programming","eventloop","multiprocessing","multithreading","python"],"created_at":"2024-11-10T22:07:17.345Z","updated_at":"2026-06-15T11:32:09.229Z","avatar_url":"https://github.com/anuprshetty.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fast Python\n\nMulti threading, multi processing and event loop in Python.\n\n## asyncio\n\n- Python framework enabling asynchronous single threaded concurrent code using coroutines.\n- Goal of asyncio: maximize the usage of a single thread by handling I/O asynchronously, and by enabling concurrent code using coroutines.\n- asyncio enables single threaded programs to be more productive by filling the gaps that would otherwise be wasted on waiting on I/O. To do this efficiently asyncio avoids blocking functions. And instead uses coroutines which can be executed in small chunks concurrently.\n- concurrency is dealing with many things at the same time while being able to do only one thing at a time.\n- On very I/O heavy workloads, asyncio can be orders of magnitude faster than blocking I/O. This is why so many important web technologies are built using asyncio like nginx, redis, node.js, browser, etc.\n\n### event loop\n\n- what an event loop is doing? It's calling callbacks in some order one by one.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanuprshetty%2Ffast_python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanuprshetty%2Ffast_python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanuprshetty%2Ffast_python/lists"}