├── .gitignore ├── .vscode └── launch.json ├── README.md ├── README_CN.md ├── config.json ├── config.py ├── data_processor.py ├── html_fetcher.py ├── main.py ├── models.py ├── openai_processor.py ├── requirements.txt ├── rss_updater.py ├── static ├── css │ └── style.css └── js │ └── main.js ├── templates └── index.html └── views └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/README_CN.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/config.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/config.py -------------------------------------------------------------------------------- /data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/data_processor.py -------------------------------------------------------------------------------- /html_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/html_fetcher.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/models.py -------------------------------------------------------------------------------- /openai_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/openai_processor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/requirements.txt -------------------------------------------------------------------------------- /rss_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/rss_updater.py -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/static/js/main.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/SuperInsights/HEAD/templates/index.html -------------------------------------------------------------------------------- /views/views.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------