0

我正在考虑使用 python 和 Django 来构建自定义搜索引擎。我有以下想法

  • Python 脚本将遍历所有目录,将文件分成以下字段
    1. 小路
    2. 文件名
    3. 扩大
    4. 尺寸

我会将其存储在 Django 模型中

然后我可以使用搜索过滤器来简化。我不想进入内容。我只想按文件名搜索

我正在考虑使用的 Python 脚本 os.walk

可以吗,或者我还需要使用更多的方法

4

1 回答 1

1

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

于 2013-01-11T09:27:35.170 回答