我正在考虑使用 python 和 Django 来构建自定义搜索引擎。我有以下想法
- Python 脚本将遍历所有目录,将文件分成以下字段
- 小路
- 文件名
- 扩大
- 尺寸
我会将其存储在 Django 模型中
然后我可以使用搜索过滤器来简化。我不想进入内容。我只想按文件名搜索
我正在考虑使用的 Python 脚本
os.walk
可以吗,或者我还需要使用更多的方法
refer this post by me; it is using whoosh
to generate index of files; then you can use it in your django/flask.. .
Create an index of the content of each file in a folder
you can also replace the whoosh
with sqlite3