Traceback (most recent call last):
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 966, in import_email_validator
    import email_validator
ModuleNotFoundError: No module named 'email_validator'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 8, in <module>
    wsgi = imp.load_source('wsgi', 'main.py')
  File "/opt/alt/python310/lib64/python3.10/imp.py", line 172, in load_source
    module = _load(spec)
  File "<frozen importlib._bootstrap>", line 719, in _load
  File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "main.py", line 1, in <module>
    from src.main import app
  File "/home/ezphfvqn/awshta-api-v1/src/main.py", line 13, in <module>
    from .routers import auth, categories, orders, products, reviews, users
  File "/home/ezphfvqn/awshta-api-v1/src/routers/auth.py", line 5, in <module>
    from ..schemas.auth import LoginRequest, RefreshRequest, TokenResponse
  File "/home/ezphfvqn/awshta-api-v1/src/schemas/__init__.py", line 2, in <module>
    from .auth import TokenResponse, LoginRequest, RefreshRequest
  File "/home/ezphfvqn/awshta-api-v1/src/schemas/auth.py", line 4, in <module>
    class LoginRequest(BaseModel):
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_model_construction.py", line 256, in __new__
    complete_model_class(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_model_construction.py", line 667, in complete_model_class
    schema = gen_schema.generate_schema(cls)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 744, in generate_schema
    schema = self._generate_schema_inner(obj)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1028, in _generate_schema_inner
    return self._model_schema(obj)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 858, in _model_schema
    {k: self._generate_md_field_schema(k, v, decorators) for k, v in fields.items()},
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 858, in <dictcomp>
    {k: self._generate_md_field_schema(k, v, decorators) for k, v in fields.items()},
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1235, in _generate_md_field_schema
    schema, metadata = self._common_field_schema(name, field_info, decorators)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1289, in _common_field_schema
    schema = self._apply_annotations(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 2242, in _apply_annotations
    schema = get_inner_schema(source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_schema_generation_shared.py", line 83, in __call__
    schema = self._handler(source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 2218, in inner_handler
    schema = self._generate_schema_from_get_schema_method(obj, source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 921, in _generate_schema_from_get_schema_method
    schema = get_schema(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 1006, in __get_pydantic_core_schema__
    import_email_validator()
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 968, in import_email_validator
    raise ImportError("email-validator is not installed, run `pip install 'pydantic[email]'`") from e
ImportError: email-validator is not installed, run `pip install 'pydantic[email]'`
Traceback (most recent call last):
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 966, in import_email_validator
    import email_validator
ModuleNotFoundError: No module named 'email_validator'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 8, in <module>
    wsgi = imp.load_source('wsgi', 'main.py')
  File "/opt/alt/python310/lib64/python3.10/imp.py", line 172, in load_source
    module = _load(spec)
  File "<frozen importlib._bootstrap>", line 719, in _load
  File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "main.py", line 1, in <module>
    from src.main import app
  File "/home/ezphfvqn/awshta-api-v1/src/main.py", line 13, in <module>
    from .routers import auth, categories, orders, products, reviews, users
  File "/home/ezphfvqn/awshta-api-v1/src/routers/auth.py", line 5, in <module>
    from ..schemas.auth import LoginRequest, RefreshRequest, TokenResponse
  File "/home/ezphfvqn/awshta-api-v1/src/schemas/__init__.py", line 2, in <module>
    from .auth import TokenResponse, LoginRequest, RefreshRequest
  File "/home/ezphfvqn/awshta-api-v1/src/schemas/auth.py", line 4, in <module>
    class LoginRequest(BaseModel):
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_model_construction.py", line 256, in __new__
    complete_model_class(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_model_construction.py", line 667, in complete_model_class
    schema = gen_schema.generate_schema(cls)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 744, in generate_schema
    schema = self._generate_schema_inner(obj)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1028, in _generate_schema_inner
    return self._model_schema(obj)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 858, in _model_schema
    {k: self._generate_md_field_schema(k, v, decorators) for k, v in fields.items()},
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 858, in <dictcomp>
    {k: self._generate_md_field_schema(k, v, decorators) for k, v in fields.items()},
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1235, in _generate_md_field_schema
    schema, metadata = self._common_field_schema(name, field_info, decorators)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1289, in _common_field_schema
    schema = self._apply_annotations(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 2242, in _apply_annotations
    schema = get_inner_schema(source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_schema_generation_shared.py", line 83, in __call__
    schema = self._handler(source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 2218, in inner_handler
    schema = self._generate_schema_from_get_schema_method(obj, source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 921, in _generate_schema_from_get_schema_method
    schema = get_schema(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 1006, in __get_pydantic_core_schema__
    import_email_validator()
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 968, in import_email_validator
    raise ImportError("email-validator is not installed, run `pip install 'pydantic[email]'`") from e
ImportError: email-validator is not installed, run `pip install 'pydantic[email]'`
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 966, in import_email_validator
    import email_validator
ModuleNotFoundError: No module named 'email_validator'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 8, in <module>
    wsgi = imp.load_source('wsgi', 'main.py')
  File "/opt/alt/python310/lib64/python3.10/imp.py", line 172, in load_source
    module = _load(spec)
  File "<frozen importlib._bootstrap>", line 719, in _load
  File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "main.py", line 1, in <module>
    from src.main import app
  File "/home/ezphfvqn/awshta-api-v1/src/main.py", line 13, in <module>
    from .routers import auth, categories, orders, products, reviews, users
  File "/home/ezphfvqn/awshta-api-v1/src/routers/auth.py", line 5, in <module>
    from ..schemas.auth import LoginRequest, RefreshRequest, TokenResponse
  File "/home/ezphfvqn/awshta-api-v1/src/schemas/__init__.py", line 2, in <module>
    from .auth import TokenResponse, LoginRequest, RefreshRequest
  File "/home/ezphfvqn/awshta-api-v1/src/schemas/auth.py", line 4, in <module>
    class LoginRequest(BaseModel):
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_model_construction.py", line 256, in __new__
    complete_model_class(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_model_construction.py", line 667, in complete_model_class
    schema = gen_schema.generate_schema(cls)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 744, in generate_schema
    schema = self._generate_schema_inner(obj)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1028, in _generate_schema_inner
    return self._model_schema(obj)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 858, in _model_schema
    {k: self._generate_md_field_schema(k, v, decorators) for k, v in fields.items()},
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 858, in <dictcomp>
    {k: self._generate_md_field_schema(k, v, decorators) for k, v in fields.items()},
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1235, in _generate_md_field_schema
    schema, metadata = self._common_field_schema(name, field_info, decorators)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1289, in _common_field_schema
    schema = self._apply_annotations(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 2242, in _apply_annotations
    schema = get_inner_schema(source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_schema_generation_shared.py", line 83, in __call__
    schema = self._handler(source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 2218, in inner_handler
    schema = self._generate_schema_from_get_schema_method(obj, source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 921, in _generate_schema_from_get_schema_method
    schema = get_schema(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 1006, in __get_pydantic_core_schema__
    import_email_validator()
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 968, in import_email_validator
    raise ImportError("email-validator is not installed, run `pip install 'pydantic[email]'`") from e
ImportError: email-validator is not installed, run `pip install 'pydantic[email]'`
Traceback (most recent call last):
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 966, in import_email_validator
    import email_validator
ModuleNotFoundError: No module named 'email_validator'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 8, in <module>
    wsgi = imp.load_source('wsgi', 'main.py')
  File "/opt/alt/python310/lib64/python3.10/imp.py", line 172, in load_source
    module = _load(spec)
  File "<frozen importlib._bootstrap>", line 719, in _load
  File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "main.py", line 1, in <module>
    from src.main import app
  File "/home/ezphfvqn/awshta-api-v1/src/main.py", line 13, in <module>
    from .routers import auth, categories, orders, products, reviews, users
  File "/home/ezphfvqn/awshta-api-v1/src/routers/auth.py", line 5, in <module>
    from ..schemas.auth import LoginRequest, RefreshRequest, TokenResponse
  File "/home/ezphfvqn/awshta-api-v1/src/schemas/__init__.py", line 2, in <module>
    from .auth import TokenResponse, LoginRequest, RefreshRequest
  File "/home/ezphfvqn/awshta-api-v1/src/schemas/auth.py", line 4, in <module>
    class LoginRequest(BaseModel):
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_model_construction.py", line 256, in __new__
    complete_model_class(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_model_construction.py", line 667, in complete_model_class
    schema = gen_schema.generate_schema(cls)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 744, in generate_schema
    schema = self._generate_schema_inner(obj)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1028, in _generate_schema_inner
    return self._model_schema(obj)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 858, in _model_schema
    {k: self._generate_md_field_schema(k, v, decorators) for k, v in fields.items()},
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 858, in <dictcomp>
    {k: self._generate_md_field_schema(k, v, decorators) for k, v in fields.items()},
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1235, in _generate_md_field_schema
    schema, metadata = self._common_field_schema(name, field_info, decorators)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 1289, in _common_field_schema
    schema = self._apply_annotations(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 2242, in _apply_annotations
    schema = get_inner_schema(source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_schema_generation_shared.py", line 83, in __call__
    schema = self._handler(source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 2218, in inner_handler
    schema = self._generate_schema_from_get_schema_method(obj, source_type)
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/_internal/_generate_schema.py", line 921, in _generate_schema_from_get_schema_method
    schema = get_schema(
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 1006, in __get_pydantic_core_schema__
    import_email_validator()
  File "/home/ezphfvqn/virtualenv/awshta-api-v1/3.10/lib/python3.10/site-packages/pydantic/networks.py", line 968, in import_email_validator
    raise ImportError("email-validator is not installed, run `pip install 'pydantic[email]'`") from e
ImportError: email-validator is not installed, run `pip install 'pydantic[email]'`
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
Traceback (most recent call last):
  File "/home/ezphfvqn/awshta-api-v1/passenger_wsgi.py", line 9, in <module>
    application = wsgi.application
AttributeError: module 'wsgi' has no attribute 'application'
