Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ljnath/getdomainage
getDomainAge is a web application which can provide the age of a given domain name. The intention of this project is to demonstrate flask for API development, SQLAlchemy for ORM and beautifulsoup for HTML parsing.
https://github.com/ljnath/getdomainage
beautifulsoup docker domain flask flask-api flask-application flask-restful flask-server flask-sqlalchemy flask-web job-queue job-scheduler producer-consumer python python3 scraping-websites sqlalchemy sqlalchemy-database sqllite whois
Last synced: 2 days ago
JSON representation
getDomainAge is a web application which can provide the age of a given domain name. The intention of this project is to demonstrate flask for API development, SQLAlchemy for ORM and beautifulsoup for HTML parsing.
- Host: GitHub
- URL: https://github.com/ljnath/getdomainage
- Owner: ljnath
- License: mit
- Created: 2019-06-12T21:48:45.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-11T21:42:51.000Z (10 months ago)
- Last Synced: 2024-01-12T05:21:39.562Z (10 months ago)
- Topics: beautifulsoup, docker, domain, flask, flask-api, flask-application, flask-restful, flask-server, flask-sqlalchemy, flask-web, job-queue, job-scheduler, producer-consumer, python, python3, scraping-websites, sqlalchemy, sqlalchemy-database, sqllite, whois
- Language: Python
- Homepage: https://ljnath.com
- Size: 3.48 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# getDomainAge
### Version : 0.3Author: Lakhya Jyoti Nath (ljnath)
Date: June 2019 - July 2021
Email: [email protected]
Website: https://ljnath.com[![](https://img.shields.io/github/license/ljnath/getdomainage)](https://github.com/ljnath/getDomainAge)
![Lines of code](https://img.shields.io/tokei/lines/github/ljnath/getDomainAge)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/ljnath/getDomainAge)
![GitHub search hit counter](https://img.shields.io/github/search/ljnath/getDomainAge/getDomainAge)
[![codecov](https://codecov.io/gh/ljnath/getDomainAge/branch/master/graph/badge.svg?token=nwi6SmUvjF)](https://codecov.io/gh/ljnath/getDomainAge)![GitHub Workflow Status(https://github.com/ljnath/getDomainAge/actions)](https://img.shields.io/github/workflow/status/ljnath/getDomainAge/E2E%20getDomainAge%20workflow)
[![](https://img.shields.io/docker/pulls/ljnath/getdomainage)](https://hub.docker.com/r/ljnath/getdomainage)
![Docker Image Size (tag)](https://img.shields.io/docker/image-size/ljnath/getdomainage/latest)
[![](https://images.microbadger.com/badges/version/ljnath/getdomainage.svg)](https://microbadger.com/images/ljnath/getdomainage)## What is it ?
getDomainAge is a web application which can provide the age of a given domain name.
User can login using their email and they can add a job with one or more URLs. The application will pick these jobs sequentially and process these.
Job processing includes parsing the domain name from the URL, fetching its registration date, calculating its age (in days) and saving the result to a CSV file. It will also send an email to the user with the result file attached.The intention of this project is to demonstrate flask for API development, SQLAlchemy for ORM and beautifulsoup for HTML parsing.
## How it works ?
This application mainly consists of 2 components viz. application-server and worker-service.
1. Application server - This is built around flask which has a handful of APIs for user login, logout, addition of job, viewing of job and file download.2. Worker service - This is an independent component which runs on a separate thread. It is responsible for picking up task from the database and completing those.
## What is the workflow ?
- It works by scrapping the domain registration date from https://www.whois.com/
- User places their job request using the web portal where they can enter one or more URLs in comma or new-line separated manner. Jobs are stored in SQLite DB using SQLAlchemy
- A worker service looks for pending jobs in the database and picks it up.
- The worker service updates the job status to `RUNNING` and starts processing it using `DomainService`.
- `DomainService` checks for the domain registered date in local cache, if it is not there it parse that information from https://www.whois.com using `Beautiful Soup` and finally the result is saved as a CSV file.
- Next `EmailService` sends out an email to the job requestor with the result CSV attached.## Application configuration
The configuration of the application is done using a JSON file. This file needs to be passed as argument while starting the application.
Following is the explained config file
```json
{
# complete path to the workspace directory
# incase of docker, this should prefix with /workspace as shown below
"workspace_path": "/workspace/my_workspace",# application server configuration
"server": {
"host": "0.0.0.0",
"port": 80,
"debug": false
},# email configuration
"smtp": {
"host": "",
"port": 25,
"username": "",
"password": "",
"sender_email": ""
},# application configuration
"application": {
"jobs_per_page": 10,
"session_timeout": 10
}
}
```## How to run in local ?
- Clone the git repository
```
git clone https://github.com/ljnath/getDomainAge.git
```
- update the config.json file as per your need
- start the application using the following command
```
python runserver.py --config config.json
```## How to run using docker ?
To run the getdomainage docker container, you need to mount a local directory to docker volume `/workspace`.
This directory should contain the application configuration file (`config.json`).
The SQLite database, cache, application logs and results will be created under the `/workspace` volume, so please make to have correct permissions.```docker
docker run -p 5000:{server-port-as-per-config-json} -v /home/user/getDomainAge:/workspace -e CONFIG_FILE=config.json ljnath/getdomainage
```## How to use ?
- Login with your email ID
- Add a new job where you need to enter your list of URLs in a form, which can be comma or new-line separated
- Wait for your job to be processed. Once processed, you will receive an email with the age of your selected domain.## Sample
## Give a Star!⭐️
If you find this repository useful, please give it a star.
Thanks in advance !## License
Copyright © 2021 [Lakhya's Innovation Inc.](https://github.com/ljnath/) under the [MIT License](https://github.com/ljnath/getDomainAge/blob/master/LICENSE).