├── .idea ├── PoemSpider.iml ├── dictionaries │ └── hulk.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .ignore ├── README.md ├── SpiderAuthor.py ├── SpiderPoem.py └── 为你写诗.pdf /.idea/PoemSpider.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilking-yh/PoemSpider/HEAD/.idea/PoemSpider.iml -------------------------------------------------------------------------------- /.idea/dictionaries/hulk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilking-yh/PoemSpider/HEAD/.idea/dictionaries/hulk.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilking-yh/PoemSpider/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilking-yh/PoemSpider/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilking-yh/PoemSpider/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilking-yh/PoemSpider/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilking-yh/PoemSpider/HEAD/README.md -------------------------------------------------------------------------------- /SpiderAuthor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilking-yh/PoemSpider/HEAD/SpiderAuthor.py -------------------------------------------------------------------------------- /SpiderPoem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilking-yh/PoemSpider/HEAD/SpiderPoem.py -------------------------------------------------------------------------------- /为你写诗.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilking-yh/PoemSpider/HEAD/为你写诗.pdf --------------------------------------------------------------------------------