├── .gitignore ├── LICENSE ├── README.md ├── eastmoney_crawler.py ├── eastmoney_crawler2.py ├── table ├── 业绩报表.csv └── 资产负债表.csv └── table2 ├── 业绩快报表.csv ├── 业绩报表.csv ├── 业绩预告表.csv ├── 利润表.csv ├── 利润表(全部).csv ├── 现金流量表.csv ├── 资产负债表.csv └── 预约披露时间表.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/README.md -------------------------------------------------------------------------------- /eastmoney_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/eastmoney_crawler.py -------------------------------------------------------------------------------- /eastmoney_crawler2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/eastmoney_crawler2.py -------------------------------------------------------------------------------- /table/业绩报表.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/table/业绩报表.csv -------------------------------------------------------------------------------- /table/资产负债表.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/table/资产负债表.csv -------------------------------------------------------------------------------- /table2/业绩快报表.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/table2/业绩快报表.csv -------------------------------------------------------------------------------- /table2/业绩报表.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/table2/业绩报表.csv -------------------------------------------------------------------------------- /table2/业绩预告表.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/table2/业绩预告表.csv -------------------------------------------------------------------------------- /table2/利润表.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/table2/利润表.csv -------------------------------------------------------------------------------- /table2/利润表(全部).csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/table2/利润表(全部).csv -------------------------------------------------------------------------------- /table2/现金流量表.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/table2/现金流量表.csv -------------------------------------------------------------------------------- /table2/资产负债表.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/table2/资产负债表.csv -------------------------------------------------------------------------------- /table2/预约披露时间表.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makcyun/eastmoney_spider/HEAD/table2/预约披露时间表.csv --------------------------------------------------------------------------------