Skip to content

Commit

Permalink
adjust license links
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jan 18, 2024
1 parent caf3e53 commit a73fb52
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# tqdm-publisher
[![PyPI version](https://badge.fury.io/py/tqdm-publisher.svg)](https://badge.fury.io/py/tqdm-publisher.svg)
[![License](https://img.shields.io/pypi/l/tqdm-publisher.svg)](https://github.com/catalystneuro/tqdm-publisher/license.txt)
[![PyPI version](https://badge.fury.io/py/tqdm_publisher.svg)](https://badge.fury.io/py/tqdm_publisher.svg)
[![License](https://img.shields.io/pypi/l/tqdm_publisher.svg)](https://github.com/catalystneuro/tqdm_publisher/blob/main/license.txt)

`tqdm-publisher` is a small Python package that allows you to subscribe to updates from `tqdm` progress bars with arbitrary callback functions.
`tqdm_publisher` is a small Python package that allows you to subscribe to updates from `tqdm` progress bars with arbitrary callback functions.

This is useful if you want to use `tqdm` to track the progress of a long-running task, but you also want to do something else with the progress information (e.g., forward it to a user interface, log it to a file, etc.).

## Installation
```bash
pip install tqdm-publisher
pip install tqdm_publisher
```

## Usage
Expand Down Expand Up @@ -40,4 +40,4 @@ async def run_multiple_sleeps(sleep_durations):
n = 10**5
sleep_durations = [random.uniform(0, 5.0) for _ in range(n)]
asyncio.run(run_multiple_sleeps(sleep_durations=sleep_durations))
```
```

0 comments on commit a73fb52

Please sign in to comment.