├── .gitignore ├── LICENSE ├── README.md ├── code ├── a_dicts_for_perf.py ├── b__slots__.py ├── c_merge_dicts.py ├── d_yield_away.py ├── e_lambdas.py ├── f_custom_iteration.py ├── g_comprehensions.py ├── h_json.py ├── i_slicing.py ├── i_slicing_support.py ├── j_yield_from.py └── slicing_db.sqlite └── reademe_resources ├── course-player.png └── webcast-player.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/README.md -------------------------------------------------------------------------------- /code/a_dicts_for_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/a_dicts_for_perf.py -------------------------------------------------------------------------------- /code/b__slots__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/b__slots__.py -------------------------------------------------------------------------------- /code/c_merge_dicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/c_merge_dicts.py -------------------------------------------------------------------------------- /code/d_yield_away.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/d_yield_away.py -------------------------------------------------------------------------------- /code/e_lambdas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/e_lambdas.py -------------------------------------------------------------------------------- /code/f_custom_iteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/f_custom_iteration.py -------------------------------------------------------------------------------- /code/g_comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/g_comprehensions.py -------------------------------------------------------------------------------- /code/h_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/h_json.py -------------------------------------------------------------------------------- /code/i_slicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/i_slicing.py -------------------------------------------------------------------------------- /code/i_slicing_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/i_slicing_support.py -------------------------------------------------------------------------------- /code/j_yield_from.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/j_yield_from.py -------------------------------------------------------------------------------- /code/slicing_db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/code/slicing_db.sqlite -------------------------------------------------------------------------------- /reademe_resources/course-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/reademe_resources/course-player.png -------------------------------------------------------------------------------- /reademe_resources/webcast-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeckennedy/ten-tips-for-pythonic-code-jetbrains-webcast/HEAD/reademe_resources/webcast-player.png --------------------------------------------------------------------------------