├── CNAME ├── Makefile ├── README.md ├── __slots__magic.rst ├── _static ├── cover.pdf ├── cover.png ├── custom.css └── epub.css ├── _templates └── breadcrumbs.html ├── args_and_kwargs.rst ├── classes.rst ├── collections.rst ├── comprehensions.rst ├── conf.py ├── context_managers.rst ├── coroutines.rst ├── debugging.rst ├── decorators.rst ├── enumerate.rst ├── exceptions.rst ├── flaskstyle.sty ├── for_-_else.rst ├── function_caching.rst ├── generators.rst ├── global_&_return.rst ├── index.rst ├── lambdas.rst ├── make.bat ├── map_filter.rst ├── mutation.rst ├── object_introspection.rst ├── one_liners.rst ├── open_function.rst ├── params.json ├── python_c_extension.rst ├── python_modules_in_c.rst ├── set_-_data_structure.rst ├── targeting_python_2_3.rst ├── ternary_operators.rst ├── virtual_environment.rst └── zip.rst /CNAME: -------------------------------------------------------------------------------- 1 | book.pythontips.com 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/README.md -------------------------------------------------------------------------------- /__slots__magic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/__slots__magic.rst -------------------------------------------------------------------------------- /_static/cover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/_static/cover.pdf -------------------------------------------------------------------------------- /_static/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/_static/cover.png -------------------------------------------------------------------------------- /_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/_static/custom.css -------------------------------------------------------------------------------- /_static/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/_static/epub.css -------------------------------------------------------------------------------- /_templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/_templates/breadcrumbs.html -------------------------------------------------------------------------------- /args_and_kwargs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/args_and_kwargs.rst -------------------------------------------------------------------------------- /classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/classes.rst -------------------------------------------------------------------------------- /collections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/collections.rst -------------------------------------------------------------------------------- /comprehensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/comprehensions.rst -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/conf.py -------------------------------------------------------------------------------- /context_managers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/context_managers.rst -------------------------------------------------------------------------------- /coroutines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/coroutines.rst -------------------------------------------------------------------------------- /debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/debugging.rst -------------------------------------------------------------------------------- /decorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/decorators.rst -------------------------------------------------------------------------------- /enumerate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/enumerate.rst -------------------------------------------------------------------------------- /exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/exceptions.rst -------------------------------------------------------------------------------- /flaskstyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/flaskstyle.sty -------------------------------------------------------------------------------- /for_-_else.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/for_-_else.rst -------------------------------------------------------------------------------- /function_caching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/function_caching.rst -------------------------------------------------------------------------------- /generators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/generators.rst -------------------------------------------------------------------------------- /global_&_return.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/global_&_return.rst -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/index.rst -------------------------------------------------------------------------------- /lambdas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/lambdas.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/make.bat -------------------------------------------------------------------------------- /map_filter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/map_filter.rst -------------------------------------------------------------------------------- /mutation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/mutation.rst -------------------------------------------------------------------------------- /object_introspection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/object_introspection.rst -------------------------------------------------------------------------------- /one_liners.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/one_liners.rst -------------------------------------------------------------------------------- /open_function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/open_function.rst -------------------------------------------------------------------------------- /params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/params.json -------------------------------------------------------------------------------- /python_c_extension.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/python_c_extension.rst -------------------------------------------------------------------------------- /python_modules_in_c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/python_modules_in_c.rst -------------------------------------------------------------------------------- /set_-_data_structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/set_-_data_structure.rst -------------------------------------------------------------------------------- /targeting_python_2_3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/targeting_python_2_3.rst -------------------------------------------------------------------------------- /ternary_operators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/ternary_operators.rst -------------------------------------------------------------------------------- /virtual_environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/virtual_environment.rst -------------------------------------------------------------------------------- /zip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasoob/intermediatePython/HEAD/zip.rst --------------------------------------------------------------------------------