- 利用scrapy框架爬取去哪儿网热门景点信息
- 抽取三元组信息(存入mongdb数据库)
- 构建中文知识图谱(存入neo4j数据库)
注意:在python环境中需要安装 neo4j-driver
-
启动mongo服务
$ net start MongDB
注意:需要管理员权限
-
启动neo4j服务
$ neo4j start
注意:需要在neo4j的安装目录下运行命令
-
连接Neo4j Browser
- 浏览器上访问 http://localhost:7474/
- 用户名和密码与代码中一致
auth=("neo4j", "123")
-
运行run.py
$ cd WEB_qunaer/qunaer/spiders
$ python run.py
最后感谢WEB_KG!