Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.25 KB

README.md

File metadata and controls

53 lines (35 loc) · 1.25 KB

Goooogle

A simple way to view search results from the search engines (Google, Bing, AOL, etc.)

Installation

python3 -m venv search-engines-scraper-venv
source search-engines-scraper-venv/bin/activate


<!-- pip install -r requirements.txt -->

python3 setup.py install
export FLASK_ENV=development
flask run

Technology Stack

Screenshots

  • Loading

https://scraper.ranbot.online

  • Search Results

https://scraper.ranbot.online

Python

  • used common layout [code block]
{% extends 'layouts/application.html' %}
  • Python script in flask template
  {% if page == 1 %}
  {% set page_text = 'Value 1' %}
  {% else %}
  {% set page_text = 'Value 2' %}
  {% endif %}