├── .gitignore ├── README.md ├── hackathons ├── BaseGame.py ├── README.md ├── bot │ ├── README.md │ ├── bot.py │ ├── command_handler │ │ ├── __init__.py │ │ ├── calc.py │ │ ├── calories_calculator.py │ │ ├── message.py │ │ ├── roll.py │ │ ├── sample.py │ │ ├── stackoverflow.py │ │ ├── viselica.py │ │ └── weather.py │ ├── command_pool.py │ ├── food_base.json │ └── tests │ │ ├── __init__.py │ │ └── command_handler │ │ ├── Test_message.py │ │ └── test_sample.py ├── games │ ├── README.md │ └── example.py └── tester.py ├── homeworks ├── README.md ├── async_file_storage │ └── README.md ├── blog │ └── README.md ├── blog_platform │ └── README.md ├── dir_dict │ └── README.md ├── grep │ ├── Makefile │ ├── README.md │ ├── grep.py │ └── tests │ │ ├── __init__.py │ │ └── test_grep.py ├── log_parse │ ├── Makefile │ ├── README.md │ ├── log.log │ ├── log_parse.py │ ├── tests.py │ └── tests │ │ ├── fifth_test.json │ │ ├── first_test.json │ │ ├── fourth_test.json │ │ ├── second_test.json │ │ ├── seventh_test.json │ │ ├── sixth_test.json │ │ └── third_test.json ├── minigolf │ ├── Makefile │ ├── README.md │ ├── minigolf.py │ └── tests │ │ ├── __init__.py │ │ └── test_minigolf.py ├── profile │ └── README.md ├── task_queue │ ├── Makefile │ ├── README.md │ ├── server.py │ └── tests │ │ ├── __init__.py │ │ └── test_server.py ├── task_tracker_django │ └── README.md ├── text_history │ ├── Makefile │ ├── README.md │ ├── tests │ │ ├── __init__.py │ │ └── test_text_history.py │ └── text_history.py └── whenthen │ └── README.md ├── live ├── 2018-04-06 │ ├── action.py │ ├── config.yaml │ ├── consumable.py │ ├── limit.py │ ├── repository.py │ ├── resource.py │ └── tests │ │ ├── __init__.py │ │ ├── test_action.py │ │ ├── test_limit.py │ │ ├── test_repository.py │ │ └── test_resource.py ├── 2018-05-23 │ ├── client.py │ ├── proxy.py │ ├── server.py │ └── test_server.py └── 2018-10-19 │ ├── notes │ ├── __init__.py │ ├── access.py │ ├── account.py │ ├── note.py │ └── storage.py │ └── tests │ ├── __init__.py │ └── notes │ ├── __init__.py │ ├── test_account.py │ └── test_storage.py └── talks ├── 01_intro └── main.ipynb ├── 02_data_structures └── notebook.ipynb ├── 03_oop ├── import_sample │ ├── geometry │ │ ├── __init__.py │ │ ├── circle.py │ │ └── square.py │ └── predicates.py ├── main.ipynb └── test_sample │ ├── interval.py │ └── tests │ ├── __init__.py │ └── test_interval.py ├── 04_io ├── VENUS.bmp ├── http_server.py └── main.ipynb ├── 05_meta ├── fotr.ee.elrond.jpg └── main.ipynb ├── 06_db ├── mysql_example.py └── лекция 6.1.pptx ├── 07_async ├── main.ipynb └── server.py └── 08_django └── 08-django.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/README.md -------------------------------------------------------------------------------- /hackathons/BaseGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/BaseGame.py -------------------------------------------------------------------------------- /hackathons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/README.md -------------------------------------------------------------------------------- /hackathons/bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/README.md -------------------------------------------------------------------------------- /hackathons/bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/bot.py -------------------------------------------------------------------------------- /hackathons/bot/command_handler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/command_handler/__init__.py -------------------------------------------------------------------------------- /hackathons/bot/command_handler/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/command_handler/calc.py -------------------------------------------------------------------------------- /hackathons/bot/command_handler/calories_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/command_handler/calories_calculator.py -------------------------------------------------------------------------------- /hackathons/bot/command_handler/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/command_handler/message.py -------------------------------------------------------------------------------- /hackathons/bot/command_handler/roll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/command_handler/roll.py -------------------------------------------------------------------------------- /hackathons/bot/command_handler/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/command_handler/sample.py -------------------------------------------------------------------------------- /hackathons/bot/command_handler/stackoverflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/command_handler/stackoverflow.py -------------------------------------------------------------------------------- /hackathons/bot/command_handler/viselica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/command_handler/viselica.py -------------------------------------------------------------------------------- /hackathons/bot/command_handler/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/command_handler/weather.py -------------------------------------------------------------------------------- /hackathons/bot/command_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/command_pool.py -------------------------------------------------------------------------------- /hackathons/bot/food_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/food_base.json -------------------------------------------------------------------------------- /hackathons/bot/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hackathons/bot/tests/command_handler/Test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/tests/command_handler/Test_message.py -------------------------------------------------------------------------------- /hackathons/bot/tests/command_handler/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/bot/tests/command_handler/test_sample.py -------------------------------------------------------------------------------- /hackathons/games/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/games/README.md -------------------------------------------------------------------------------- /hackathons/games/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/games/example.py -------------------------------------------------------------------------------- /hackathons/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/hackathons/tester.py -------------------------------------------------------------------------------- /homeworks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/README.md -------------------------------------------------------------------------------- /homeworks/async_file_storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/async_file_storage/README.md -------------------------------------------------------------------------------- /homeworks/blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/blog/README.md -------------------------------------------------------------------------------- /homeworks/blog_platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/blog_platform/README.md -------------------------------------------------------------------------------- /homeworks/dir_dict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/dir_dict/README.md -------------------------------------------------------------------------------- /homeworks/grep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/grep/Makefile -------------------------------------------------------------------------------- /homeworks/grep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/grep/README.md -------------------------------------------------------------------------------- /homeworks/grep/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/grep/grep.py -------------------------------------------------------------------------------- /homeworks/grep/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeworks/grep/tests/test_grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/grep/tests/test_grep.py -------------------------------------------------------------------------------- /homeworks/log_parse/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | python3.6 tests.py 4 | -------------------------------------------------------------------------------- /homeworks/log_parse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/README.md -------------------------------------------------------------------------------- /homeworks/log_parse/log.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/log.log -------------------------------------------------------------------------------- /homeworks/log_parse/log_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/log_parse.py -------------------------------------------------------------------------------- /homeworks/log_parse/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/tests.py -------------------------------------------------------------------------------- /homeworks/log_parse/tests/fifth_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/tests/fifth_test.json -------------------------------------------------------------------------------- /homeworks/log_parse/tests/first_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/tests/first_test.json -------------------------------------------------------------------------------- /homeworks/log_parse/tests/fourth_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/tests/fourth_test.json -------------------------------------------------------------------------------- /homeworks/log_parse/tests/second_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/tests/second_test.json -------------------------------------------------------------------------------- /homeworks/log_parse/tests/seventh_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/tests/seventh_test.json -------------------------------------------------------------------------------- /homeworks/log_parse/tests/sixth_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/tests/sixth_test.json -------------------------------------------------------------------------------- /homeworks/log_parse/tests/third_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/log_parse/tests/third_test.json -------------------------------------------------------------------------------- /homeworks/minigolf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/minigolf/Makefile -------------------------------------------------------------------------------- /homeworks/minigolf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/minigolf/README.md -------------------------------------------------------------------------------- /homeworks/minigolf/minigolf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/minigolf/minigolf.py -------------------------------------------------------------------------------- /homeworks/minigolf/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeworks/minigolf/tests/test_minigolf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/minigolf/tests/test_minigolf.py -------------------------------------------------------------------------------- /homeworks/profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/profile/README.md -------------------------------------------------------------------------------- /homeworks/task_queue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/task_queue/Makefile -------------------------------------------------------------------------------- /homeworks/task_queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/task_queue/README.md -------------------------------------------------------------------------------- /homeworks/task_queue/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/task_queue/server.py -------------------------------------------------------------------------------- /homeworks/task_queue/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeworks/task_queue/tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/task_queue/tests/test_server.py -------------------------------------------------------------------------------- /homeworks/task_tracker_django/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/task_tracker_django/README.md -------------------------------------------------------------------------------- /homeworks/text_history/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/text_history/Makefile -------------------------------------------------------------------------------- /homeworks/text_history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/text_history/README.md -------------------------------------------------------------------------------- /homeworks/text_history/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeworks/text_history/tests/test_text_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/text_history/tests/test_text_history.py -------------------------------------------------------------------------------- /homeworks/text_history/text_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/text_history/text_history.py -------------------------------------------------------------------------------- /homeworks/whenthen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/homeworks/whenthen/README.md -------------------------------------------------------------------------------- /live/2018-04-06/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/action.py -------------------------------------------------------------------------------- /live/2018-04-06/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/config.yaml -------------------------------------------------------------------------------- /live/2018-04-06/consumable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/consumable.py -------------------------------------------------------------------------------- /live/2018-04-06/limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/limit.py -------------------------------------------------------------------------------- /live/2018-04-06/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/repository.py -------------------------------------------------------------------------------- /live/2018-04-06/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/resource.py -------------------------------------------------------------------------------- /live/2018-04-06/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/tests/__init__.py -------------------------------------------------------------------------------- /live/2018-04-06/tests/test_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/tests/test_action.py -------------------------------------------------------------------------------- /live/2018-04-06/tests/test_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/tests/test_limit.py -------------------------------------------------------------------------------- /live/2018-04-06/tests/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/tests/test_repository.py -------------------------------------------------------------------------------- /live/2018-04-06/tests/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-04-06/tests/test_resource.py -------------------------------------------------------------------------------- /live/2018-05-23/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-05-23/client.py -------------------------------------------------------------------------------- /live/2018-05-23/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-05-23/proxy.py -------------------------------------------------------------------------------- /live/2018-05-23/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-05-23/server.py -------------------------------------------------------------------------------- /live/2018-05-23/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-05-23/test_server.py -------------------------------------------------------------------------------- /live/2018-10-19/notes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live/2018-10-19/notes/access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-10-19/notes/access.py -------------------------------------------------------------------------------- /live/2018-10-19/notes/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-10-19/notes/account.py -------------------------------------------------------------------------------- /live/2018-10-19/notes/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-10-19/notes/note.py -------------------------------------------------------------------------------- /live/2018-10-19/notes/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-10-19/notes/storage.py -------------------------------------------------------------------------------- /live/2018-10-19/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-10-19/tests/__init__.py -------------------------------------------------------------------------------- /live/2018-10-19/tests/notes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live/2018-10-19/tests/notes/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-10-19/tests/notes/test_account.py -------------------------------------------------------------------------------- /live/2018-10-19/tests/notes/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/live/2018-10-19/tests/notes/test_storage.py -------------------------------------------------------------------------------- /talks/01_intro/main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/01_intro/main.ipynb -------------------------------------------------------------------------------- /talks/02_data_structures/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/02_data_structures/notebook.ipynb -------------------------------------------------------------------------------- /talks/03_oop/import_sample/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/03_oop/import_sample/geometry/__init__.py -------------------------------------------------------------------------------- /talks/03_oop/import_sample/geometry/circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/03_oop/import_sample/geometry/circle.py -------------------------------------------------------------------------------- /talks/03_oop/import_sample/geometry/square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/03_oop/import_sample/geometry/square.py -------------------------------------------------------------------------------- /talks/03_oop/import_sample/predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/03_oop/import_sample/predicates.py -------------------------------------------------------------------------------- /talks/03_oop/main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/03_oop/main.ipynb -------------------------------------------------------------------------------- /talks/03_oop/test_sample/interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/03_oop/test_sample/interval.py -------------------------------------------------------------------------------- /talks/03_oop/test_sample/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /talks/03_oop/test_sample/tests/test_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/03_oop/test_sample/tests/test_interval.py -------------------------------------------------------------------------------- /talks/04_io/VENUS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/04_io/VENUS.bmp -------------------------------------------------------------------------------- /talks/04_io/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/04_io/http_server.py -------------------------------------------------------------------------------- /talks/04_io/main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/04_io/main.ipynb -------------------------------------------------------------------------------- /talks/05_meta/fotr.ee.elrond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/05_meta/fotr.ee.elrond.jpg -------------------------------------------------------------------------------- /talks/05_meta/main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/05_meta/main.ipynb -------------------------------------------------------------------------------- /talks/06_db/mysql_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/06_db/mysql_example.py -------------------------------------------------------------------------------- /talks/06_db/лекция 6.1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/06_db/лекция 6.1.pptx -------------------------------------------------------------------------------- /talks/07_async/main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/07_async/main.ipynb -------------------------------------------------------------------------------- /talks/07_async/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/07_async/server.py -------------------------------------------------------------------------------- /talks/08_django/08-django.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VadimPushtaev/applied-python/HEAD/talks/08_django/08-django.pdf --------------------------------------------------------------------------------