fchollet /
deep-learning-with-python-notebooks
Jupyter notebooks for the code samples of the book "Deep Learning with Python"
Loading repository data…
umangpurwar03 / repository
Jupyter Notebook for extracting seller details (phone numbers, addresses, and names) from a website using Beautiful Soup. Customize HTML selectors for targeted data.
This Jupyter Notebook provides a demonstration of web scraping using Beautiful Soup to extract seller details from a website. The notebook focuses on retrieving information such as phone numbers, addresses, and names of sellers. Before using this script, make sure to review and comply with the website's terms of service and legal requirements.
Install the required packages using the following command:
pip install beautifulsoup4 requests
Download the Jupyter Notebook file (webscraping.ipynb).
Open the Jupyter Notebook in your local environment.
Modify the following variables in the notebook:
target_url: The URL of the website you want to scrape.phone_selector: The HTML selector for the phone numbers.address_selector: The HTML selector for the addresses.name_selector: The HTML selector for the seller names.target_url = 'https://example.com'
phone_selector = 'your-phone-selector'
address_selector = 'your-address-selector'
name_selector = 'your-name-selector'
The notebook will fetch the specified information from the provided website and display the details within the notebook.
This notebook is provided for educational purposes only. Use it responsibly and ensure that your actions comply with the legal and ethical standards of web scraping. The developer is not responsible for any misuse of this notebook.
Selected from shared topics, language and repository description—not editorial ratings.
fchollet /
Jupyter notebooks for the code samples of the book "Deep Learning with Python"
ipython /
Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.
kubeflow /
Machine Learning Toolkit for Kubernetes
fastai /
Free online textbook of Jupyter notebooks for fast.ai Computational Linear Algebra course
jupyterhub /
Multi-user server for Jupyter notebooks
NirDiamant /
22 prompt engineering techniques with hands-on Jupyter Notebook tutorials, from fundamental concepts to advanced strategies for leveraging LLMs.