├── .gitattributes ├── .gitignore ├── Advanced-Features ├── README.md ├── context.md ├── generator.md └── iterator.md ├── Basic ├── README.md ├── character_encoding.md └── input_output.md ├── Class ├── README.md ├── class_and_object.md ├── inheritance_and_polymorphism.md ├── magic_method.md ├── metaclass.md ├── method.md ├── property.md ├── singleton.md ├── slots.md └── super.md ├── Conclusion ├── README.md ├── reference_material.md └── resource_recommendation.md ├── Datatypes ├── README.md ├── dict.md ├── list.md ├── set.md ├── string.md └── tuple.md ├── Exception └── README.md ├── File-Directory ├── README.md ├── binary_file_io.md ├── os.md └── text_file_io.md ├── Function ├── README.md ├── func_definition.md └── func_parameter.md ├── Functional ├── README.md ├── anonymous_func.md ├── closure.md ├── decorator.md ├── high_order_func.md ├── map_reduce_filter.md └── partial.md ├── HTTP ├── HTTP.md ├── README.md └── Requests.md ├── LICENSE ├── PYTHONroadmap.png ├── Process-Thread-Coroutine ├── README.md ├── coroutine.md ├── process.md ├── thread.md └── threadlocal.md ├── README.md ├── Regular-Expressions ├── README.md └── re.md ├── SUMMARY.md ├── Standard-Modules ├── README.md ├── argparse.md ├── base64.md ├── collections.md ├── datetime.md ├── hashlib.md ├── hmac.md └── itertools.md ├── Testing └── README.md ├── Third-Party-Modules ├── README.md ├── celery.md └── click.md ├── book.json ├── config.json ├── cover.png └── cover ├── background.jpg ├── cover.png └── logo.png /.gitattributes: -------------------------------------------------------------------------------- 1 | *.md linguist-language=Python 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/* 3 | *.py[cod] 4 | .Ulysses* 5 | _book 6 | node_modules/* 7 | -------------------------------------------------------------------------------- /Advanced-Features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Advanced-Features/README.md -------------------------------------------------------------------------------- /Advanced-Features/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Advanced-Features/context.md -------------------------------------------------------------------------------- /Advanced-Features/generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Advanced-Features/generator.md -------------------------------------------------------------------------------- /Advanced-Features/iterator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Advanced-Features/iterator.md -------------------------------------------------------------------------------- /Basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Basic/README.md -------------------------------------------------------------------------------- /Basic/character_encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Basic/character_encoding.md -------------------------------------------------------------------------------- /Basic/input_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Basic/input_output.md -------------------------------------------------------------------------------- /Class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Class/README.md -------------------------------------------------------------------------------- /Class/class_and_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Class/class_and_object.md -------------------------------------------------------------------------------- /Class/inheritance_and_polymorphism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Class/inheritance_and_polymorphism.md -------------------------------------------------------------------------------- /Class/magic_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Class/magic_method.md -------------------------------------------------------------------------------- /Class/metaclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Class/metaclass.md -------------------------------------------------------------------------------- /Class/method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Class/method.md -------------------------------------------------------------------------------- /Class/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Class/property.md -------------------------------------------------------------------------------- /Class/singleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Class/singleton.md -------------------------------------------------------------------------------- /Class/slots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Class/slots.md -------------------------------------------------------------------------------- /Class/super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Class/super.md -------------------------------------------------------------------------------- /Conclusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Conclusion/README.md -------------------------------------------------------------------------------- /Conclusion/reference_material.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Conclusion/reference_material.md -------------------------------------------------------------------------------- /Conclusion/resource_recommendation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Conclusion/resource_recommendation.md -------------------------------------------------------------------------------- /Datatypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Datatypes/README.md -------------------------------------------------------------------------------- /Datatypes/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Datatypes/dict.md -------------------------------------------------------------------------------- /Datatypes/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Datatypes/list.md -------------------------------------------------------------------------------- /Datatypes/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Datatypes/set.md -------------------------------------------------------------------------------- /Datatypes/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Datatypes/string.md -------------------------------------------------------------------------------- /Datatypes/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Datatypes/tuple.md -------------------------------------------------------------------------------- /Exception/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Exception/README.md -------------------------------------------------------------------------------- /File-Directory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/File-Directory/README.md -------------------------------------------------------------------------------- /File-Directory/binary_file_io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/File-Directory/binary_file_io.md -------------------------------------------------------------------------------- /File-Directory/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/File-Directory/os.md -------------------------------------------------------------------------------- /File-Directory/text_file_io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/File-Directory/text_file_io.md -------------------------------------------------------------------------------- /Function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Function/README.md -------------------------------------------------------------------------------- /Function/func_definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Function/func_definition.md -------------------------------------------------------------------------------- /Function/func_parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Function/func_parameter.md -------------------------------------------------------------------------------- /Functional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Functional/README.md -------------------------------------------------------------------------------- /Functional/anonymous_func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Functional/anonymous_func.md -------------------------------------------------------------------------------- /Functional/closure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Functional/closure.md -------------------------------------------------------------------------------- /Functional/decorator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Functional/decorator.md -------------------------------------------------------------------------------- /Functional/high_order_func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Functional/high_order_func.md -------------------------------------------------------------------------------- /Functional/map_reduce_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Functional/map_reduce_filter.md -------------------------------------------------------------------------------- /Functional/partial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Functional/partial.md -------------------------------------------------------------------------------- /HTTP/HTTP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/HTTP/HTTP.md -------------------------------------------------------------------------------- /HTTP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/HTTP/README.md -------------------------------------------------------------------------------- /HTTP/Requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/HTTP/Requests.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/LICENSE -------------------------------------------------------------------------------- /PYTHONroadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/PYTHONroadmap.png -------------------------------------------------------------------------------- /Process-Thread-Coroutine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Process-Thread-Coroutine/README.md -------------------------------------------------------------------------------- /Process-Thread-Coroutine/coroutine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Process-Thread-Coroutine/coroutine.md -------------------------------------------------------------------------------- /Process-Thread-Coroutine/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Process-Thread-Coroutine/process.md -------------------------------------------------------------------------------- /Process-Thread-Coroutine/thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Process-Thread-Coroutine/thread.md -------------------------------------------------------------------------------- /Process-Thread-Coroutine/threadlocal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Process-Thread-Coroutine/threadlocal.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/README.md -------------------------------------------------------------------------------- /Regular-Expressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Regular-Expressions/README.md -------------------------------------------------------------------------------- /Regular-Expressions/re.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Regular-Expressions/re.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /Standard-Modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Standard-Modules/README.md -------------------------------------------------------------------------------- /Standard-Modules/argparse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Standard-Modules/argparse.md -------------------------------------------------------------------------------- /Standard-Modules/base64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Standard-Modules/base64.md -------------------------------------------------------------------------------- /Standard-Modules/collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Standard-Modules/collections.md -------------------------------------------------------------------------------- /Standard-Modules/datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Standard-Modules/datetime.md -------------------------------------------------------------------------------- /Standard-Modules/hashlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Standard-Modules/hashlib.md -------------------------------------------------------------------------------- /Standard-Modules/hmac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Standard-Modules/hmac.md -------------------------------------------------------------------------------- /Standard-Modules/itertools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Standard-Modules/itertools.md -------------------------------------------------------------------------------- /Testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Testing/README.md -------------------------------------------------------------------------------- /Third-Party-Modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Third-Party-Modules/README.md -------------------------------------------------------------------------------- /Third-Party-Modules/celery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Third-Party-Modules/celery.md -------------------------------------------------------------------------------- /Third-Party-Modules/click.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/Third-Party-Modules/click.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/book.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/config.json -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/cover.png -------------------------------------------------------------------------------- /cover/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/cover/background.jpg -------------------------------------------------------------------------------- /cover/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/cover/cover.png -------------------------------------------------------------------------------- /cover/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-funny/explore-python/HEAD/cover/logo.png --------------------------------------------------------------------------------