From a468bfc828b7054c5a025b642cfdaa80e60d5b22 Mon Sep 17 00:00:00 2001 From: Ruslan Sayfutdinov Date: Tue, 5 Nov 2024 13:01:57 +0000 Subject: [PATCH 1/2] Update README: add uv command --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c569bc8..5e5f752 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,16 @@ You will probably need to run the script repeatedly storing the tokens somewhere Note: the package was written and tested on Python 3. -- Install the python package +- Install the python package. +Using uv: +```console +$ uv add glocaltokens ``` -pip install glocaltokens + +Using pip: +```console +$ pip install glocaltokens ``` Use in your program as (see examples folder for detailed example): From 7083c52c57c21fac221684abbd8a2aeaa47710d8 Mon Sep 17 00:00:00 2001 From: Ruslan Sayfutdinov Date: Tue, 5 Nov 2024 13:13:18 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5e5f752..7373079 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,13 @@ Note: the package was written and tested on Python 3. - Install the python package. Using uv: + ```console $ uv add glocaltokens ``` Using pip: + ```console $ pip install glocaltokens ```