GithubHelp home page GithubHelp logo

url_extractor's Introduction

Website Link Extractor

This script allows you to extract links from a website by providing its URL. It utilizes the requests and bs4 libraries to retrieve the source code of the website and parse it to extract the URLs.

Usage

  1. Import the required libraries:

    import requests
    import bs4
  2. Prompt the user for input:

    url = input("Enter the URL (starting with https://): ")

    The user needs to provide the URL of the website from which they want to extract the links.

  3. Define the extract_links function:

    def extract_links(url):
        site_data = requests.get(url)
        data = bs4.BeautifulSoup(site_data.text, "lxml")
        links = data.find_all('a')
        for link in links:
            print(link['href'])

    This function takes a URL as input, retrieves the source code of the website using requests.get(), and then parses it using BeautifulSoup from bs4. It selects all the <a> tags in the website and prints the URLs found in their href attributes.

  4. Call the extract_links function with the provided URL:

    extract_links(url)

    This will execute the function and print the extracted URLs.

Requirements

Before running the script, make sure you have the following libraries installed:

  • requests
  • bs4

You can install them by running the following command:

pip install requests bs4

Author

This script was created by Vinay Ghate.

url_extractor's People

Contributors

vinay-ghate avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.