├── .gitignore ├── .idea ├── QQ_Z.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── __pycache__ └── getFrends.cpython-35.pyc ├── data_analys.py ├── getFrends.py ├── qq_spider.py └── userinfo.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/QQ_Z.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/.idea/QQ_Z.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/getFrends.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/__pycache__/getFrends.cpython-35.pyc -------------------------------------------------------------------------------- /data_analys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/data_analys.py -------------------------------------------------------------------------------- /getFrends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/getFrends.py -------------------------------------------------------------------------------- /qq_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/qq_spider.py -------------------------------------------------------------------------------- /userinfo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxung/QQ_zone/HEAD/userinfo.ini --------------------------------------------------------------------------------