web search engine ui
1.0.0
UI of the simple web search engine https://github.com/AnthonySigogne/web-search-engine
A demo can be found here : http://searchengine.byprog.com/
About 500 French URLs and 500 English URLs of the news network http://www.france24.com/ have been indexed.
This tool requires Python3+ and the web search engine API (see link above).
git clone https://github.com/AnthonySigogne/web-search-engine-ui.git
cd web-search-engine-ui
pip install -r requirements.txt
Then, run the tool :
FLASK_APP=index.py HOST=<ip> PORT=<port> flask run --port 80
Where :
ip
+ port
: route to web search engine APITo run in debug mode, prepend FLASK_DEBUG=1
to the command :
FLASK_DEBUG=1 ... flask run --port 80
To run the tool with Docker, you can use my DockerHub image : https://hub.docker.com/r/anthonysigogne/web-search-engine-ui/
docker run -p 80:5000
-e "HOST=<ip>"
-e "PORT=<port>"
anthonysigogne/web-search-engine-ui
Where :
ip
+ port
: route to web search engine APIOr, build yourself a Docker image :
git clone https://github.com/AnthonySigogne/web-search-engine-ui.git
cd web-search-engine-ui
docker build -t web-search-engine-ui .
To use the search engine, just type this endpoint in your web browser : http://localhost/
MIT