Metadata-Version: 2.1
Name: china-region-data
Version: 0.1.0
Summary: 中国行政区域数据
Home-page: https://github.com/abersheeran/china-region-data
License: MIT
Author: abersheeran
Author-email: me@abersheeran.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Project-URL: Documentation, https://github.com/abersheeran/china-region-data
Project-URL: Repository, https://github.com/abersheeran/china-region-data
Description-Content-Type: text/markdown

# 中国行政区域数据

根据[中国政府网站](http://www.mca.gov.cn/article/sj/xzqh/2019/2019/201912251506.html)中的数据处理而成。

```python
from china_region_data import 省级行政区域, 市级行政区域, 县级行政区域


for 省级行政地区 in 省级行政区域:
    print(省级行政地区)
    for 市级行政地区 in 省级行政地区.下级行政区域:
        print("  ", 市级行政地区)
        for 县级行政地区 in 市级行政地区.下级行政区域:
            print("    ", 县级行政地区)
```

