From fc25ecffe84ebf080682a37f8385cd16dea34cd2 Mon Sep 17 00:00:00 2001 From: Josef Prochazka Date: Wed, 1 Jul 2026 16:22:29 +0200 Subject: [PATCH 1/4] Add installation from conda-forge to readme --- README.md | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index afc1a6d4..95d93d94 100644 --- a/README.md +++ b/README.md @@ -32,19 +32,28 @@ ## Installation -`apify-client` requires **Python 3.11 or higher**. It is published on [PyPI](https://pypi.org/project/apify-client/) and can be installed for example with [pip](https://pip.pypa.io/): +`apify-client` requires **Python 3.11 or higher** and it is published on [PyPI](https://pypi.org/project/apify-client/) and on [conda-forge](https://anaconda.org/channels/conda-forge/packages/apify-client/overview) -```bash -pip install apify-client -``` +- From [PyPI](https://pypi.org/project/apify-client/), it can be installed for example with [pip](https://pip.pypa.io/): -or with [uv](https://docs.astral.sh/uv/): + ```bash + pip install apify-client + ``` -```bash -uv add apify-client -``` + or with [uv](https://docs.astral.sh/uv/): + + ```bash + uv add apify-client + ``` + + or any other Python package manager that consumes PyPI. + + +- From [conda-forge](https://anaconda.org/channels/conda-forge/packages/apify-client/overview), it can be installed with [conda](https://docs.conda.io/en/latest/): + ```bash + conda install conda-forge::apify-client + ``` -or any other Python package manager that consumes PyPI. ## Quick start From b45780aa26a5e865225fb5f40179cafa94586594 Mon Sep 17 00:00:00 2001 From: Josef Prochazka Date: Wed, 1 Jul 2026 16:32:37 +0200 Subject: [PATCH 2/4] Md format --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 95d93d94..aa2d5748 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ - From [conda-forge](https://anaconda.org/channels/conda-forge/packages/apify-client/overview), it can be installed with [conda](https://docs.conda.io/en/latest/): + ```bash conda install conda-forge::apify-client ``` From 72265ad80fc8931feedb04c52c5ae2d56f6f6694 Mon Sep 17 00:00:00 2001 From: Josef Prochazka Date: Wed, 1 Jul 2026 16:35:45 +0200 Subject: [PATCH 3/4] Review comments --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa2d5748..8b2d9d63 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ ## Installation -`apify-client` requires **Python 3.11 or higher** and it is published on [PyPI](https://pypi.org/project/apify-client/) and on [conda-forge](https://anaconda.org/channels/conda-forge/packages/apify-client/overview) +`apify-client` requires **Python 3.11 or higher** and is published on [PyPI](https://pypi.org/project/apify-client/) and [conda-forge](https://anaconda.org/conda-forge/apify-client). - From [PyPI](https://pypi.org/project/apify-client/), it can be installed for example with [pip](https://pip.pypa.io/): @@ -49,7 +49,7 @@ or any other Python package manager that consumes PyPI. -- From [conda-forge](https://anaconda.org/channels/conda-forge/packages/apify-client/overview), it can be installed with [conda](https://docs.conda.io/en/latest/): +- From [conda-forge](https://anaconda.org/conda-forge/apify-client), it can be installed with [conda](https://docs.conda.io/en/latest/): ```bash conda install conda-forge::apify-client From 6e9d5658b4df2115c341395d33306a48716f6087 Mon Sep 17 00:00:00 2001 From: Josef Prochazka Date: Thu, 2 Jul 2026 09:00:41 +0200 Subject: [PATCH 4/4] Update docs as well --- docs/01_introduction/index.mdx | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/docs/01_introduction/index.mdx b/docs/01_introduction/index.mdx index 59a04977..2661b7a2 100644 --- a/docs/01_introduction/index.mdx +++ b/docs/01_introduction/index.mdx @@ -31,11 +31,20 @@ python --version ## Installation -The Apify client is available as the [`apify-client`](https://pypi.org/project/apify-client/) package on PyPI. +The Apify client is available as the `apify-client` package [on PyPI](https://pypi.org/project/apify-client/) or [on conda-forge](https://anaconda.org/conda-forge/apify-client). -```bash -pip install apify-client -``` + + + ```bash + pip install apify-client + ``` + + + ```bash + conda install conda-forge::apify-client + ``` + + ## Quick example