├── .gitignore ├── README.md ├── doc ├── index.png ├── matrix.png ├── query1.png ├── query2.png ├── structure.png └── table.png ├── requirements ├── search └── server.go ├── sender ├── sender.go └── tables.sqlite └── spider ├── crawl.py ├── requirements ├── tables.sql └── tables.sqlite /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/README.md -------------------------------------------------------------------------------- /doc/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/doc/index.png -------------------------------------------------------------------------------- /doc/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/doc/matrix.png -------------------------------------------------------------------------------- /doc/query1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/doc/query1.png -------------------------------------------------------------------------------- /doc/query2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/doc/query2.png -------------------------------------------------------------------------------- /doc/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/doc/structure.png -------------------------------------------------------------------------------- /doc/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/doc/table.png -------------------------------------------------------------------------------- /requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/requirements -------------------------------------------------------------------------------- /search/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/search/server.go -------------------------------------------------------------------------------- /sender/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/sender/sender.go -------------------------------------------------------------------------------- /sender/tables.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/sender/tables.sqlite -------------------------------------------------------------------------------- /spider/crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/spider/crawl.py -------------------------------------------------------------------------------- /spider/requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/spider/requirements -------------------------------------------------------------------------------- /spider/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/spider/tables.sql -------------------------------------------------------------------------------- /spider/tables.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuRoy/sakura/HEAD/spider/tables.sqlite --------------------------------------------------------------------------------