{"id":20817699,"url":"https://github.com/splch/py-basic-bar","last_synced_at":"2026-04-19T16:02:30.025Z","repository":{"id":171877732,"uuid":"648536758","full_name":"splch/py-basic-bar","owner":"splch","description":"A simple and efficient progress bar in Python","archived":false,"fork":false,"pushed_at":"2024-04-21T22:43:43.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-02T10:23:48.346Z","etag":null,"topics":["progress-bar"],"latest_commit_sha":null,"homepage":"","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/splch.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-06-02T07:46:26.000Z","updated_at":"2024-04-21T22:46:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"d60663b5-90f2-4c73-8f18-62854f3701d4","html_url":"https://github.com/splch/py-basic-bar","commit_stats":null,"previous_names":["splch/py-simplebar"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/splch/py-basic-bar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splch%2Fpy-basic-bar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splch%2Fpy-basic-bar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splch%2Fpy-basic-bar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splch%2Fpy-basic-bar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/splch","download_url":"https://codeload.github.com/splch/py-basic-bar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splch%2Fpy-basic-bar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32012787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"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":["progress-bar"],"created_at":"2024-11-17T21:43:53.445Z","updated_at":"2026-04-19T16:02:29.983Z","avatar_url":"https://github.com/splch.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Basic Bar\n\nBasic Bar is a simple and effective text-based progress bar for Python applications. It's lightweight and easy to integrate, making it perfect for monitoring the progress of iterable operations with visual feedback and estimated completion times.\n\n## Installation\n\nYou can install Basic Bar directly from PyPI:\n\n```bash\npip install basic-bar\n```\n\n## Usage\n\nTo use Basic Bar, simply wrap any iterable in the `bar()` function. This function will yield from the iterable and display a progress bar in the terminal.\n\n### Example\n\nHere's a basic example of how to use Basic Bar:\n\n```python\nfrom basic_bar import bar\nimport time\n\n# Example iterable\ndata = range(100)\n\n# Wrapping the iterable with the bar function\nfor item in bar(data):\n    time.sleep(0.01)  # Simulate some work\n```\n\nThis will display a progress bar in your terminal, updating with each iteration.\n\n### Customization\n\nYou can customize the length of the progress bar by providing a `length` parameter:\n\n```python\nfor item in bar(data, length=50):\n    time.sleep(0.01)  # Simulate some work\n```\n\n## Features\n\n- **Simple Integration**: Just wrap your iterable with `bar()`.\n- **Customizable Bar Length**: Adjust the length of the progress bar to fit your needs.\n- **Real-Time Updates**: Provides real-time feedback on progress with percentage completion and estimated time remaining.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsplch%2Fpy-basic-bar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsplch%2Fpy-basic-bar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsplch%2Fpy-basic-bar/lists"}