From e04cfdfeafed541083d0160f290d1a1c5ae609b1 Mon Sep 17 00:00:00 2001 From: Akash Mahanty Date: Wed, 26 Jan 2022 15:40:33 +0530 Subject: [PATCH 1/3] add conda install and related links and tell users that they can copy text from asciinema.org --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6d7c328..b81e051 100644 --- a/README.md +++ b/README.md @@ -31,18 +31,29 @@ These three APIs can be accessed via the waybackpy either by importing it in a s ### 🏗 Installation -Using [pip](https://en.wikipedia.org/wiki/Pip_(package_manager)), from [PyPI](https://pypi.org/) (recommended): +**Using [pip](https://en.wikipedia.org/wiki/Pip_(package_manager)), from [PyPI](https://pypi.org/) (recommended)**: ```bash pip install waybackpy ``` -Install directly from [this git repository](https://github.com/akamhy/waybackpy) (NOT recommended): + +**Using [conda](https://en.wikipedia.org/wiki/Conda_(package_manager)), from [conda-forge](https://conda-forge.org/) (recommended)**: + +See also [waybackpy feedstock](https://github.com/conda-forge/waybackpy-feedstock). + +```bash +conda install waybackpy +``` + + +**Install directly from [this git repository](https://github.com/akamhy/waybackpy) (NOT recommended)**: ```bash pip install git+https://github.com/akamhy/waybackpy.git ``` + ### 🐳 Docker Image Docker Hub : @@ -112,11 +123,10 @@ https://web.archive.org/web/20171206002737/http://pypi.org:80/ #### As a CLI tool -Demo video: +Demo video on [asciinema.org](https://asciinema.org), you can copy the text from video: [![asciicast](https://asciinema.org/a/464367.svg)](https://asciinema.org/a/464367) - > CLI documentation is at . ### 🛡 License From 8dff6f349e0765843f698f02868c1cbba1c718c5 Mon Sep 17 00:00:00 2001 From: Akash Mahanty Date: Wed, 26 Jan 2022 15:45:03 +0530 Subject: [PATCH 2/3] add maintainers --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b81e051..6213371 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,9 @@ pip install waybackpy **Using [conda](https://en.wikipedia.org/wiki/Conda_(package_manager)), from [conda-forge](https://conda-forge.org/) (recommended)**: -See also [waybackpy feedstock](https://github.com/conda-forge/waybackpy-feedstock). +See also [waybackpy feedstock](https://github.com/conda-forge/waybackpy-feedstock), maintainers are [@rafaelrdealmeida](https://github.com/rafaelrdealmeida/), + [@labriunesp](https://github.com/labriunesp/) + and [@akamhy](https://github.com/akamhy/). ```bash conda install waybackpy From 1250d105b474b9dcbc85989594d4dee1ec5dec70 Mon Sep 17 00:00:00 2001 From: Akash Mahanty Date: Thu, 27 Jan 2022 00:17:36 +0530 Subject: [PATCH 3/3] update install command for conda and replace the link to conda-forge.org with https://anaconda.org/conda-forge/waybackpy --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6213371..cef3aa8 100644 --- a/README.md +++ b/README.md @@ -38,14 +38,14 @@ pip install waybackpy ``` -**Using [conda](https://en.wikipedia.org/wiki/Conda_(package_manager)), from [conda-forge](https://conda-forge.org/) (recommended)**: +**Using [conda](https://en.wikipedia.org/wiki/Conda_(package_manager)), from [conda-forge](https://anaconda.org/conda-forge/waybackpy) (recommended)**: See also [waybackpy feedstock](https://github.com/conda-forge/waybackpy-feedstock), maintainers are [@rafaelrdealmeida](https://github.com/rafaelrdealmeida/), [@labriunesp](https://github.com/labriunesp/) and [@akamhy](https://github.com/akamhy/). ```bash -conda install waybackpy +conda install -c conda-forge waybackpy ```