{"id":16514892,"url":"https://github.com/itsjwala/python-progress-animation","last_synced_at":"2026-04-16T15:05:23.335Z","repository":{"id":121972891,"uuid":"116705186","full_name":"itsjwala/python-progress-animation","owner":"itsjwala","description":"python script to show progress animation in terminal ","archived":false,"fork":false,"pushed_at":"2018-01-23T12:46:41.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-02T13:30:35.457Z","etag":null,"topics":["loader","progress-animation","python-script"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itsjwala.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-01-08T17:10:35.000Z","updated_at":"2018-01-30T12:34:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"7d5df0e2-34da-4e3f-86ae-4fc59f7f2ba5","html_url":"https://github.com/itsjwala/python-progress-animation","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/itsjwala/python-progress-animation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsjwala%2Fpython-progress-animation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsjwala%2Fpython-progress-animation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsjwala%2Fpython-progress-animation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsjwala%2Fpython-progress-animation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itsjwala","download_url":"https://codeload.github.com/itsjwala/python-progress-animation/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsjwala%2Fpython-progress-animation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31891099,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T11:36:10.202Z","status":"ssl_error","status_checked_at":"2026-04-16T11:36:09.652Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["loader","progress-animation","python-script"],"created_at":"2024-10-11T16:14:19.490Z","updated_at":"2026-04-16T15:05:23.312Z","avatar_url":"https://github.com/itsjwala.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# python-progress-animation\npython script to show progress animation in terminal , can be shown when some other script/thread is still running \n## Demo\n[![asciicast](https://asciinema.org/a/YcIyziqvD4FKPJWLZdLlMcccR.png)](https://asciinema.org/a/YcIyziqvD4FKPJWLZdLlMcccR)\n## Setup\n* clone the repo\n```shell\ngit clone https://github.com/jigarWala/python-progress-animation.git\n```\n* copy the progress_bar_animation.py file to your desired location\n\n* import and use it as shown below\n```python\nimport threading\nimport progress_bar_animation\n\n\ndef some_task():\n    \"\"\"\n        function to mock a task that takes time , till that time our loader will show\n    \"\"\"\n    for _ in range(1 * 100000000):\n        pass\n\n\ntask_thread = threading.Thread(target=some_task)\n\n\nprogress_thread = threading.Thread(target=progress_bar_animation.show_progress)\n\ntask_thread.start()\nprogress_thread.start()\ntask_thread.join()\n\nprogress_bar_animation.done = True\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsjwala%2Fpython-progress-animation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitsjwala%2Fpython-progress-animation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsjwala%2Fpython-progress-animation/lists"}