├── .gitignore ├── LICENSE ├── README.md ├── complex_data ├── app │ ├── __init__.py │ └── complex_app.py ├── poetry.lock ├── pyproject.toml └── tests │ ├── __init__.py │ ├── resources │ ├── data.bin │ ├── python_logo.png │ └── python_logo_gray.png │ ├── test_complex_app.py │ └── test_complex_app │ ├── test_config_data_with_pytest_regressions.yml │ ├── test_convert_image_to_gray.png │ ├── test_dict_to_html.html │ ├── test_elemwise_multi_calculation.csv │ ├── test_read_from_file.bin │ └── test_svd_calculation.csv ├── secret.txt └── testing_http ├── poetry.lock ├── pyproject.toml ├── tests ├── __init__.py ├── resources │ └── weather.json ├── test_retrieve_weather_using_vcr ├── test_weather_app.py └── test_weather_app_using_mocks └── weather_app ├── __init__.py └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tutorials -------------------------------------------------------------------------------- /complex_data/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /complex_data/app/complex_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/app/complex_app.py -------------------------------------------------------------------------------- /complex_data/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/poetry.lock -------------------------------------------------------------------------------- /complex_data/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/pyproject.toml -------------------------------------------------------------------------------- /complex_data/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /complex_data/tests/resources/data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/tests/resources/data.bin -------------------------------------------------------------------------------- /complex_data/tests/resources/python_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/tests/resources/python_logo.png -------------------------------------------------------------------------------- /complex_data/tests/resources/python_logo_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/tests/resources/python_logo_gray.png -------------------------------------------------------------------------------- /complex_data/tests/test_complex_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/tests/test_complex_app.py -------------------------------------------------------------------------------- /complex_data/tests/test_complex_app/test_config_data_with_pytest_regressions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/tests/test_complex_app/test_config_data_with_pytest_regressions.yml -------------------------------------------------------------------------------- /complex_data/tests/test_complex_app/test_convert_image_to_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/tests/test_complex_app/test_convert_image_to_gray.png -------------------------------------------------------------------------------- /complex_data/tests/test_complex_app/test_dict_to_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/tests/test_complex_app/test_dict_to_html.html -------------------------------------------------------------------------------- /complex_data/tests/test_complex_app/test_elemwise_multi_calculation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/tests/test_complex_app/test_elemwise_multi_calculation.csv -------------------------------------------------------------------------------- /complex_data/tests/test_complex_app/test_read_from_file.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/tests/test_complex_app/test_read_from_file.bin -------------------------------------------------------------------------------- /complex_data/tests/test_complex_app/test_svd_calculation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/complex_data/tests/test_complex_app/test_svd_calculation.csv -------------------------------------------------------------------------------- /secret.txt: -------------------------------------------------------------------------------- 1 | regex:69f463e5630a0dd21d69c34247496795==>YOUR SECRET HERE 2 | -------------------------------------------------------------------------------- /testing_http/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/testing_http/poetry.lock -------------------------------------------------------------------------------- /testing_http/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/testing_http/pyproject.toml -------------------------------------------------------------------------------- /testing_http/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing_http/tests/resources/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/testing_http/tests/resources/weather.json -------------------------------------------------------------------------------- /testing_http/tests/test_retrieve_weather_using_vcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/testing_http/tests/test_retrieve_weather_using_vcr -------------------------------------------------------------------------------- /testing_http/tests/test_weather_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/testing_http/tests/test_weather_app.py -------------------------------------------------------------------------------- /testing_http/tests/test_weather_app_using_mocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/testing_http/tests/test_weather_app_using_mocks -------------------------------------------------------------------------------- /testing_http/weather_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/testing_http/weather_app/__init__.py -------------------------------------------------------------------------------- /testing_http/weather_app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguendes/tutorials/HEAD/testing_http/weather_app/templates/index.html --------------------------------------------------------------------------------