├── .gitattributes ├── .gitignore ├── README.md ├── config.ini ├── house.py ├── reports └── 房屋价格情况统计20190124.html ├── requirements.txt └── source ├── __init__.py ├── anjuke.py ├── beike.py ├── common.py ├── ganji.py ├── lianjia.py ├── read.py ├── report.py ├── save.py ├── template.py └── tongcheng.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=python 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/config.ini -------------------------------------------------------------------------------- /house.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/house.py -------------------------------------------------------------------------------- /reports/房屋价格情况统计20190124.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/reports/房屋价格情况统计20190124.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/requirements.txt -------------------------------------------------------------------------------- /source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/anjuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/source/anjuke.py -------------------------------------------------------------------------------- /source/beike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/source/beike.py -------------------------------------------------------------------------------- /source/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/source/common.py -------------------------------------------------------------------------------- /source/ganji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/source/ganji.py -------------------------------------------------------------------------------- /source/lianjia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/source/lianjia.py -------------------------------------------------------------------------------- /source/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/source/read.py -------------------------------------------------------------------------------- /source/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/source/report.py -------------------------------------------------------------------------------- /source/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/source/save.py -------------------------------------------------------------------------------- /source/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/source/template.py -------------------------------------------------------------------------------- /source/tongcheng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-branch/house/HEAD/source/tongcheng.py --------------------------------------------------------------------------------