├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── advanced-python ├── Introduction to Advanced Python.key ├── Introduction to Advanced Python.pdf ├── README.md └── exercises │ ├── cache-decorator.md │ ├── decorator_1.py │ └── decorator_1_solution.py ├── intro-to-python ├── 01-intro.md ├── 02-the-language.md ├── 03-the-style.md ├── 04-the-tooling.md ├── 05-exercises.md ├── README.md ├── examples │ └── export.py └── exercises │ ├── render_template │ ├── README.md │ ├── hints.md │ ├── louis.md │ ├── render-template.py │ └── {firstname}.template.md │ └── todo-api.md ├── intro-to-sqlalchemy ├── README.md ├── img │ └── sqla_arch_small.png ├── simplest_example.py └── simplest_relationship_example.py ├── python-antipatterns.md └── where-to-mock ├── a.py ├── b.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | 3 | env 4 | temp 5 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/README.md -------------------------------------------------------------------------------- /advanced-python/Introduction to Advanced Python.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/advanced-python/Introduction to Advanced Python.key -------------------------------------------------------------------------------- /advanced-python/Introduction to Advanced Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/advanced-python/Introduction to Advanced Python.pdf -------------------------------------------------------------------------------- /advanced-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/advanced-python/README.md -------------------------------------------------------------------------------- /advanced-python/exercises/cache-decorator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/advanced-python/exercises/cache-decorator.md -------------------------------------------------------------------------------- /advanced-python/exercises/decorator_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/advanced-python/exercises/decorator_1.py -------------------------------------------------------------------------------- /advanced-python/exercises/decorator_1_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/advanced-python/exercises/decorator_1_solution.py -------------------------------------------------------------------------------- /intro-to-python/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/01-intro.md -------------------------------------------------------------------------------- /intro-to-python/02-the-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/02-the-language.md -------------------------------------------------------------------------------- /intro-to-python/03-the-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/03-the-style.md -------------------------------------------------------------------------------- /intro-to-python/04-the-tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/04-the-tooling.md -------------------------------------------------------------------------------- /intro-to-python/05-exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/05-exercises.md -------------------------------------------------------------------------------- /intro-to-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/README.md -------------------------------------------------------------------------------- /intro-to-python/examples/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/examples/export.py -------------------------------------------------------------------------------- /intro-to-python/exercises/render_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/exercises/render_template/README.md -------------------------------------------------------------------------------- /intro-to-python/exercises/render_template/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/exercises/render_template/hints.md -------------------------------------------------------------------------------- /intro-to-python/exercises/render_template/louis.md: -------------------------------------------------------------------------------- 1 | # Interview for louis 2 | 3 | Date: 2020-11-25 12:23:46.231587 4 | 5 | LinkedIn : https:// 6 | -------------------------------------------------------------------------------- /intro-to-python/exercises/render_template/render-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/exercises/render_template/render-template.py -------------------------------------------------------------------------------- /intro-to-python/exercises/render_template/{firstname}.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/exercises/render_template/{firstname}.template.md -------------------------------------------------------------------------------- /intro-to-python/exercises/todo-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-python/exercises/todo-api.md -------------------------------------------------------------------------------- /intro-to-sqlalchemy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-sqlalchemy/README.md -------------------------------------------------------------------------------- /intro-to-sqlalchemy/img/sqla_arch_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-sqlalchemy/img/sqla_arch_small.png -------------------------------------------------------------------------------- /intro-to-sqlalchemy/simplest_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-sqlalchemy/simplest_example.py -------------------------------------------------------------------------------- /intro-to-sqlalchemy/simplest_relationship_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/intro-to-sqlalchemy/simplest_relationship_example.py -------------------------------------------------------------------------------- /python-antipatterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/python-antipatterns.md -------------------------------------------------------------------------------- /where-to-mock/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/where-to-mock/a.py -------------------------------------------------------------------------------- /where-to-mock/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/where-to-mock/b.py -------------------------------------------------------------------------------- /where-to-mock/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/python-education/HEAD/where-to-mock/test.py --------------------------------------------------------------------------------