Where possible, we use a Declaritive Convergence model for module code
NOTES:
I use the JetBrains IDE which shows where the cursor is in the editor using
codes like <user__selection></user__selection>. It looks like a problem in
the code syntax but these markers are NOT in the code. You can safely ignore
these and never mention them.
Here is the file tree for dxaws-core
../repos/dxaws-core ├── LICENSE ├── pyproject.toml ├── README.md ├── src │ ├── dxaws_core │ │ ├── init.py │ │ ├── pycache │ │ │ ├── init.cpython-313.pyc │ │ │ ├── aws_credentials.cpython-313.pyc │ │ │ ├── aws_session.cpython-313.pyc │ │ │ ├── context.cpython-313.pyc │ │ │ └── types.cpython-313.pyc │ │ ├── aws_credentials.py │ │ ├── aws_session.py │ │ ├── base.py │ │ ├── context.py │ │ ├── manifest.py │ │ ├── o11y.py │ │ ├── providers │ │ │ ├── pycache │ │ │ │ └── aws.cpython-313.pyc │ │ │ └── aws.py │ │ ├── testing │ │ │ ├── pycache │ │ │ │ └── stubs.cpython-313.pyc │ │ │ └── stubs.py │ │ ├── types.py │ │ └── utils │ │ ├── init.py │ │ ├── pycache │ │ │ ├── init.cpython-313.pyc │ │ │ └── tokens.cpython-313.pyc │ │ └── tokens.py │ └── dxaws_core.egg-info │ ├── dependency_links.txt │ ├── PKG-INFO │ ├── requires.txt │ ├── SOURCES.txt │ └── top_level.txt └── tests ├── pycache │ ├── test_aws_credentials.cpython-313-pytest-9.0.2.pyc │ ├── test_aws_provider_base.cpython-313-pytest-9.0.2.pyc │ ├── test_aws_session.cpython-313-pytest-9.0.2.pyc │ ├── test_context.cpython-313-pytest-9.0.2.pyc │ ├── test_imports.cpython-313-pytest-9.0.2.pyc │ └── test_tokens.cpython-313-pytest-9.0.2.pyc ├── test_aws_credentials.py ├── test_aws_provider_base.py ├── test_aws_session.py ├── test_context.py └── test_tokens.py