Skip to content
This repository was archived by the owner on Mar 19, 2025. It is now read-only.

instax-dutta/NuclearCodes--

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SERP API

A self-hosted Search Engine Results Page (SERP) API for retrieving search results from Google.

Features

  • Search Google and get results in JSON format
  • Free to use with no API key required
  • Configurable number of results, language, and country
  • Easy deployment on AWS Lightsail Ubuntu VM (running on port 7777)
  • Automatic SSL setup with Let's Encrypt

Setup Instructions

Prerequisites

  • AWS Lightsail Ubuntu VM
  • Domain name (serp.sdad.pro) with DNS pointing to your VM's IP address
  • Basic knowledge of Linux commands

Installation

  1. Connect to your AWS Lightsail Ubuntu VM via SSH:
ssh ubuntu@your-lightsail-ip
  1. Clone or copy the project files to your VM:
mkdir -p ~/serp-api-setup
cd ~/serp-api-setup
# Copy all files to this directory
  1. Make the setup script executable:
chmod +x setup.sh
  1. Update the paths in the setup script:
nano setup.sh
# Update the paths to point to your actual file locations
  1. Run the setup script:
./setup.sh
  1. Follow the prompts to complete the installation.

Manual Setup (if script fails)

If the automated script fails, you can follow these manual steps:

  1. Update system packages:
sudo apt update
sudo apt upgrade -y
  1. Install required packages:
sudo apt install -y python3-pip python3-venv nginx certbot python3-certbot-nginx
  1. Create project directory:
mkdir -p ~/serp-api
cd ~/serp-api
  1. Copy project files:
# Copy the files to the project directory
  1. Create and activate virtual environment:
python3 -m venv venv
source venv/bin/activate
  1. Install dependencies:
pip install --upgrade pip
pip install -r requirements.txt
  1. Set up systemd service:
sudo cp serp-api.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable serp-api
sudo systemctl start serp-api
  1. Set up Nginx:
sudo cp serp.sdad.pro /etc/nginx/sites-available/
sudo ln -sf /etc/nginx/sites-available/serp.sdad.pro /etc/nginx/sites-enabled/
sudo nginx -t
sudo systemctl restart nginx
  1. Set up SSL with Let's Encrypt:
sudo certbot --nginx -d serp.sdad.pro

API Usage

Endpoints

GET /search

GET /search?query=example&num_results=10&language=en&country=us

Parameters:

  • query: Search query (required)
  • num_results: Number of results to return (default: 10)
  • language: Language code (default: en)
  • country: Country code (default: us)

POST /search

POST /search
Content-Type: application/json

{
  "query": "example",
  "num_results": 10,
  "language": "en",
  "country": "us"
}

Example Response

{
  "query": "example",
  "results_count": 10,
  "results": [
    {
      "title": "Example Title",
      "link": "https://example.com",
      "snippet": "This is an example snippet from the search results..."
    },
    ...
  ]
}

Troubleshooting

Check Service Status

sudo systemctl status serp-api

View Logs

sudo journalctl -u serp-api

Nginx Logs

sudo tail -f /var/log/nginx/access.log
sudo tail -f /var/log/nginx/error.log

API Logs

tail -f ~/serp/serp_api.log

Security Considerations

  • Consider implementing rate limiting for production use
  • Regularly update dependencies for security patches
  • Use HTTPS for all API requests in production

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published