├── .gitignore ├── README.md ├── books-tutorials └── pytest-book │ ├── README.md │ └── code │ ├── appendices │ ├── outcomes │ │ └── test_outcomes.py │ ├── packaging │ │ ├── some_module_proj │ │ │ ├── setup.py │ │ │ └── some_module.py │ │ ├── some_package_proj │ │ │ ├── setup.py │ │ │ └── src │ │ │ │ └── some_package │ │ │ │ ├── __init__.py │ │ │ │ └── some_module.py │ │ └── some_package_proj_v2 │ │ │ ├── CHANGELOG.rst │ │ │ ├── LICENSE │ │ │ ├── setup.py │ │ │ └── src │ │ │ └── some_package │ │ │ ├── __init__.py │ │ │ └── some_module.py │ ├── xdist │ │ ├── test_not_parallel.py │ │ └── test_parallel.py │ └── xunit │ │ ├── test_mixed_fixtures.py │ │ └── test_xUnit_fixtures.py │ ├── ch1 │ ├── .cache │ │ └── v │ │ │ └── cache │ │ │ └── lastfailed │ ├── tasks │ │ ├── test_four.py │ │ └── test_three.py │ ├── test_one.py │ └── test_two.py │ ├── ch2 │ └── tasks_proj │ │ ├── CHANGELOG.rst │ │ └── tests │ │ ├── .cache │ │ └── v │ │ │ └── cache │ │ │ └── lastfailed │ │ ├── func │ │ ├── __init__.py │ │ ├── test_add.py │ │ ├── test_add_variety.py │ │ ├── test_api_exceptions.py │ │ ├── test_count_list_delete.py │ │ ├── test_unique_id_1.py │ │ ├── test_unique_id_2.py │ │ ├── test_unique_id_3.py │ │ └── test_unique_id_4.py │ │ ├── pytest.ini │ │ └── unit │ │ ├── __init__.py │ │ ├── test_task.py │ │ └── test_task_fail.py │ ├── ch3 │ ├── .cache │ │ └── v │ │ │ └── cache │ │ │ └── lastfailed │ ├── a │ │ └── tasks_proj │ │ │ ├── CHANGELOG.rst │ │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── func │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ ├── test_add_variety.py │ │ │ ├── test_api_exceptions.py │ │ │ └── test_unique_id.py │ │ │ ├── pytest.ini │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_task.py │ ├── b │ │ └── tasks_proj │ │ │ ├── CHANGELOG.rst │ │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── func │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ ├── test_add_variety.py │ │ │ ├── test_add_variety2.py │ │ │ ├── test_api_exceptions.py │ │ │ └── test_unique_id.py │ │ │ ├── pytest.ini │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_task.py │ ├── c │ │ └── tasks_proj │ │ │ ├── .cache │ │ │ └── v │ │ │ │ └── cache │ │ │ │ └── lastfailed │ │ │ ├── CHANGELOG.rst │ │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── func │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ ├── test_add_variety.py │ │ │ ├── test_add_variety2.py │ │ │ ├── test_api_exceptions.py │ │ │ └── test_unique_id.py │ │ │ ├── pytest.ini │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_task.py │ ├── exercises │ │ ├── .cache │ │ │ └── v │ │ │ │ └── cache │ │ │ │ └── lastfailed │ │ └── test_count_list_delete.py │ ├── test_autouse.py │ ├── test_fixtures.py │ ├── test_rename_fixture.py │ └── test_scope.py │ ├── ch4 │ ├── authors │ │ ├── conftest.py │ │ └── test_authors.py │ ├── cache │ │ ├── .cache │ │ │ └── v │ │ │ │ ├── cache │ │ │ │ └── lastfailed │ │ │ │ └── duration │ │ │ │ └── testdurations │ │ ├── test_few_failures.py │ │ ├── test_pass_fail.py │ │ ├── test_slower.py │ │ └── test_slower_2.py │ ├── cap │ │ ├── test_capfd.py │ │ └── test_capsys.py │ ├── dt │ │ ├── 1 │ │ │ └── unnecessary_math.py │ │ ├── 2 │ │ │ └── unnecessary_math.py │ │ └── 3 │ │ │ ├── conftest.py │ │ │ └── unnecessary_math.py │ ├── monkey │ │ ├── cheese.py │ │ ├── test_cheese.py │ │ └── test_monkey.py │ ├── pytestconfig │ │ ├── conftest.py │ │ └── test_config.py │ ├── test_tmpdir.py │ └── test_warnings.py │ ├── ch5 │ ├── a │ │ └── tasks_proj │ │ │ ├── CHANGELOG.rst │ │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── func │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ ├── test_add_variety.py │ │ │ ├── test_add_variety2.py │ │ │ ├── test_api_exceptions.py │ │ │ └── test_unique_id.py │ │ │ ├── pytest.ini │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_task.py │ ├── b │ │ └── tasks_proj │ │ │ ├── CHANGELOG.rst │ │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── func │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ ├── test_add_variety.py │ │ │ ├── test_add_variety2.py │ │ │ ├── test_api_exceptions.py │ │ │ └── test_unique_id.py │ │ │ ├── pytest.ini │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_task.py │ ├── c │ │ └── tasks_proj │ │ │ ├── CHANGELOG.rst │ │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── func │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ ├── test_add_variety.py │ │ │ ├── test_add_variety2.py │ │ │ ├── test_api_exceptions.py │ │ │ └── test_unique_id.py │ │ │ ├── pytest.ini │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_task.py │ └── pytest-nice │ │ ├── LICENSE │ │ ├── pytest_nice.py │ │ ├── setup.py │ │ └── tests │ │ ├── conftest.py │ │ └── test_nice.py │ ├── ch6 │ ├── a │ │ └── tasks_proj │ │ │ ├── CHANGELOG.rst │ │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── func │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ ├── test_add_variety.py │ │ │ ├── test_add_variety2.py │ │ │ ├── test_api_exceptions.py │ │ │ └── test_unique_id.py │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_task.py │ ├── b │ │ └── tasks_proj │ │ │ ├── CHANGELOG.rst │ │ │ └── tests │ │ │ ├── conftest.py │ │ │ ├── func │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ ├── test_add_variety.py │ │ │ ├── test_add_variety2.py │ │ │ ├── test_api_exceptions.py │ │ │ └── test_unique_id.py │ │ │ ├── pytest.ini │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_task.py │ ├── dups │ │ ├── a │ │ │ └── test_foo.py │ │ └── b │ │ │ └── test_foo.py │ ├── dups_fixed │ │ ├── a │ │ │ ├── __init__.py │ │ │ └── test_foo.py │ │ └── b │ │ │ ├── __init__.py │ │ │ └── test_foo.py │ └── format │ │ ├── pytest.ini │ │ ├── setup.cfg │ │ └── tox.ini │ ├── ch7 │ ├── jenkins │ │ ├── run_tests.bash │ │ └── run_tests_cov.bash │ ├── tasks_proj_v2 │ │ ├── CHANGELOG.rst │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── setup.py │ │ ├── src │ │ │ └── tasks │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ ├── cli.py │ │ │ │ ├── config.py │ │ │ │ ├── tasksdb_pymongo.py │ │ │ │ └── tasksdb_tinydb.py │ │ ├── tests │ │ │ ├── conftest.py │ │ │ ├── func │ │ │ │ ├── __init__.py │ │ │ │ ├── test_add.py │ │ │ │ ├── test_add_variety.py │ │ │ │ ├── test_add_variety2.py │ │ │ │ ├── test_api_exceptions.py │ │ │ │ └── test_unique_id.py │ │ │ └── unit │ │ │ │ ├── __init__.py │ │ │ │ ├── test_cli.py │ │ │ │ └── test_task.py │ │ └── tox.ini │ └── unittest │ │ ├── conftest.py │ │ ├── test_delete_pytest.py │ │ ├── test_delete_unittest.py │ │ ├── test_delete_unittest_fix.py │ │ └── test_delete_unittest_fix2.py │ └── tasks_proj │ ├── CHANGELOG.rst │ ├── LICENSE │ ├── MANIFEST.in │ ├── setup.py │ ├── src │ └── tasks │ │ ├── __init__.py │ │ ├── api.py │ │ ├── cli.py │ │ ├── config.py │ │ ├── tasksdb_pymongo.py │ │ └── tasksdb_tinydb.py │ └── tests │ ├── conftest.py │ ├── func │ ├── __init__.py │ └── test_add.py │ ├── pytest.ini │ └── unit │ ├── __init__.py │ └── test_task.py ├── learning-code └── my-tests-pytest │ └── 01_oop_basics │ ├── conftest.py │ └── tests │ ├── test_task_1_1.py │ ├── test_task_1_1a.py │ ├── test_task_1_1b.py │ ├── test_task_1_1c.py │ ├── test_task_1_1d.py │ ├── test_task_1_1e.py │ ├── test_task_2_1.py │ ├── test_task_2_1a.py │ ├── test_task_2_1b.py │ ├── test_task_2_1c.py │ ├── test_task_2_1d.py │ ├── test_task_3_1.py │ └── test_task_3_1a.py └── talkpython-100-days ├── README.md ├── bites_todo ├── bite_085.py ├── bite_35.py ├── bite_39.py └── test_file_bite_39.txt ├── day001 └── pomodoro_timer.py ├── day002 ├── pomodoro_timer.py └── pomodoro_timer_run_animation.svg ├── day003 ├── pomodoro_timer.py └── pomodoro_timer_run_animation.svg ├── day004 ├── directors.py ├── directors_pybites.py └── movie_metadata.csv ├── day005 ├── beginner │ ├── bite_001.py │ └── bite_005.py └── intro │ ├── bite_101.py │ ├── bite_102.py │ ├── bite_103.py │ ├── bite_104.py │ ├── bite_105.py │ ├── bite_106.py │ ├── bite_107.py │ ├── bite_108.py │ ├── bite_109.py │ └── bite_110.py ├── day006 ├── Conference_test_data.csv └── parse_fcc_csv_report.py ├── day008 ├── beginner │ ├── bite_008.py │ ├── bite_015.py │ └── bite_021.py └── intermediate │ └── bite_089.py ├── day009 └── beginner │ ├── bite_016.py │ ├── bite_019.py │ ├── bite_026.py │ ├── bite_029.py │ ├── bite_032.py │ ├── bite_037.py │ ├── bite_038.py │ ├── bite_043.py │ └── bite_044.py ├── day011 └── beginner │ ├── bite_45.py │ ├── bite_46.py │ ├── bite_54.py │ ├── bite_55.py │ ├── bite_64.py │ └── bite_66.py ├── day012 └── beginner │ ├── bite_115.py │ ├── bite_68.py │ ├── bite_74.py │ ├── bite_77.py │ ├── bite_91.py │ └── bite_96.py ├── day014 └── rock_paper_scissors.py ├── day015 ├── battle-table.csv ├── beginner │ ├── bite_100.py │ ├── bite_117.py │ ├── bite_128.py │ ├── bite_130.py │ ├── bite_56.py │ ├── bite_80.py │ └── bite_83.py └── rock_paper_scissors_15_way.py ├── day016 ├── challenge_11.py └── intermediate │ ├── bite_003.py │ ├── bite_004.py │ ├── bite_006.py │ ├── bite_009.py │ ├── bite_014.py │ └── data_file.txt ├── day017 └── intermediate │ ├── bite_010.py │ ├── bite_012.py │ ├── bite_013.py │ ├── bite_017.py │ ├── bite_018.py │ └── bite_022.py ├── day018 └── intermediate │ ├── bite_025.py │ ├── bite_027.py │ ├── bite_028.py │ └── bite_033.py ├── day019 └── intermediate │ ├── bite_36.py │ └── bite_41.py ├── day020 ├── 20_days_report.png └── intermediate │ └── bite_065.py ├── day021 ├── intermediate │ └── bite_060.py ├── traffic_lights.py └── traffic_lights_animation.svg ├── day022 └── intermediate │ ├── bite_047.py │ ├── bite_048.py │ └── bite_057.py ├── day023 └── intermediate │ ├── bite_062.py │ ├── bite_070.py │ ├── bite_071.py │ ├── bite_072.py │ └── bite_079.py ├── day024 └── intermediate │ ├── bite_059.py │ ├── bite_078.py │ ├── bite_081.py │ └── bite_084.py ├── day025 └── intermediate │ ├── bite_086.py │ ├── bite_090.py │ ├── bite_095.py │ ├── bite_099.py │ ├── bite_113.py │ └── bite_114.py ├── day026 └── intermediate │ ├── bite_119.py │ ├── bite_120.py │ └── bite_122.py ├── day027 └── intermediate │ ├── bite_116.py │ ├── bite_118.py │ ├── bite_123.py │ ├── bite_125.py │ └── bite_127.py ├── day028 └── advanced │ ├── bite_002.py │ └── bite_011.py ├── day029 └── advanced │ ├── bite_020.py │ ├── bite_034.py │ ├── bite_042.py │ ├── bite_063.py │ ├── bite_069.py │ └── bite_088.py ├── day031 ├── pomodoro-2018-08-29.log └── pomodoro_timer.py ├── day032 └── advanced │ ├── bite_053.py │ └── bite_075.py ├── day034 └── intermediate │ ├── bite_111.py │ └── bite_129.py ├── day035 └── intermediate │ ├── bite_024.py │ └── bite_121.py ├── day036 ├── pomodoro-2018-09-03.log ├── pomodoro_db_schema.sql ├── pomodoro_db_stats.py ├── pomodoro_timer.py └── pomodoros_stats.db ├── day038 ├── data │ └── classic-rock-song-list.csv └── get_best_classic_rock.py ├── day039 └── move_tasks_to_check.py ├── day042 ├── all_marvel_movies.json ├── get_marvel_stats.py └── marvel-cinematic-universe.json ├── day045 └── search_talkpython.py ├── day046 └── move_tasks_to_check.py └── day048 ├── bite_049.py └── bite_097.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/README.md -------------------------------------------------------------------------------- /books-tutorials/pytest-book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/README.md -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/outcomes/test_outcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/outcomes/test_outcomes.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/packaging/some_module_proj/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/packaging/some_module_proj/setup.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/packaging/some_module_proj/some_module.py: -------------------------------------------------------------------------------- 1 | def some_func(): 2 | return 42 3 | -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/packaging/some_package_proj/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/packaging/some_package_proj/setup.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/packaging/some_package_proj/src/some_package/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/packaging/some_package_proj/src/some_package/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/packaging/some_package_proj/src/some_package/some_module.py: -------------------------------------------------------------------------------- 1 | def some_func(): 2 | return 42 3 | -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/packaging/some_package_proj_v2/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/packaging/some_package_proj_v2/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/packaging/some_package_proj_v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/packaging/some_package_proj_v2/LICENSE -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/packaging/some_package_proj_v2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/packaging/some_package_proj_v2/setup.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/packaging/some_package_proj_v2/src/some_package/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/packaging/some_package_proj_v2/src/some_package/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/packaging/some_package_proj_v2/src/some_package/some_module.py: -------------------------------------------------------------------------------- 1 | def some_func(): 2 | return 42 3 | -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/xdist/test_not_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/xdist/test_not_parallel.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/xdist/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/xdist/test_parallel.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/xunit/test_mixed_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/xunit/test_mixed_fixtures.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/appendices/xunit/test_xUnit_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/appendices/xunit/test_xUnit_fixtures.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch1/.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch1/.cache/v/cache/lastfailed -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch1/tasks/test_four.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch1/tasks/test_four.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch1/tasks/test_three.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch1/tasks/test_three.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch1/test_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch1/test_one.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch1/test_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch1/test_two.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/.cache/v/cache/lastfailed -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_add_variety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_add_variety.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_api_exceptions.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_count_list_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_count_list_delete.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_unique_id_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_unique_id_1.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_unique_id_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_unique_id_2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_unique_id_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_unique_id_3.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_unique_id_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/func/test_unique_id_4.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/pytest.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/unit/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/unit/test_task.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch2/tasks_proj/tests/unit/test_task_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch2/tasks_proj/tests/unit/test_task_fail.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/.cache/v/cache/lastfailed -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/a/tasks_proj/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/a/tasks_proj/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/func/test_add_variety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/func/test_add_variety.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/func/test_api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/func/test_api_exceptions.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/func/test_unique_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/func/test_unique_id.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/pytest.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/unit/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/a/tasks_proj/tests/unit/test_task.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/test_add_variety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/test_add_variety.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/test_add_variety2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/test_add_variety2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/test_api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/test_api_exceptions.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/test_unique_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/func/test_unique_id.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/pytest.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/unit/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/b/tasks_proj/tests/unit/test_task.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/.cache/v/cache/lastfailed -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/test_add_variety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/test_add_variety.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/test_add_variety2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/test_add_variety2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/test_api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/test_api_exceptions.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/test_unique_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/func/test_unique_id.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/pytest.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/unit/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/c/tasks_proj/tests/unit/test_task.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/exercises/.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/exercises/test_count_list_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/exercises/test_count_list_delete.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/test_autouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/test_autouse.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/test_fixtures.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/test_rename_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/test_rename_fixture.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch3/test_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch3/test_scope.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/authors/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/authors/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/authors/test_authors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/authors/test_authors.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/cache/.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/cache/.cache/v/cache/lastfailed -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/cache/.cache/v/duration/testdurations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/cache/.cache/v/duration/testdurations -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/cache/test_few_failures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/cache/test_few_failures.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/cache/test_pass_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/cache/test_pass_fail.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/cache/test_slower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/cache/test_slower.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/cache/test_slower_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/cache/test_slower_2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/cap/test_capfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/cap/test_capfd.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/cap/test_capsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/cap/test_capsys.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/dt/1/unnecessary_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/dt/1/unnecessary_math.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/dt/2/unnecessary_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/dt/2/unnecessary_math.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/dt/3/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/dt/3/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/dt/3/unnecessary_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/dt/3/unnecessary_math.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/monkey/cheese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/monkey/cheese.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/monkey/test_cheese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/monkey/test_cheese.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/monkey/test_monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/monkey/test_monkey.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/pytestconfig/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/pytestconfig/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/pytestconfig/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/pytestconfig/test_config.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/test_tmpdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/test_tmpdir.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch4/test_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch4/test_warnings.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/test_add_variety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/test_add_variety.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/test_add_variety2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/test_add_variety2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/test_api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/test_api_exceptions.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/test_unique_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/func/test_unique_id.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/pytest.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/unit/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/a/tasks_proj/tests/unit/test_task.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/test_add_variety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/test_add_variety.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/test_add_variety2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/test_add_variety2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/test_api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/test_api_exceptions.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/test_unique_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/func/test_unique_id.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/pytest.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/unit/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/b/tasks_proj/tests/unit/test_task.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/test_add_variety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/test_add_variety.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/test_add_variety2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/test_add_variety2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/test_api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/test_api_exceptions.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/test_unique_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/func/test_unique_id.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/pytest.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/unit/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/c/tasks_proj/tests/unit/test_task.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/pytest-nice/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/pytest-nice/LICENSE -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/pytest-nice/pytest_nice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/pytest-nice/pytest_nice.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/pytest-nice/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/pytest-nice/setup.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/pytest-nice/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/pytest-nice/tests/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch5/pytest-nice/tests/test_nice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch5/pytest-nice/tests/test_nice.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/a/tasks_proj/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/a/tasks_proj/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/test_add_variety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/test_add_variety.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/test_add_variety2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/test_add_variety2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/test_api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/test_api_exceptions.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/test_unique_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/func/test_unique_id.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/unit/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/a/tasks_proj/tests/unit/test_task.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/test_add_variety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/test_add_variety.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/test_add_variety2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/test_add_variety2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/test_api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/test_api_exceptions.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/test_unique_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/func/test_unique_id.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/pytest.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/unit/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/b/tasks_proj/tests/unit/test_task.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/dups/a/test_foo.py: -------------------------------------------------------------------------------- 1 | def test_a(): 2 | pass 3 | -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/dups/b/test_foo.py: -------------------------------------------------------------------------------- 1 | def test_b(): 2 | pass 3 | -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/dups_fixed/a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/dups_fixed/a/test_foo.py: -------------------------------------------------------------------------------- 1 | def test_a(): 2 | pass 3 | -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/dups_fixed/b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/dups_fixed/b/test_foo.py: -------------------------------------------------------------------------------- 1 | def test_b(): 2 | pass 3 | -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/format/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/format/pytest.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/format/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/format/setup.cfg -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch6/format/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch6/format/tox.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/jenkins/run_tests.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/jenkins/run_tests.bash -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/jenkins/run_tests_cov.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/jenkins/run_tests_cov.bash -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/LICENSE -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/MANIFEST.in -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/setup.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/api.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/cli.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/config.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/tasksdb_pymongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/tasksdb_pymongo.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/tasksdb_tinydb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/src/tasks/tasksdb_tinydb.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/test_add_variety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/test_add_variety.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/test_add_variety2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/test_add_variety2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/test_api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/test_api_exceptions.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/test_unique_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/func/test_unique_id.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/unit/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/unit/test_cli.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/unit/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tests/unit/test_task.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/tasks_proj_v2/tox.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/unittest/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/unittest/conftest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/unittest/test_delete_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/unittest/test_delete_pytest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/unittest/test_delete_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/unittest/test_delete_unittest.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/unittest/test_delete_unittest_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/unittest/test_delete_unittest_fix.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/ch7/unittest/test_delete_unittest_fix2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/ch7/unittest/test_delete_unittest_fix2.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/CHANGELOG.rst -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/LICENSE -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/MANIFEST.in -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/setup.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/src/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/src/tasks/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/src/tasks/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/src/tasks/api.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/src/tasks/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/src/tasks/cli.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/src/tasks/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/src/tasks/config.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/src/tasks/tasksdb_pymongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/src/tasks/tasksdb_pymongo.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/src/tasks/tasksdb_tinydb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/src/tasks/tasksdb_tinydb.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/tests/conftest.py: -------------------------------------------------------------------------------- 1 | """Placeholder.""" 2 | 3 | # nothing here yet 4 | -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/tests/func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/tests/func/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/tests/func/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/tests/func/test_add.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/tests/pytest.ini -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/books-tutorials/pytest-book/code/tasks_proj/tests/unit/__init__.py -------------------------------------------------------------------------------- /books-tutorials/pytest-book/code/tasks_proj/tests/unit/test_task.py: -------------------------------------------------------------------------------- 1 | """Placeholder test file.""" 2 | -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/conftest.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1a.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1b.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1c.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1d.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_1_1e.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_2_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_2_1.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_2_1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_2_1a.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_2_1b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_2_1b.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_2_1c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_2_1c.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_2_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_2_1d.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_3_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_3_1.py -------------------------------------------------------------------------------- /learning-code/my-tests-pytest/01_oop_basics/tests/test_task_3_1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/learning-code/my-tests-pytest/01_oop_basics/tests/test_task_3_1a.py -------------------------------------------------------------------------------- /talkpython-100-days/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/README.md -------------------------------------------------------------------------------- /talkpython-100-days/bites_todo/bite_085.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/bites_todo/bite_085.py -------------------------------------------------------------------------------- /talkpython-100-days/bites_todo/bite_35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/bites_todo/bite_35.py -------------------------------------------------------------------------------- /talkpython-100-days/bites_todo/bite_39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/bites_todo/bite_39.py -------------------------------------------------------------------------------- /talkpython-100-days/bites_todo/test_file_bite_39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/bites_todo/test_file_bite_39.txt -------------------------------------------------------------------------------- /talkpython-100-days/day001/pomodoro_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day001/pomodoro_timer.py -------------------------------------------------------------------------------- /talkpython-100-days/day002/pomodoro_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day002/pomodoro_timer.py -------------------------------------------------------------------------------- /talkpython-100-days/day002/pomodoro_timer_run_animation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day002/pomodoro_timer_run_animation.svg -------------------------------------------------------------------------------- /talkpython-100-days/day003/pomodoro_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day003/pomodoro_timer.py -------------------------------------------------------------------------------- /talkpython-100-days/day003/pomodoro_timer_run_animation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day003/pomodoro_timer_run_animation.svg -------------------------------------------------------------------------------- /talkpython-100-days/day004/directors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day004/directors.py -------------------------------------------------------------------------------- /talkpython-100-days/day004/directors_pybites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day004/directors_pybites.py -------------------------------------------------------------------------------- /talkpython-100-days/day004/movie_metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day004/movie_metadata.csv -------------------------------------------------------------------------------- /talkpython-100-days/day005/beginner/bite_001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/beginner/bite_001.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/beginner/bite_005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/beginner/bite_005.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/intro/bite_101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/intro/bite_101.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/intro/bite_102.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/intro/bite_102.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/intro/bite_103.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/intro/bite_103.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/intro/bite_104.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/intro/bite_104.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/intro/bite_105.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/intro/bite_105.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/intro/bite_106.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/intro/bite_106.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/intro/bite_107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/intro/bite_107.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/intro/bite_108.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/intro/bite_108.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/intro/bite_109.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/intro/bite_109.py -------------------------------------------------------------------------------- /talkpython-100-days/day005/intro/bite_110.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day005/intro/bite_110.py -------------------------------------------------------------------------------- /talkpython-100-days/day006/Conference_test_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day006/Conference_test_data.csv -------------------------------------------------------------------------------- /talkpython-100-days/day006/parse_fcc_csv_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day006/parse_fcc_csv_report.py -------------------------------------------------------------------------------- /talkpython-100-days/day008/beginner/bite_008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day008/beginner/bite_008.py -------------------------------------------------------------------------------- /talkpython-100-days/day008/beginner/bite_015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day008/beginner/bite_015.py -------------------------------------------------------------------------------- /talkpython-100-days/day008/beginner/bite_021.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day008/beginner/bite_021.py -------------------------------------------------------------------------------- /talkpython-100-days/day008/intermediate/bite_089.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day008/intermediate/bite_089.py -------------------------------------------------------------------------------- /talkpython-100-days/day009/beginner/bite_016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day009/beginner/bite_016.py -------------------------------------------------------------------------------- /talkpython-100-days/day009/beginner/bite_019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day009/beginner/bite_019.py -------------------------------------------------------------------------------- /talkpython-100-days/day009/beginner/bite_026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day009/beginner/bite_026.py -------------------------------------------------------------------------------- /talkpython-100-days/day009/beginner/bite_029.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day009/beginner/bite_029.py -------------------------------------------------------------------------------- /talkpython-100-days/day009/beginner/bite_032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day009/beginner/bite_032.py -------------------------------------------------------------------------------- /talkpython-100-days/day009/beginner/bite_037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day009/beginner/bite_037.py -------------------------------------------------------------------------------- /talkpython-100-days/day009/beginner/bite_038.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day009/beginner/bite_038.py -------------------------------------------------------------------------------- /talkpython-100-days/day009/beginner/bite_043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day009/beginner/bite_043.py -------------------------------------------------------------------------------- /talkpython-100-days/day009/beginner/bite_044.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day009/beginner/bite_044.py -------------------------------------------------------------------------------- /talkpython-100-days/day011/beginner/bite_45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day011/beginner/bite_45.py -------------------------------------------------------------------------------- /talkpython-100-days/day011/beginner/bite_46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day011/beginner/bite_46.py -------------------------------------------------------------------------------- /talkpython-100-days/day011/beginner/bite_54.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day011/beginner/bite_54.py -------------------------------------------------------------------------------- /talkpython-100-days/day011/beginner/bite_55.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day011/beginner/bite_55.py -------------------------------------------------------------------------------- /talkpython-100-days/day011/beginner/bite_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day011/beginner/bite_64.py -------------------------------------------------------------------------------- /talkpython-100-days/day011/beginner/bite_66.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day011/beginner/bite_66.py -------------------------------------------------------------------------------- /talkpython-100-days/day012/beginner/bite_115.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day012/beginner/bite_115.py -------------------------------------------------------------------------------- /talkpython-100-days/day012/beginner/bite_68.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day012/beginner/bite_68.py -------------------------------------------------------------------------------- /talkpython-100-days/day012/beginner/bite_74.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day012/beginner/bite_74.py -------------------------------------------------------------------------------- /talkpython-100-days/day012/beginner/bite_77.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day012/beginner/bite_77.py -------------------------------------------------------------------------------- /talkpython-100-days/day012/beginner/bite_91.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day012/beginner/bite_91.py -------------------------------------------------------------------------------- /talkpython-100-days/day012/beginner/bite_96.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day012/beginner/bite_96.py -------------------------------------------------------------------------------- /talkpython-100-days/day014/rock_paper_scissors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day014/rock_paper_scissors.py -------------------------------------------------------------------------------- /talkpython-100-days/day015/battle-table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day015/battle-table.csv -------------------------------------------------------------------------------- /talkpython-100-days/day015/beginner/bite_100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day015/beginner/bite_100.py -------------------------------------------------------------------------------- /talkpython-100-days/day015/beginner/bite_117.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day015/beginner/bite_117.py -------------------------------------------------------------------------------- /talkpython-100-days/day015/beginner/bite_128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day015/beginner/bite_128.py -------------------------------------------------------------------------------- /talkpython-100-days/day015/beginner/bite_130.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day015/beginner/bite_130.py -------------------------------------------------------------------------------- /talkpython-100-days/day015/beginner/bite_56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day015/beginner/bite_56.py -------------------------------------------------------------------------------- /talkpython-100-days/day015/beginner/bite_80.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day015/beginner/bite_80.py -------------------------------------------------------------------------------- /talkpython-100-days/day015/beginner/bite_83.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day015/beginner/bite_83.py -------------------------------------------------------------------------------- /talkpython-100-days/day015/rock_paper_scissors_15_way.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day015/rock_paper_scissors_15_way.py -------------------------------------------------------------------------------- /talkpython-100-days/day016/challenge_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day016/challenge_11.py -------------------------------------------------------------------------------- /talkpython-100-days/day016/intermediate/bite_003.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day016/intermediate/bite_003.py -------------------------------------------------------------------------------- /talkpython-100-days/day016/intermediate/bite_004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day016/intermediate/bite_004.py -------------------------------------------------------------------------------- /talkpython-100-days/day016/intermediate/bite_006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day016/intermediate/bite_006.py -------------------------------------------------------------------------------- /talkpython-100-days/day016/intermediate/bite_009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day016/intermediate/bite_009.py -------------------------------------------------------------------------------- /talkpython-100-days/day016/intermediate/bite_014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day016/intermediate/bite_014.py -------------------------------------------------------------------------------- /talkpython-100-days/day016/intermediate/data_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day016/intermediate/data_file.txt -------------------------------------------------------------------------------- /talkpython-100-days/day017/intermediate/bite_010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day017/intermediate/bite_010.py -------------------------------------------------------------------------------- /talkpython-100-days/day017/intermediate/bite_012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day017/intermediate/bite_012.py -------------------------------------------------------------------------------- /talkpython-100-days/day017/intermediate/bite_013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day017/intermediate/bite_013.py -------------------------------------------------------------------------------- /talkpython-100-days/day017/intermediate/bite_017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day017/intermediate/bite_017.py -------------------------------------------------------------------------------- /talkpython-100-days/day017/intermediate/bite_018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day017/intermediate/bite_018.py -------------------------------------------------------------------------------- /talkpython-100-days/day017/intermediate/bite_022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day017/intermediate/bite_022.py -------------------------------------------------------------------------------- /talkpython-100-days/day018/intermediate/bite_025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day018/intermediate/bite_025.py -------------------------------------------------------------------------------- /talkpython-100-days/day018/intermediate/bite_027.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day018/intermediate/bite_027.py -------------------------------------------------------------------------------- /talkpython-100-days/day018/intermediate/bite_028.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day018/intermediate/bite_028.py -------------------------------------------------------------------------------- /talkpython-100-days/day018/intermediate/bite_033.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day018/intermediate/bite_033.py -------------------------------------------------------------------------------- /talkpython-100-days/day019/intermediate/bite_36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day019/intermediate/bite_36.py -------------------------------------------------------------------------------- /talkpython-100-days/day019/intermediate/bite_41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day019/intermediate/bite_41.py -------------------------------------------------------------------------------- /talkpython-100-days/day020/20_days_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day020/20_days_report.png -------------------------------------------------------------------------------- /talkpython-100-days/day020/intermediate/bite_065.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day020/intermediate/bite_065.py -------------------------------------------------------------------------------- /talkpython-100-days/day021/intermediate/bite_060.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day021/intermediate/bite_060.py -------------------------------------------------------------------------------- /talkpython-100-days/day021/traffic_lights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day021/traffic_lights.py -------------------------------------------------------------------------------- /talkpython-100-days/day021/traffic_lights_animation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day021/traffic_lights_animation.svg -------------------------------------------------------------------------------- /talkpython-100-days/day022/intermediate/bite_047.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day022/intermediate/bite_047.py -------------------------------------------------------------------------------- /talkpython-100-days/day022/intermediate/bite_048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day022/intermediate/bite_048.py -------------------------------------------------------------------------------- /talkpython-100-days/day022/intermediate/bite_057.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day022/intermediate/bite_057.py -------------------------------------------------------------------------------- /talkpython-100-days/day023/intermediate/bite_062.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day023/intermediate/bite_062.py -------------------------------------------------------------------------------- /talkpython-100-days/day023/intermediate/bite_070.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day023/intermediate/bite_070.py -------------------------------------------------------------------------------- /talkpython-100-days/day023/intermediate/bite_071.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day023/intermediate/bite_071.py -------------------------------------------------------------------------------- /talkpython-100-days/day023/intermediate/bite_072.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day023/intermediate/bite_072.py -------------------------------------------------------------------------------- /talkpython-100-days/day023/intermediate/bite_079.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day023/intermediate/bite_079.py -------------------------------------------------------------------------------- /talkpython-100-days/day024/intermediate/bite_059.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day024/intermediate/bite_059.py -------------------------------------------------------------------------------- /talkpython-100-days/day024/intermediate/bite_078.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day024/intermediate/bite_078.py -------------------------------------------------------------------------------- /talkpython-100-days/day024/intermediate/bite_081.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day024/intermediate/bite_081.py -------------------------------------------------------------------------------- /talkpython-100-days/day024/intermediate/bite_084.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day024/intermediate/bite_084.py -------------------------------------------------------------------------------- /talkpython-100-days/day025/intermediate/bite_086.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day025/intermediate/bite_086.py -------------------------------------------------------------------------------- /talkpython-100-days/day025/intermediate/bite_090.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day025/intermediate/bite_090.py -------------------------------------------------------------------------------- /talkpython-100-days/day025/intermediate/bite_095.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day025/intermediate/bite_095.py -------------------------------------------------------------------------------- /talkpython-100-days/day025/intermediate/bite_099.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day025/intermediate/bite_099.py -------------------------------------------------------------------------------- /talkpython-100-days/day025/intermediate/bite_113.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day025/intermediate/bite_113.py -------------------------------------------------------------------------------- /talkpython-100-days/day025/intermediate/bite_114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day025/intermediate/bite_114.py -------------------------------------------------------------------------------- /talkpython-100-days/day026/intermediate/bite_119.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day026/intermediate/bite_119.py -------------------------------------------------------------------------------- /talkpython-100-days/day026/intermediate/bite_120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day026/intermediate/bite_120.py -------------------------------------------------------------------------------- /talkpython-100-days/day026/intermediate/bite_122.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day026/intermediate/bite_122.py -------------------------------------------------------------------------------- /talkpython-100-days/day027/intermediate/bite_116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day027/intermediate/bite_116.py -------------------------------------------------------------------------------- /talkpython-100-days/day027/intermediate/bite_118.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day027/intermediate/bite_118.py -------------------------------------------------------------------------------- /talkpython-100-days/day027/intermediate/bite_123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day027/intermediate/bite_123.py -------------------------------------------------------------------------------- /talkpython-100-days/day027/intermediate/bite_125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day027/intermediate/bite_125.py -------------------------------------------------------------------------------- /talkpython-100-days/day027/intermediate/bite_127.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day027/intermediate/bite_127.py -------------------------------------------------------------------------------- /talkpython-100-days/day028/advanced/bite_002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day028/advanced/bite_002.py -------------------------------------------------------------------------------- /talkpython-100-days/day028/advanced/bite_011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day028/advanced/bite_011.py -------------------------------------------------------------------------------- /talkpython-100-days/day029/advanced/bite_020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day029/advanced/bite_020.py -------------------------------------------------------------------------------- /talkpython-100-days/day029/advanced/bite_034.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day029/advanced/bite_034.py -------------------------------------------------------------------------------- /talkpython-100-days/day029/advanced/bite_042.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day029/advanced/bite_042.py -------------------------------------------------------------------------------- /talkpython-100-days/day029/advanced/bite_063.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day029/advanced/bite_063.py -------------------------------------------------------------------------------- /talkpython-100-days/day029/advanced/bite_069.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day029/advanced/bite_069.py -------------------------------------------------------------------------------- /talkpython-100-days/day029/advanced/bite_088.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day029/advanced/bite_088.py -------------------------------------------------------------------------------- /talkpython-100-days/day031/pomodoro-2018-08-29.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day031/pomodoro-2018-08-29.log -------------------------------------------------------------------------------- /talkpython-100-days/day031/pomodoro_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day031/pomodoro_timer.py -------------------------------------------------------------------------------- /talkpython-100-days/day032/advanced/bite_053.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day032/advanced/bite_053.py -------------------------------------------------------------------------------- /talkpython-100-days/day032/advanced/bite_075.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day032/advanced/bite_075.py -------------------------------------------------------------------------------- /talkpython-100-days/day034/intermediate/bite_111.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day034/intermediate/bite_111.py -------------------------------------------------------------------------------- /talkpython-100-days/day034/intermediate/bite_129.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day034/intermediate/bite_129.py -------------------------------------------------------------------------------- /talkpython-100-days/day035/intermediate/bite_024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day035/intermediate/bite_024.py -------------------------------------------------------------------------------- /talkpython-100-days/day035/intermediate/bite_121.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day035/intermediate/bite_121.py -------------------------------------------------------------------------------- /talkpython-100-days/day036/pomodoro-2018-09-03.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day036/pomodoro-2018-09-03.log -------------------------------------------------------------------------------- /talkpython-100-days/day036/pomodoro_db_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day036/pomodoro_db_schema.sql -------------------------------------------------------------------------------- /talkpython-100-days/day036/pomodoro_db_stats.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | 3 | 4 | -------------------------------------------------------------------------------- /talkpython-100-days/day036/pomodoro_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day036/pomodoro_timer.py -------------------------------------------------------------------------------- /talkpython-100-days/day036/pomodoros_stats.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day036/pomodoros_stats.db -------------------------------------------------------------------------------- /talkpython-100-days/day038/data/classic-rock-song-list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day038/data/classic-rock-song-list.csv -------------------------------------------------------------------------------- /talkpython-100-days/day038/get_best_classic_rock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day038/get_best_classic_rock.py -------------------------------------------------------------------------------- /talkpython-100-days/day039/move_tasks_to_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day039/move_tasks_to_check.py -------------------------------------------------------------------------------- /talkpython-100-days/day042/all_marvel_movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day042/all_marvel_movies.json -------------------------------------------------------------------------------- /talkpython-100-days/day042/get_marvel_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day042/get_marvel_stats.py -------------------------------------------------------------------------------- /talkpython-100-days/day042/marvel-cinematic-universe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day042/marvel-cinematic-universe.json -------------------------------------------------------------------------------- /talkpython-100-days/day045/search_talkpython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day045/search_talkpython.py -------------------------------------------------------------------------------- /talkpython-100-days/day046/move_tasks_to_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day046/move_tasks_to_check.py -------------------------------------------------------------------------------- /talkpython-100-days/day048/bite_049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day048/bite_049.py -------------------------------------------------------------------------------- /talkpython-100-days/day048/bite_097.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natenka/100-days-of-Python/HEAD/talkpython-100-days/day048/bite_097.py --------------------------------------------------------------------------------