├── .gitignore ├── README.md ├── data ├── ChineseProvincesGDP_PPP.csv ├── ChineseProvincesPopulation2010Census.csv ├── nb_of_users_by_provinces.json └── provinces.csv ├── dl_raw_data.sh ├── es_build_index.py ├── lib ├── __init__.py ├── mongo.py └── users.py ├── models ├── __init__.py └── user.py ├── requirements.txt ├── setup.sh ├── utils_build_provinces_stats.py └── utils_build_user_api.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/README.md -------------------------------------------------------------------------------- /data/ChineseProvincesGDP_PPP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/data/ChineseProvincesGDP_PPP.csv -------------------------------------------------------------------------------- /data/ChineseProvincesPopulation2010Census.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/data/ChineseProvincesPopulation2010Census.csv -------------------------------------------------------------------------------- /data/nb_of_users_by_provinces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/data/nb_of_users_by_provinces.json -------------------------------------------------------------------------------- /data/provinces.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/data/provinces.csv -------------------------------------------------------------------------------- /dl_raw_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/dl_raw_data.sh -------------------------------------------------------------------------------- /es_build_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/es_build_index.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/lib/mongo.py -------------------------------------------------------------------------------- /lib/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/lib/users.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/models/user.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyelasticsearch 2 | pandas 3 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/setup.sh -------------------------------------------------------------------------------- /utils_build_provinces_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/utils_build_provinces_stats.py -------------------------------------------------------------------------------- /utils_build_user_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topogram/weiboscope-data/HEAD/utils_build_user_api.py --------------------------------------------------------------------------------