├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Contributing.md ├── LICENSE ├── Makefile ├── Pipfile ├── Readme.rst ├── TODO.rst ├── diff.txt ├── docs ├── 404.rst ├── Makefile ├── _extra │ ├── _redirects │ ├── ads.txt │ └── robots.txt ├── _static │ ├── guide-book-cover.jpg │ ├── pep-0001-1.png │ ├── photos │ │ ├── 32800783863_11a00db52c_k_d.jpg │ │ ├── 32800805573_568d6b72fd_k_d.jpg │ │ ├── 33175624924_7febc46cc4_k_d.jpg │ │ ├── 33175625804_e225b90f3e_k_d.jpg │ │ ├── 33467946364_3e59bd376a_k_d.jpg │ │ ├── 33573755856_7f43d43adf_k_d.jpg │ │ ├── 33573767786_eececc5d27_k_d.jpg │ │ ├── 33573769116_49c1ef51e7_k_d.jpg │ │ ├── 33888714601_a1f7d020a2_k_d.jpg │ │ ├── 33907143624_cd621b535c_k_d.jpg │ │ ├── 33907149294_82d7535a6c_k_d.jpg │ │ ├── 33907150054_5ee79e8940_k_d.jpg │ │ ├── 33907150594_9abba7ad0a_k_d.jpg │ │ ├── 33907151034_e0a9e53402_k_d.jpg │ │ ├── 33907151224_0574e7dfc2_k_d.jpg │ │ ├── 33907152464_a99fdcc8de_k_d.jpg │ │ ├── 33907152824_bf91078cc1_k_d.jpg │ │ ├── 33925223870_97e44f5629_k_d.jpg │ │ ├── 33928819683_97b5c6a184_k_d.jpg │ │ ├── 33928823133_2f3d32cf32_k_d.jpg │ │ ├── 34018729885_002ced9b54_k_d.jpg │ │ ├── 34018732105_f0e6758859_k_d.jpg │ │ ├── 34151833832_6bdfd930af_k_d.jpg │ │ ├── 34268661876_442428e122_k_d.jpg │ │ ├── 34309496175_b82d104282_k_d.jpg │ │ ├── 34364815780_bea6614025_k_d.jpg │ │ ├── 34435687940_8f73fc1fa6_k_d.jpg │ │ ├── 34435688380_b5a740762b_k_d.jpg │ │ ├── 34435688560_4cc2a7bcbb_k_d.jpg │ │ ├── 34435689480_2e6f358510_k_d.jpg │ │ ├── 34435690330_11930b5987_k_d.jpg │ │ ├── 34435690580_3afec7d4cd_k_d.jpg │ │ ├── 34484834733_5b80f65ab1_k_d.jpg │ │ ├── 34575689432_3de8e9a348_k_d.jpg │ │ ├── 34689432801_78d97ecec9_k_d.jpg │ │ ├── 34689452831_93d7fd0571_k_d.jpg │ │ ├── 34725946825_0f85497e60_k_d.jpg │ │ ├── 34725951345_c8f5959a2e_k_d.jpg │ │ ├── 35254379756_c9fe23f843_k_d.jpg │ │ ├── 35294660055_42c02b2316_k_d.jpg │ │ ├── 35620636012_f66aa88f93_k_d.jpg │ │ ├── 36137232412_fdcb0f84eb_k_d.jpg │ │ └── 36137234682_be6898bf57_k_d.jpg │ ├── python-guide-logo.png │ ├── social-card.jpg │ └── test ├── _templates │ ├── hacks.html │ ├── layout.html │ ├── sidebarintro.html │ └── sidebarlogo.html ├── _themes │ ├── .gitignore │ ├── LICENSE │ └── flask_theme_support.py ├── conf.py ├── contents.rst.inc ├── dev │ ├── env.rst │ ├── pip-virtualenv.rst │ └── virtualenvs.rst ├── index.rst ├── intro │ ├── community.rst │ ├── documentation.rst │ ├── duction.rst │ ├── learning.rst │ └── news.rst ├── make.bat ├── notes │ ├── contribute.rst │ ├── license.rst │ └── styleguide.rst ├── scenarios │ ├── admin.rst │ ├── ci.rst │ ├── cli.rst │ ├── clibs.rst │ ├── client.rst │ ├── crypto.rst │ ├── db.rst │ ├── gui.rst │ ├── imaging.rst │ ├── json.rst │ ├── ml.rst │ ├── network.rst │ ├── scientific.rst │ ├── scrape.rst │ ├── serialization.rst │ ├── speed.rst │ ├── web.rst │ └── xml.rst ├── shipping │ ├── freezing.rst │ ├── packaging.rst │ └── publishing.rst ├── starting │ ├── install │ │ ├── linux.rst │ │ ├── osx.rst │ │ └── win.rst │ ├── install3 │ │ ├── linux.rst │ │ ├── osx.rst │ │ └── win.rst │ ├── installation.rst │ └── which-python.rst └── writing │ ├── documentation.rst │ ├── gotchas.rst │ ├── license.rst │ ├── logging.rst │ ├── reading.rst │ ├── structure.rst │ ├── style.rst │ └── tests.rst ├── ext └── python-guide-logo.ai ├── make.bat ├── makehtml.bat ├── requirements-to-freeze.txt ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | 要热忱,也要在路上。 2 | 3 | https://www.kennethreitz.org/essays/be-cordial-or-be-on-your-way 4 | -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/Pipfile -------------------------------------------------------------------------------- /Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/Readme.rst -------------------------------------------------------------------------------- /TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/TODO.rst -------------------------------------------------------------------------------- /diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/diff.txt -------------------------------------------------------------------------------- /docs/404.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/404.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_extra/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_extra/_redirects -------------------------------------------------------------------------------- /docs/_extra/ads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_extra/ads.txt -------------------------------------------------------------------------------- /docs/_extra/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /docs/_static/guide-book-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/guide-book-cover.jpg -------------------------------------------------------------------------------- /docs/_static/pep-0001-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/pep-0001-1.png -------------------------------------------------------------------------------- /docs/_static/photos/32800783863_11a00db52c_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/32800783863_11a00db52c_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/32800805573_568d6b72fd_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/32800805573_568d6b72fd_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33175624924_7febc46cc4_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33175624924_7febc46cc4_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33175625804_e225b90f3e_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33175625804_e225b90f3e_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33467946364_3e59bd376a_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33467946364_3e59bd376a_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33573755856_7f43d43adf_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33573755856_7f43d43adf_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33573767786_eececc5d27_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33573767786_eececc5d27_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33573769116_49c1ef51e7_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33573769116_49c1ef51e7_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33888714601_a1f7d020a2_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33888714601_a1f7d020a2_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33907143624_cd621b535c_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33907143624_cd621b535c_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33907149294_82d7535a6c_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33907149294_82d7535a6c_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33907150054_5ee79e8940_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33907150054_5ee79e8940_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33907150594_9abba7ad0a_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33907150594_9abba7ad0a_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33907151034_e0a9e53402_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33907151034_e0a9e53402_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33907151224_0574e7dfc2_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33907151224_0574e7dfc2_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33907152464_a99fdcc8de_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33907152464_a99fdcc8de_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33907152824_bf91078cc1_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33907152824_bf91078cc1_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33925223870_97e44f5629_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33925223870_97e44f5629_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33928819683_97b5c6a184_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33928819683_97b5c6a184_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/33928823133_2f3d32cf32_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/33928823133_2f3d32cf32_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34018729885_002ced9b54_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34018729885_002ced9b54_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34018732105_f0e6758859_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34018732105_f0e6758859_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34151833832_6bdfd930af_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34151833832_6bdfd930af_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34268661876_442428e122_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34268661876_442428e122_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34309496175_b82d104282_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34309496175_b82d104282_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34364815780_bea6614025_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34364815780_bea6614025_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34435687940_8f73fc1fa6_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34435687940_8f73fc1fa6_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34435688380_b5a740762b_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34435688380_b5a740762b_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34435688560_4cc2a7bcbb_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34435688560_4cc2a7bcbb_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34435689480_2e6f358510_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34435689480_2e6f358510_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34435690330_11930b5987_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34435690330_11930b5987_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34435690580_3afec7d4cd_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34435690580_3afec7d4cd_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34484834733_5b80f65ab1_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34484834733_5b80f65ab1_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34575689432_3de8e9a348_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34575689432_3de8e9a348_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34689432801_78d97ecec9_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34689432801_78d97ecec9_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34689452831_93d7fd0571_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34689452831_93d7fd0571_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34725946825_0f85497e60_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34725946825_0f85497e60_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/34725951345_c8f5959a2e_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/34725951345_c8f5959a2e_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/35254379756_c9fe23f843_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/35254379756_c9fe23f843_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/35294660055_42c02b2316_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/35294660055_42c02b2316_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/35620636012_f66aa88f93_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/35620636012_f66aa88f93_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/36137232412_fdcb0f84eb_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/36137232412_fdcb0f84eb_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/photos/36137234682_be6898bf57_k_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/photos/36137234682_be6898bf57_k_d.jpg -------------------------------------------------------------------------------- /docs/_static/python-guide-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/python-guide-logo.png -------------------------------------------------------------------------------- /docs/_static/social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_static/social-card.jpg -------------------------------------------------------------------------------- /docs/_static/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/hacks.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/_templates/sidebarintro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_templates/sidebarintro.html -------------------------------------------------------------------------------- /docs/_templates/sidebarlogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_templates/sidebarlogo.html -------------------------------------------------------------------------------- /docs/_themes/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /docs/_themes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_themes/LICENSE -------------------------------------------------------------------------------- /docs/_themes/flask_theme_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/_themes/flask_theme_support.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/contents.rst.inc -------------------------------------------------------------------------------- /docs/dev/env.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/dev/env.rst -------------------------------------------------------------------------------- /docs/dev/pip-virtualenv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/dev/pip-virtualenv.rst -------------------------------------------------------------------------------- /docs/dev/virtualenvs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/dev/virtualenvs.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro/community.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/intro/community.rst -------------------------------------------------------------------------------- /docs/intro/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/intro/documentation.rst -------------------------------------------------------------------------------- /docs/intro/duction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/intro/duction.rst -------------------------------------------------------------------------------- /docs/intro/learning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/intro/learning.rst -------------------------------------------------------------------------------- /docs/intro/news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/intro/news.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/notes/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/notes/contribute.rst -------------------------------------------------------------------------------- /docs/notes/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/notes/license.rst -------------------------------------------------------------------------------- /docs/notes/styleguide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/notes/styleguide.rst -------------------------------------------------------------------------------- /docs/scenarios/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/admin.rst -------------------------------------------------------------------------------- /docs/scenarios/ci.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/ci.rst -------------------------------------------------------------------------------- /docs/scenarios/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/cli.rst -------------------------------------------------------------------------------- /docs/scenarios/clibs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/clibs.rst -------------------------------------------------------------------------------- /docs/scenarios/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/client.rst -------------------------------------------------------------------------------- /docs/scenarios/crypto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/crypto.rst -------------------------------------------------------------------------------- /docs/scenarios/db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/db.rst -------------------------------------------------------------------------------- /docs/scenarios/gui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/gui.rst -------------------------------------------------------------------------------- /docs/scenarios/imaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/imaging.rst -------------------------------------------------------------------------------- /docs/scenarios/json.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/json.rst -------------------------------------------------------------------------------- /docs/scenarios/ml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/ml.rst -------------------------------------------------------------------------------- /docs/scenarios/network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/network.rst -------------------------------------------------------------------------------- /docs/scenarios/scientific.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/scientific.rst -------------------------------------------------------------------------------- /docs/scenarios/scrape.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/scrape.rst -------------------------------------------------------------------------------- /docs/scenarios/serialization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/serialization.rst -------------------------------------------------------------------------------- /docs/scenarios/speed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/speed.rst -------------------------------------------------------------------------------- /docs/scenarios/web.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/web.rst -------------------------------------------------------------------------------- /docs/scenarios/xml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/scenarios/xml.rst -------------------------------------------------------------------------------- /docs/shipping/freezing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/shipping/freezing.rst -------------------------------------------------------------------------------- /docs/shipping/packaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/shipping/packaging.rst -------------------------------------------------------------------------------- /docs/shipping/publishing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/shipping/publishing.rst -------------------------------------------------------------------------------- /docs/starting/install/linux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/starting/install/linux.rst -------------------------------------------------------------------------------- /docs/starting/install/osx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/starting/install/osx.rst -------------------------------------------------------------------------------- /docs/starting/install/win.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/starting/install/win.rst -------------------------------------------------------------------------------- /docs/starting/install3/linux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/starting/install3/linux.rst -------------------------------------------------------------------------------- /docs/starting/install3/osx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/starting/install3/osx.rst -------------------------------------------------------------------------------- /docs/starting/install3/win.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/starting/install3/win.rst -------------------------------------------------------------------------------- /docs/starting/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/starting/installation.rst -------------------------------------------------------------------------------- /docs/starting/which-python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/starting/which-python.rst -------------------------------------------------------------------------------- /docs/writing/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/writing/documentation.rst -------------------------------------------------------------------------------- /docs/writing/gotchas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/writing/gotchas.rst -------------------------------------------------------------------------------- /docs/writing/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/writing/license.rst -------------------------------------------------------------------------------- /docs/writing/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/writing/logging.rst -------------------------------------------------------------------------------- /docs/writing/reading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/writing/reading.rst -------------------------------------------------------------------------------- /docs/writing/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/writing/structure.rst -------------------------------------------------------------------------------- /docs/writing/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/writing/style.rst -------------------------------------------------------------------------------- /docs/writing/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/docs/writing/tests.rst -------------------------------------------------------------------------------- /ext/python-guide-logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/ext/python-guide-logo.ai -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/make.bat -------------------------------------------------------------------------------- /makehtml.bat: -------------------------------------------------------------------------------- 1 | make html 2 | pause -------------------------------------------------------------------------------- /requirements-to-freeze.txt: -------------------------------------------------------------------------------- 1 | sphinx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prodesire/Python-Guide-CN/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | 3.8 2 | --------------------------------------------------------------------------------