{"id":32172675,"url":"https://github.com/ericentin/tqdm_elixir","last_synced_at":"2026-02-19T02:32:30.265Z","repository":{"id":57556287,"uuid":"48503615","full_name":"ericentin/tqdm_elixir","owner":"ericentin","description":"Add a progress bar to your enumerables in a second","archived":false,"fork":false,"pushed_at":"2023-08-25T17:39:03.000Z","size":17,"stargazers_count":58,"open_issues_count":2,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-14T07:33:50.226Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ericentin.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}},"created_at":"2015-12-23T17:49:13.000Z","updated_at":"2024-04-07T09:31:34.000Z","dependencies_parsed_at":"2022-09-14T12:10:47.758Z","dependency_job_id":null,"html_url":"https://github.com/ericentin/tqdm_elixir","commit_stats":null,"previous_names":["antipax/tqdm_elixir"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ericentin/tqdm_elixir","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericentin%2Ftqdm_elixir","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericentin%2Ftqdm_elixir/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericentin%2Ftqdm_elixir/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericentin%2Ftqdm_elixir/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericentin","download_url":"https://codeload.github.com/ericentin/tqdm_elixir/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericentin%2Ftqdm_elixir/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29601091,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T00:59:38.239Z","status":"online","status_checked_at":"2026-02-19T02:00:07.702Z","response_time":117,"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":[],"created_at":"2025-10-21T18:42:04.976Z","updated_at":"2026-02-19T02:32:30.247Z","avatar_url":"https://github.com/ericentin.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/antipax/tqdm_elixir.svg?branch=master)](https://travis-ci.org/antipax/tqdm_elixir) [![Coverage Status](https://coveralls.io/repos/github/antipax/tqdm_elixir/badge.svg?branch=master)](https://coveralls.io/github/antipax/tqdm_elixir?branch=master) [![Inline docs](http://inch-ci.org/github/antipax/tqdm_elixir.svg?branch=master)](http://inch-ci.org/github/antipax/tqdm_elixir) [![Hex.pm package version](https://img.shields.io/hexpm/v/tqdm.svg)](https://hex.pm/packages/tqdm) [![Hex.pm package license](https://img.shields.io/hexpm/l/tqdm.svg)](https://github.com/antipax/tqdm_elixir/blob/master/LICENSE)\n\n# Tqdm\n\nTqdm easily adds a CLI progress bar to any enumerable.\n\n![tqdm](http://i.imgur.com/D4ZILgE.gif)\n\nA (partial) port of Python's [tqdm](https://github.com/tqdm/tqdm) to Elixir. Thanks noamraph and all other contributors for the original library!\n\nJust wrap Lists, Maps, Streams, or anything else that implements Enumerable with `Tqdm.tqdm`:\n\n```elixir\nfor _ \u003c- Tqdm.tqdm(1..1000) do\n  :timer.sleep(10)\nend\n\n# or\n\n1..1000\n|\u003e Tqdm.tqdm()\n|\u003e Enum.map(fn _ -\u003e :timer.sleep(10) end)\n\n# or even...\n\n1..1000\n|\u003e Stream.map(fn _ -\u003e :timer.sleep(10) end)\n|\u003e Tqdm.tqdm(total: 1000)\n|\u003e Stream.run()\n\n# |###-------| 392/1000 39.0% [elapsed: 00:00:04.627479 left: 00:00:07, 84.71 iters/sec]\n```\n\nFull documentation can be found [here](https://hexdocs.pm/tqdm/0.0.2).\n\n## Installation\n\n  1. Add tqdm to your list of dependencies in `mix.exs`:\n\n```elixir\n    def deps do\n      [{:tqdm, \"~\u003e 0.0.2\"}]\n    end\n```\n\n  2. Ensure tqdm is added to your list of applications:\n\n```elixir\n    def application do\n      [applications: [:tqdm]]\n    end\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericentin%2Ftqdm_elixir","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericentin%2Ftqdm_elixir","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericentin%2Ftqdm_elixir/lists"}