{"id":34073304,"url":"https://github.com/mrtrakos/multigather","last_synced_at":"2025-12-14T08:47:34.212Z","repository":{"id":238967980,"uuid":"798141018","full_name":"MrTrakos/MultiGather","owner":"MrTrakos","description":"Send multiple requests using 5-6 lines of code!","archived":false,"fork":false,"pushed_at":"2024-05-10T09:08:35.000Z","size":17,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-06T01:51:38.728Z","etag":null,"topics":["async","await","multithread","python","python3","requests","threading"],"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/MrTrakos.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":"2024-05-09T07:10:16.000Z","updated_at":"2025-05-20T23:16:01.000Z","dependencies_parsed_at":"2024-05-09T07:38:32.858Z","dependency_job_id":"c1d066ee-b046-47ca-a7ac-e014254537d4","html_url":"https://github.com/MrTrakos/MultiGather","commit_stats":null,"previous_names":["tm-sah/multigather"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MrTrakos/MultiGather","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrTrakos%2FMultiGather","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrTrakos%2FMultiGather/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrTrakos%2FMultiGather/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrTrakos%2FMultiGather/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MrTrakos","download_url":"https://codeload.github.com/MrTrakos/MultiGather/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrTrakos%2FMultiGather/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27723707,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-14T02:00:11.348Z","response_time":56,"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":["async","await","multithread","python","python3","requests","threading"],"created_at":"2025-12-14T08:47:32.832Z","updated_at":"2025-12-14T08:47:34.206Z","avatar_url":"https://github.com/MrTrakos.png","language":"Python","readme":"\n# MultiGather\n\n**You can install package by:**\n```bash\npip install MultiGather\n```\n\n**Simple example for POST:**\n```python\nimport asyncio\nfrom MultiGather.Client import Connection\nfrom MultiGather.Types import Config, Request\n\n# Replace with the actual URL for your POST endpoint.\nurl = \"https://your-api-endpoint/posts\"\n\n# Replace with the data you want to send in the POST request\ndata = {\"title\": \"New Post\", \"body\": \"This is a sample post content\", \"userId\": 1}\n\nasync def main():\n    client = Connection(Config(timeout=10))  # Set timeout to 10 seconds (optional)\n\n    # Prepare a POST request object\n    post_request = Request(method=\"POST\", url=url, json=data, amount=5) ## gonna send 5 requests\n\n    # Send the requests asynchronously and collect responses\n    responses = await client.sendRequest(post_request)\n\n    # Print the status code for each response\n    for response in responses:\n        print(f\"POST response status: {response.status}\")\n\nasyncio.run(main())\n```\n**Simple example for GET:**\n```python\nimport asyncio\nfrom MultiGather.Client import Connection\nfrom MultiGather.Types import Config, Request\n\n# Replace with the actual URL for your GET endpoint.\nurl = \"https://your-api-endpoint/posts\"\n\nasync def main():\n    client = Connection(Config(timeout=10))  # Set timeout to 10 seconds (optional)\n\n    # Prepare a GET request object\n    get_request = Request(method=\"GET\", url=url, amount=5) # send 5 requests.\n\n    # Send the requests asynchronously and collect responses\n    responses = await client.sendRequest(get_request)\n\n    # Print the status code for each response\n    for response in responses:\n        print(f\"GET response status: {response.status}\")\n\nasyncio.run(main())\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrtrakos%2Fmultigather","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrtrakos%2Fmultigather","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrtrakos%2Fmultigather/lists"}