├── .flake8 ├── .github └── workflows │ └── test.yml ├── .gitignore ├── README.md ├── __init__.py ├── checklist.md ├── cinema_db_data.json ├── db ├── __init__.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py └── models.py ├── init_django_orm.py ├── manage.py ├── pytest.ini ├── requirements.txt ├── services ├── cinema_hall.py ├── movie.py └── movie_session.py ├── settings.py └── tests ├── __init__.py └── test_main.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/checklist.md -------------------------------------------------------------------------------- /cinema_db_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/cinema_db_data.json -------------------------------------------------------------------------------- /db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/db/migrations/0001_initial.py -------------------------------------------------------------------------------- /db/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/db/models.py -------------------------------------------------------------------------------- /init_django_orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/init_django_orm.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/manage.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | DJANGO_SETTINGS_MODULE = settings 3 | addopts = --reuse-db -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/requirements.txt -------------------------------------------------------------------------------- /services/cinema_hall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/services/cinema_hall.py -------------------------------------------------------------------------------- /services/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/services/movie.py -------------------------------------------------------------------------------- /services/movie_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/services/movie_session.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/settings.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-tickets-and-orders/HEAD/tests/test_main.py --------------------------------------------------------------------------------