web search engine ui
1.0.0
UI of the simple web search engine https://github.com/AnthonySigogne/web-search-engine
Uma demonstração pode ser encontrada aqui: http://searchengine.byprog.com/
Cerca de 500 URLs em francês e 500 URLs em inglês da rede de notícias http://www.france24.com/ foram indexados.
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
Em seguida, execute a ferramenta:
FLASK_APP=index.py HOST=<ip> PORT=<port> flask run --port 80
Onde :
ip
+ port
: route to web search engine API To run in debug mode, prepend FLASK_DEBUG=1
to the command :
FLASK_DEBUG=1 ... flask run --port 80
Para executar a ferramenta com Docker, você pode usar minha imagem DockerHub: 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
Onde :
ip
+ port
: route to web search engine APIOu crie uma imagem Docker:
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