Git Product home page Git Product logo

domainscraper's Introduction

Expired Domains Scraper for simply.com

This Python project scrapes a list of expired domains from a Danish hosting company named Simply.com using web scraping techniques. The domains listed on the webpage are those that have recently expired and are now available for registration. The script utilizes BeautifulSoup for parsing the HTML content and extracting domain names efficiently.


Features

  • Supports the use of proxies, including SOCKS proxies, for enhanced privacy and security during web scraping activities.
  • Inserts the extracted domain names into a MariaDB database for further analysis or processing.
  • Threading support is not currently implemented.

Get started

.env

DEBUG=False
URL="https://www.simply.com/en/ninja/"

# Proxy details
PROXY_HOST='proxy-nl.privateinternetaccess.com' #Default for PIA Proxy
PROXY_PORT='1080'                               #Default for PIA Proxy
PROXY_USERNAME=''                               #Your proxy username
PROXY_PASSWORD=''                               #Your proxy password

# MariaDB details
DB_HOST='localhost'                             #Database host
DB_USER='root'                                  #Database username
DB_PASSWORD=''                                  #Database password
DB_NAME=''                                      #Database name

Database table schema:

CREATE TABLE scraped_domains (
    id INT AUTO_INCREMENT PRIMARY KEY,
    domain VARCHAR(255),
    created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

How to export database to csv? See here

domainscraper's People

Contributors

ha1fdan 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.