├── .dockerignore ├── .gitignore ├── requirements.txt ├── templates ├── stock.html ├── flash.html ├── results.html ├── news.html ├── podcasts.html ├── video.html ├── index.html ├── ai.html └── images.html ├── docker └── Dockerfile ├── compose.yml ├── README.md └── main.py /.dockerignore: -------------------------------------------------------------------------------- 1 | *.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | env/ -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | duckduckgo-search 2 | podsearch 3 | yfinance==0.2.54 4 | Flask 5 | -------------------------------------------------------------------------------- /templates/stock.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |{{ i['body'] }}
284 | 285 | {% set words = i['body'].split(' ') %} 286 | {% if words|length > 5 %} 287 |Try using prefixes for special searches:
239 |