This Python script is designed to scrape the names of all users from the website https://opensource-heroes.com/developers, with support for pagination.
We use Conda to manage the Python environment. If you haven't set up your environment yet, follow these steps:
-
Install Anaconda or Miniconda (if not already installed).
-
Create and activate the environment:
conda create -n learn python=3.9 -y conda activate learn
If you've already created the environment, simply activate it using:
conda env list
Then install the required packages with:
pip install -r requirements.txt