├── .gitignore
├── .graphqlconfig.yml
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── amplify.yml
├── amplify
├── .config
│ └── project-config.json
├── backend
│ ├── api
│ │ ├── MAPSFrontEndAPI
│ │ │ ├── MAPSFrontEndAPI-cloudformation-template.json
│ │ │ └── parameters.json
│ │ └── MAPSMediaAssetAPI
│ │ │ ├── cli-inputs.json
│ │ │ ├── parameters.json
│ │ │ ├── resolvers
│ │ │ ├── Mutation.createMAPSAssets.req.vtl
│ │ │ ├── Mutation.createMAPSAssets.res.vtl
│ │ │ ├── Mutation.deleteMAPSAssets.req.vtl
│ │ │ ├── Mutation.deleteMAPSAssets.res.vtl
│ │ │ ├── Mutation.updateMAPSAssets.req.vtl
│ │ │ ├── Mutation.updateMAPSAssets.res.vtl
│ │ │ ├── Query.getMAPSAssets.req.vtl
│ │ │ ├── Query.getMAPSAssets.res.vtl
│ │ │ ├── Query.listMAPSAssets.req.vtl
│ │ │ ├── Query.listMAPSAssets.res.vtl
│ │ │ ├── Query.pipelineMAPSAssets.req.vtl
│ │ │ ├── Query.pipelineMAPSAssets.res.vtl
│ │ │ ├── Query.userGroupLookup.req.vtl
│ │ │ ├── Query.userGroupLookup.res.vtl
│ │ │ └── README.md
│ │ │ ├── schema.graphql
│ │ │ ├── stacks
│ │ │ └── CustomResources.json
│ │ │ └── transform.conf.json
│ ├── auth
│ │ ├── maps2692126626921266
│ │ │ ├── auth-trigger-cloudformation-template.json
│ │ │ ├── cli-inputs.json
│ │ │ ├── maps2692126626921266-cloudformation-template.json
│ │ │ └── parameters.json
│ │ └── userPoolGroups
│ │ │ ├── parameters.json
│ │ │ ├── user-pool-group-precedence.json
│ │ │ └── userPoolGroups-cloudformation-template.json
│ ├── backend-config.json
│ ├── function
│ │ ├── MAPSLambdaResolver
│ │ │ ├── MAPSLambdaResolver-cloudformation-template.json
│ │ │ ├── Pipfile
│ │ │ ├── Pipfile.lock
│ │ │ ├── parameters.json
│ │ │ └── src
│ │ │ │ ├── event.json
│ │ │ │ └── lambda_function.py
│ │ ├── MAPSMediaInfoLayer
│ │ │ ├── MAPSMediaInfoLayer-awscloudformation-template.json
│ │ │ ├── layer-configuration.json
│ │ │ ├── lib
│ │ │ │ └── python
│ │ │ │ │ ├── Pipfile
│ │ │ │ │ ├── Pipfile.lock
│ │ │ │ │ ├── README.txt
│ │ │ │ │ └── lib
│ │ │ │ │ └── python3.7
│ │ │ │ │ └── site-packages
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── _distutils_hack
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ └── override.cpython-37.pyc
│ │ │ │ │ └── override.py
│ │ │ │ │ ├── distutils-precedence.pth
│ │ │ │ │ ├── pkg_resources
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── __init__.cpython-37.pyc
│ │ │ │ │ ├── _vendor
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ ├── typing_extensions.cpython-37.pyc
│ │ │ │ │ │ │ └── zipp.cpython-37.pyc
│ │ │ │ │ │ ├── importlib_resources
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _adapters.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _common.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _compat.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _itertools.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _legacy.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── abc.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── readers.cpython-37.pyc
│ │ │ │ │ │ │ │ └── simple.cpython-37.pyc
│ │ │ │ │ │ │ ├── _adapters.py
│ │ │ │ │ │ │ ├── _common.py
│ │ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ │ ├── _itertools.py
│ │ │ │ │ │ │ ├── _legacy.py
│ │ │ │ │ │ │ ├── abc.py
│ │ │ │ │ │ │ ├── readers.py
│ │ │ │ │ │ │ └── simple.py
│ │ │ │ │ │ ├── jaraco
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── context.cpython-37.pyc
│ │ │ │ │ │ │ │ └── functools.cpython-37.pyc
│ │ │ │ │ │ │ ├── context.py
│ │ │ │ │ │ │ ├── functools.py
│ │ │ │ │ │ │ └── text
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ │ │ └── __init__.cpython-37.pyc
│ │ │ │ │ │ ├── more_itertools
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── more.cpython-37.pyc
│ │ │ │ │ │ │ │ └── recipes.cpython-37.pyc
│ │ │ │ │ │ │ ├── more.py
│ │ │ │ │ │ │ └── recipes.py
│ │ │ │ │ │ ├── packaging
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _elffile.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _manylinux.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _musllinux.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _parser.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _structures.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── _tokenizer.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── markers.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── requirements.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── specifiers.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── tags.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── utils.cpython-37.pyc
│ │ │ │ │ │ │ │ └── version.cpython-37.pyc
│ │ │ │ │ │ │ ├── _elffile.py
│ │ │ │ │ │ │ ├── _manylinux.py
│ │ │ │ │ │ │ ├── _musllinux.py
│ │ │ │ │ │ │ ├── _parser.py
│ │ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ │ ├── _tokenizer.py
│ │ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ │ ├── tags.py
│ │ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ │ └── version.py
│ │ │ │ │ │ ├── platformdirs
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __main__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── __main__.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── android.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── api.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── macos.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── unix.cpython-37.pyc
│ │ │ │ │ │ │ │ ├── version.cpython-37.pyc
│ │ │ │ │ │ │ │ └── windows.cpython-37.pyc
│ │ │ │ │ │ │ ├── android.py
│ │ │ │ │ │ │ ├── api.py
│ │ │ │ │ │ │ ├── macos.py
│ │ │ │ │ │ │ ├── unix.py
│ │ │ │ │ │ │ ├── version.py
│ │ │ │ │ │ │ └── windows.py
│ │ │ │ │ │ ├── typing_extensions.py
│ │ │ │ │ │ └── zipp.py
│ │ │ │ │ └── extern
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ └── __init__.cpython-37.pyc
│ │ │ │ │ ├── pymediainfo-4.2.1-py3.7.egg-info
│ │ │ │ │ ├── PKG-INFO
│ │ │ │ │ ├── SOURCES.txt
│ │ │ │ │ ├── dependency_links.txt
│ │ │ │ │ ├── installed-files.txt
│ │ │ │ │ ├── namespace_packages.txt
│ │ │ │ │ ├── not-zip-safe
│ │ │ │ │ ├── requires.txt
│ │ │ │ │ └── top_level.txt
│ │ │ │ │ ├── pymediainfo
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ │ └── __init__.cpython-37.pyc
│ │ │ │ │ ├── setuptools-67.8.0.dist-info
│ │ │ │ │ ├── INSTALLER
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── METADATA
│ │ │ │ │ ├── RECORD
│ │ │ │ │ ├── WHEEL
│ │ │ │ │ ├── entry_points.txt
│ │ │ │ │ └── top_level.txt
│ │ │ │ │ └── setuptools
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ ├── _entry_points.cpython-37.pyc
│ │ │ │ │ ├── _imp.cpython-37.pyc
│ │ │ │ │ ├── _importlib.cpython-37.pyc
│ │ │ │ │ ├── _itertools.cpython-37.pyc
│ │ │ │ │ ├── _normalization.cpython-37.pyc
│ │ │ │ │ ├── _path.cpython-37.pyc
│ │ │ │ │ ├── _reqs.cpython-37.pyc
│ │ │ │ │ ├── archive_util.cpython-37.pyc
│ │ │ │ │ ├── build_meta.cpython-37.pyc
│ │ │ │ │ ├── dep_util.cpython-37.pyc
│ │ │ │ │ ├── depends.cpython-37.pyc
│ │ │ │ │ ├── discovery.cpython-37.pyc
│ │ │ │ │ ├── dist.cpython-37.pyc
│ │ │ │ │ ├── errors.cpython-37.pyc
│ │ │ │ │ ├── extension.cpython-37.pyc
│ │ │ │ │ ├── glob.cpython-37.pyc
│ │ │ │ │ ├── installer.cpython-37.pyc
│ │ │ │ │ ├── launch.cpython-37.pyc
│ │ │ │ │ ├── logging.cpython-37.pyc
│ │ │ │ │ ├── monkey.cpython-37.pyc
│ │ │ │ │ ├── msvc.cpython-37.pyc
│ │ │ │ │ ├── namespaces.cpython-37.pyc
│ │ │ │ │ ├── package_index.cpython-37.pyc
│ │ │ │ │ ├── py312compat.cpython-37.pyc
│ │ │ │ │ ├── py34compat.cpython-37.pyc
│ │ │ │ │ ├── sandbox.cpython-37.pyc
│ │ │ │ │ ├── unicode_utils.cpython-37.pyc
│ │ │ │ │ ├── version.cpython-37.pyc
│ │ │ │ │ ├── warnings.cpython-37.pyc
│ │ │ │ │ ├── wheel.cpython-37.pyc
│ │ │ │ │ └── windows_support.cpython-37.pyc
│ │ │ │ │ ├── _distutils
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ ├── _collections.cpython-37.pyc
│ │ │ │ │ │ ├── _functools.cpython-37.pyc
│ │ │ │ │ │ ├── _log.cpython-37.pyc
│ │ │ │ │ │ ├── _macos_compat.cpython-37.pyc
│ │ │ │ │ │ ├── _msvccompiler.cpython-37.pyc
│ │ │ │ │ │ ├── archive_util.cpython-37.pyc
│ │ │ │ │ │ ├── bcppcompiler.cpython-37.pyc
│ │ │ │ │ │ ├── ccompiler.cpython-37.pyc
│ │ │ │ │ │ ├── cmd.cpython-37.pyc
│ │ │ │ │ │ ├── config.cpython-37.pyc
│ │ │ │ │ │ ├── core.cpython-37.pyc
│ │ │ │ │ │ ├── cygwinccompiler.cpython-37.pyc
│ │ │ │ │ │ ├── debug.cpython-37.pyc
│ │ │ │ │ │ ├── dep_util.cpython-37.pyc
│ │ │ │ │ │ ├── dir_util.cpython-37.pyc
│ │ │ │ │ │ ├── dist.cpython-37.pyc
│ │ │ │ │ │ ├── errors.cpython-37.pyc
│ │ │ │ │ │ ├── extension.cpython-37.pyc
│ │ │ │ │ │ ├── fancy_getopt.cpython-37.pyc
│ │ │ │ │ │ ├── file_util.cpython-37.pyc
│ │ │ │ │ │ ├── filelist.cpython-37.pyc
│ │ │ │ │ │ ├── log.cpython-37.pyc
│ │ │ │ │ │ ├── msvc9compiler.cpython-37.pyc
│ │ │ │ │ │ ├── msvccompiler.cpython-37.pyc
│ │ │ │ │ │ ├── py38compat.cpython-37.pyc
│ │ │ │ │ │ ├── py39compat.cpython-37.pyc
│ │ │ │ │ │ ├── spawn.cpython-37.pyc
│ │ │ │ │ │ ├── sysconfig.cpython-37.pyc
│ │ │ │ │ │ ├── text_file.cpython-37.pyc
│ │ │ │ │ │ ├── unixccompiler.cpython-37.pyc
│ │ │ │ │ │ ├── util.cpython-37.pyc
│ │ │ │ │ │ ├── version.cpython-37.pyc
│ │ │ │ │ │ └── versionpredicate.cpython-37.pyc
│ │ │ │ │ ├── _collections.py
│ │ │ │ │ ├── _functools.py
│ │ │ │ │ ├── _log.py
│ │ │ │ │ ├── _macos_compat.py
│ │ │ │ │ ├── _msvccompiler.py
│ │ │ │ │ ├── archive_util.py
│ │ │ │ │ ├── bcppcompiler.py
│ │ │ │ │ ├── ccompiler.py
│ │ │ │ │ ├── cmd.py
│ │ │ │ │ ├── command
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ ├── _framework_compat.cpython-37.pyc
│ │ │ │ │ │ │ ├── bdist.cpython-37.pyc
│ │ │ │ │ │ │ ├── bdist_dumb.cpython-37.pyc
│ │ │ │ │ │ │ ├── bdist_rpm.cpython-37.pyc
│ │ │ │ │ │ │ ├── build.cpython-37.pyc
│ │ │ │ │ │ │ ├── build_clib.cpython-37.pyc
│ │ │ │ │ │ │ ├── build_ext.cpython-37.pyc
│ │ │ │ │ │ │ ├── build_py.cpython-37.pyc
│ │ │ │ │ │ │ ├── build_scripts.cpython-37.pyc
│ │ │ │ │ │ │ ├── check.cpython-37.pyc
│ │ │ │ │ │ │ ├── clean.cpython-37.pyc
│ │ │ │ │ │ │ ├── config.cpython-37.pyc
│ │ │ │ │ │ │ ├── install.cpython-37.pyc
│ │ │ │ │ │ │ ├── install_data.cpython-37.pyc
│ │ │ │ │ │ │ ├── install_egg_info.cpython-37.pyc
│ │ │ │ │ │ │ ├── install_headers.cpython-37.pyc
│ │ │ │ │ │ │ ├── install_lib.cpython-37.pyc
│ │ │ │ │ │ │ ├── install_scripts.cpython-37.pyc
│ │ │ │ │ │ │ ├── py37compat.cpython-37.pyc
│ │ │ │ │ │ │ ├── register.cpython-37.pyc
│ │ │ │ │ │ │ ├── sdist.cpython-37.pyc
│ │ │ │ │ │ │ └── upload.cpython-37.pyc
│ │ │ │ │ │ ├── _framework_compat.py
│ │ │ │ │ │ ├── bdist.py
│ │ │ │ │ │ ├── bdist_dumb.py
│ │ │ │ │ │ ├── bdist_rpm.py
│ │ │ │ │ │ ├── build.py
│ │ │ │ │ │ ├── build_clib.py
│ │ │ │ │ │ ├── build_ext.py
│ │ │ │ │ │ ├── build_py.py
│ │ │ │ │ │ ├── build_scripts.py
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── clean.py
│ │ │ │ │ │ ├── config.py
│ │ │ │ │ │ ├── install.py
│ │ │ │ │ │ ├── install_data.py
│ │ │ │ │ │ ├── install_egg_info.py
│ │ │ │ │ │ ├── install_headers.py
│ │ │ │ │ │ ├── install_lib.py
│ │ │ │ │ │ ├── install_scripts.py
│ │ │ │ │ │ ├── py37compat.py
│ │ │ │ │ │ ├── register.py
│ │ │ │ │ │ ├── sdist.py
│ │ │ │ │ │ └── upload.py
│ │ │ │ │ ├── config.py
│ │ │ │ │ ├── core.py
│ │ │ │ │ ├── cygwinccompiler.py
│ │ │ │ │ ├── debug.py
│ │ │ │ │ ├── dep_util.py
│ │ │ │ │ ├── dir_util.py
│ │ │ │ │ ├── dist.py
│ │ │ │ │ ├── errors.py
│ │ │ │ │ ├── extension.py
│ │ │ │ │ ├── fancy_getopt.py
│ │ │ │ │ ├── file_util.py
│ │ │ │ │ ├── filelist.py
│ │ │ │ │ ├── log.py
│ │ │ │ │ ├── msvc9compiler.py
│ │ │ │ │ ├── msvccompiler.py
│ │ │ │ │ ├── py38compat.py
│ │ │ │ │ ├── py39compat.py
│ │ │ │ │ ├── spawn.py
│ │ │ │ │ ├── sysconfig.py
│ │ │ │ │ ├── text_file.py
│ │ │ │ │ ├── unixccompiler.py
│ │ │ │ │ ├── util.py
│ │ │ │ │ ├── version.py
│ │ │ │ │ └── versionpredicate.py
│ │ │ │ │ ├── _entry_points.py
│ │ │ │ │ ├── _imp.py
│ │ │ │ │ ├── _importlib.py
│ │ │ │ │ ├── _itertools.py
│ │ │ │ │ ├── _normalization.py
│ │ │ │ │ ├── _path.py
│ │ │ │ │ ├── _reqs.py
│ │ │ │ │ ├── _vendor
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ ├── ordered_set.cpython-37.pyc
│ │ │ │ │ │ ├── typing_extensions.cpython-37.pyc
│ │ │ │ │ │ └── zipp.cpython-37.pyc
│ │ │ │ │ ├── importlib_metadata
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ ├── _adapters.cpython-37.pyc
│ │ │ │ │ │ │ ├── _collections.cpython-37.pyc
│ │ │ │ │ │ │ ├── _compat.cpython-37.pyc
│ │ │ │ │ │ │ ├── _functools.cpython-37.pyc
│ │ │ │ │ │ │ ├── _itertools.cpython-37.pyc
│ │ │ │ │ │ │ ├── _meta.cpython-37.pyc
│ │ │ │ │ │ │ ├── _py39compat.cpython-37.pyc
│ │ │ │ │ │ │ └── _text.cpython-37.pyc
│ │ │ │ │ │ ├── _adapters.py
│ │ │ │ │ │ ├── _collections.py
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── _functools.py
│ │ │ │ │ │ ├── _itertools.py
│ │ │ │ │ │ ├── _meta.py
│ │ │ │ │ │ ├── _py39compat.py
│ │ │ │ │ │ └── _text.py
│ │ │ │ │ ├── importlib_resources
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ ├── _adapters.cpython-37.pyc
│ │ │ │ │ │ │ ├── _common.cpython-37.pyc
│ │ │ │ │ │ │ ├── _compat.cpython-37.pyc
│ │ │ │ │ │ │ ├── _itertools.cpython-37.pyc
│ │ │ │ │ │ │ ├── _legacy.cpython-37.pyc
│ │ │ │ │ │ │ ├── abc.cpython-37.pyc
│ │ │ │ │ │ │ ├── readers.cpython-37.pyc
│ │ │ │ │ │ │ └── simple.cpython-37.pyc
│ │ │ │ │ │ ├── _adapters.py
│ │ │ │ │ │ ├── _common.py
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── _itertools.py
│ │ │ │ │ │ ├── _legacy.py
│ │ │ │ │ │ ├── abc.py
│ │ │ │ │ │ ├── readers.py
│ │ │ │ │ │ └── simple.py
│ │ │ │ │ ├── jaraco
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ ├── context.cpython-37.pyc
│ │ │ │ │ │ │ └── functools.cpython-37.pyc
│ │ │ │ │ │ ├── context.py
│ │ │ │ │ │ ├── functools.py
│ │ │ │ │ │ └── text
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ │ └── __init__.cpython-37.pyc
│ │ │ │ │ ├── more_itertools
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ ├── more.cpython-37.pyc
│ │ │ │ │ │ │ └── recipes.cpython-37.pyc
│ │ │ │ │ │ ├── more.py
│ │ │ │ │ │ └── recipes.py
│ │ │ │ │ ├── ordered_set.py
│ │ │ │ │ ├── packaging
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ ├── _elffile.cpython-37.pyc
│ │ │ │ │ │ │ ├── _manylinux.cpython-37.pyc
│ │ │ │ │ │ │ ├── _musllinux.cpython-37.pyc
│ │ │ │ │ │ │ ├── _parser.cpython-37.pyc
│ │ │ │ │ │ │ ├── _structures.cpython-37.pyc
│ │ │ │ │ │ │ ├── _tokenizer.cpython-37.pyc
│ │ │ │ │ │ │ ├── markers.cpython-37.pyc
│ │ │ │ │ │ │ ├── requirements.cpython-37.pyc
│ │ │ │ │ │ │ ├── specifiers.cpython-37.pyc
│ │ │ │ │ │ │ ├── tags.cpython-37.pyc
│ │ │ │ │ │ │ ├── utils.cpython-37.pyc
│ │ │ │ │ │ │ └── version.cpython-37.pyc
│ │ │ │ │ │ ├── _elffile.py
│ │ │ │ │ │ ├── _manylinux.py
│ │ │ │ │ │ ├── _musllinux.py
│ │ │ │ │ │ ├── _parser.py
│ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ ├── _tokenizer.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ ├── tags.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ ├── tomli
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ ├── _parser.cpython-37.pyc
│ │ │ │ │ │ │ ├── _re.cpython-37.pyc
│ │ │ │ │ │ │ └── _types.cpython-37.pyc
│ │ │ │ │ │ ├── _parser.py
│ │ │ │ │ │ ├── _re.py
│ │ │ │ │ │ └── _types.py
│ │ │ │ │ ├── typing_extensions.py
│ │ │ │ │ └── zipp.py
│ │ │ │ │ ├── archive_util.py
│ │ │ │ │ ├── build_meta.py
│ │ │ │ │ ├── cli-32.exe
│ │ │ │ │ ├── cli-64.exe
│ │ │ │ │ ├── cli-arm64.exe
│ │ │ │ │ ├── cli.exe
│ │ │ │ │ ├── command
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ ├── alias.cpython-37.pyc
│ │ │ │ │ │ ├── bdist_egg.cpython-37.pyc
│ │ │ │ │ │ ├── bdist_rpm.cpython-37.pyc
│ │ │ │ │ │ ├── build.cpython-37.pyc
│ │ │ │ │ │ ├── build_clib.cpython-37.pyc
│ │ │ │ │ │ ├── build_ext.cpython-37.pyc
│ │ │ │ │ │ ├── build_py.cpython-37.pyc
│ │ │ │ │ │ ├── develop.cpython-37.pyc
│ │ │ │ │ │ ├── dist_info.cpython-37.pyc
│ │ │ │ │ │ ├── easy_install.cpython-37.pyc
│ │ │ │ │ │ ├── editable_wheel.cpython-37.pyc
│ │ │ │ │ │ ├── egg_info.cpython-37.pyc
│ │ │ │ │ │ ├── install.cpython-37.pyc
│ │ │ │ │ │ ├── install_egg_info.cpython-37.pyc
│ │ │ │ │ │ ├── install_lib.cpython-37.pyc
│ │ │ │ │ │ ├── install_scripts.cpython-37.pyc
│ │ │ │ │ │ ├── py36compat.cpython-37.pyc
│ │ │ │ │ │ ├── register.cpython-37.pyc
│ │ │ │ │ │ ├── rotate.cpython-37.pyc
│ │ │ │ │ │ ├── saveopts.cpython-37.pyc
│ │ │ │ │ │ ├── sdist.cpython-37.pyc
│ │ │ │ │ │ ├── setopt.cpython-37.pyc
│ │ │ │ │ │ ├── test.cpython-37.pyc
│ │ │ │ │ │ ├── upload.cpython-37.pyc
│ │ │ │ │ │ └── upload_docs.cpython-37.pyc
│ │ │ │ │ ├── alias.py
│ │ │ │ │ ├── bdist_egg.py
│ │ │ │ │ ├── bdist_rpm.py
│ │ │ │ │ ├── build.py
│ │ │ │ │ ├── build_clib.py
│ │ │ │ │ ├── build_ext.py
│ │ │ │ │ ├── build_py.py
│ │ │ │ │ ├── develop.py
│ │ │ │ │ ├── dist_info.py
│ │ │ │ │ ├── easy_install.py
│ │ │ │ │ ├── editable_wheel.py
│ │ │ │ │ ├── egg_info.py
│ │ │ │ │ ├── install.py
│ │ │ │ │ ├── install_egg_info.py
│ │ │ │ │ ├── install_lib.py
│ │ │ │ │ ├── install_scripts.py
│ │ │ │ │ ├── launcher manifest.xml
│ │ │ │ │ ├── py36compat.py
│ │ │ │ │ ├── register.py
│ │ │ │ │ ├── rotate.py
│ │ │ │ │ ├── saveopts.py
│ │ │ │ │ ├── sdist.py
│ │ │ │ │ ├── setopt.py
│ │ │ │ │ ├── test.py
│ │ │ │ │ ├── upload.py
│ │ │ │ │ └── upload_docs.py
│ │ │ │ │ ├── config
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ ├── _apply_pyprojecttoml.cpython-37.pyc
│ │ │ │ │ │ ├── expand.cpython-37.pyc
│ │ │ │ │ │ ├── pyprojecttoml.cpython-37.pyc
│ │ │ │ │ │ └── setupcfg.cpython-37.pyc
│ │ │ │ │ ├── _apply_pyprojecttoml.py
│ │ │ │ │ ├── _validate_pyproject
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ │ ├── error_reporting.cpython-37.pyc
│ │ │ │ │ │ │ ├── extra_validations.cpython-37.pyc
│ │ │ │ │ │ │ ├── fastjsonschema_exceptions.cpython-37.pyc
│ │ │ │ │ │ │ ├── fastjsonschema_validations.cpython-37.pyc
│ │ │ │ │ │ │ └── formats.cpython-37.pyc
│ │ │ │ │ │ ├── error_reporting.py
│ │ │ │ │ │ ├── extra_validations.py
│ │ │ │ │ │ ├── fastjsonschema_exceptions.py
│ │ │ │ │ │ ├── fastjsonschema_validations.py
│ │ │ │ │ │ └── formats.py
│ │ │ │ │ ├── expand.py
│ │ │ │ │ ├── pyprojecttoml.py
│ │ │ │ │ └── setupcfg.py
│ │ │ │ │ ├── dep_util.py
│ │ │ │ │ ├── depends.py
│ │ │ │ │ ├── discovery.py
│ │ │ │ │ ├── dist.py
│ │ │ │ │ ├── errors.py
│ │ │ │ │ ├── extension.py
│ │ │ │ │ ├── extern
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ │ └── __init__.cpython-37.pyc
│ │ │ │ │ ├── glob.py
│ │ │ │ │ ├── gui-32.exe
│ │ │ │ │ ├── gui-64.exe
│ │ │ │ │ ├── gui-arm64.exe
│ │ │ │ │ ├── gui.exe
│ │ │ │ │ ├── installer.py
│ │ │ │ │ ├── launch.py
│ │ │ │ │ ├── logging.py
│ │ │ │ │ ├── monkey.py
│ │ │ │ │ ├── msvc.py
│ │ │ │ │ ├── namespaces.py
│ │ │ │ │ ├── package_index.py
│ │ │ │ │ ├── py312compat.py
│ │ │ │ │ ├── py34compat.py
│ │ │ │ │ ├── sandbox.py
│ │ │ │ │ ├── script (dev).tmpl
│ │ │ │ │ ├── script.tmpl
│ │ │ │ │ ├── unicode_utils.py
│ │ │ │ │ ├── version.py
│ │ │ │ │ ├── warnings.py
│ │ │ │ │ ├── wheel.py
│ │ │ │ │ └── windows_support.py
│ │ │ ├── opt
│ │ │ │ └── python
│ │ │ │ │ ├── libmediainfo.la
│ │ │ │ │ ├── libmediainfo.lai
│ │ │ │ │ ├── libmediainfo.so
│ │ │ │ │ ├── libmediainfo.so.0
│ │ │ │ │ └── libmediainfo.so.0.0.0
│ │ │ └── parameters.json
│ │ ├── MAPSRequestProcessing
│ │ │ ├── MAPSRequestProcessing-cloudformation-template.json
│ │ │ ├── Pipfile
│ │ │ ├── Pipfile.lock
│ │ │ ├── parameters.json
│ │ │ └── src
│ │ │ │ ├── app.py
│ │ │ │ ├── chalice
│ │ │ │ ├── __init__.py
│ │ │ │ └── app.py
│ │ │ │ ├── ddb_handler.py
│ │ │ │ ├── event.json
│ │ │ │ ├── s3_handler.py
│ │ │ │ └── util.py
│ │ ├── maps2692126626921266PostConfirmation
│ │ │ ├── function-parameters.json
│ │ │ ├── maps2692126626921266PostConfirmation-cloudformation-template.json
│ │ │ ├── parameters.json
│ │ │ └── src
│ │ │ │ ├── add-to-group.js
│ │ │ │ ├── event.json
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ ├── mapsdeletefolderhandler
│ │ │ ├── Pipfile
│ │ │ ├── Pipfile.lock
│ │ │ ├── mapsdeletefolderhandler-cloudformation-template.json
│ │ │ ├── parameters.json
│ │ │ └── src
│ │ │ │ ├── event.json
│ │ │ │ └── lambda_function.py
│ │ ├── mapsfsxstatushandler
│ │ │ ├── Pipfile
│ │ │ ├── Pipfile.lock
│ │ │ ├── mapsfsxstatushandler-cloudformation-template.json
│ │ │ ├── parameters.json
│ │ │ └── src
│ │ │ │ ├── event.json
│ │ │ │ └── lambda_function.py
│ │ ├── mapsmediaconvertstartjob
│ │ │ ├── Pipfile
│ │ │ ├── Pipfile.lock
│ │ │ ├── mapsmediaconvertstartjob-cloudformation-template.json
│ │ │ ├── parameters.json
│ │ │ └── src
│ │ │ │ ├── event.json
│ │ │ │ └── lambda_function.py
│ │ └── mapspopulatemetadata
│ │ │ ├── Pipfile
│ │ │ ├── Pipfile.lock
│ │ │ ├── function-parameters.json
│ │ │ ├── mapspopulatemetadata-cloudformation-template.json
│ │ │ ├── parameters.json
│ │ │ └── src
│ │ │ ├── event.json
│ │ │ └── lambda_function.py
│ ├── res
│ │ └── MAPS
│ │ │ ├── parameters.json
│ │ │ └── template.json
│ ├── tables
│ │ └── MAPSTables
│ │ │ ├── parameters.json
│ │ │ └── template.json
│ └── tags.json
├── cli.json
└── hooks
│ ├── README.md
│ ├── post-push.sh.sample
│ └── pre-push.js.sample
├── docs
└── GettingStarted.md
├── images
├── MAPS.png
├── architecture.png
├── copy_fsx.png
├── create_folder.png
├── main_configured.png
├── maps_main.png
├── maps_settings.png
├── media_preview.png
├── move_folders.png
└── uploading.png
├── package.json
├── public
├── error.html
├── explorer.css
├── explorer.js
├── favicon.ico
├── index.html
├── logo512.png
├── manifest.json
└── robots.txt
├── scripts
└── MoveMedia.ps1
└── src
├── App.js
├── components
├── Cards
│ ├── CardAsset.js
│ └── CardAssetView.js
├── Custom
│ └── CustomComponents.js
├── Main
│ └── MAPSMain.js
├── Table
│ ├── TableAsset.js
│ ├── TableAssetHeaderView.js
│ ├── TableAssetView.js
│ └── TableFolder.js
├── Utilities
│ ├── APIInterface.js
│ ├── CancellablePromise.js
│ ├── ContextMenu.js
│ ├── CustomPlayer.js
│ ├── FilePicker.js
│ ├── FolderCreation.js
│ ├── FolderSelect.js
│ ├── FormatUtil.js
│ ├── PermissionsView.js
│ └── TableSortUtil.js
├── UtilityPages
│ └── AppSettings.js
└── View
│ ├── ControlsToolbar.js
│ ├── EmptyToolbar.js
│ ├── MainAssetView.js
│ └── MainToolbar.js
├── graphql
├── mutations.js
├── queries.js
├── schema.json
└── subscriptions.js
├── index.css
├── index.js
├── media
├── logo192.png
└── media_small.png
└── store
├── mapsconfig
└── mapsconfig.js
├── store.js
└── user
└── user.js
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 |
6 | /.pnp
7 | .pnp.js
8 |
9 | # testing
10 | /coverage
11 |
12 | # production
13 | /build
14 |
15 | # misc
16 | .DS_Store
17 | .env.local
18 | .env.development.local
19 | .env.test.local
20 | .env.production.local
21 |
22 | npm-debug.log*
23 | yarn-debug.log*
24 | yarn-error.log*
25 |
26 | #amplify
27 | amplify/\#current-cloud-backend
28 | amplify/.config/local-*
29 | amplify/mock-data
30 | amplify/backend/amplify-meta.json
31 | amplify/backend/awscloudformation
32 | build/
33 | dist/
34 | node_modules/
35 | awsconfiguration.json
36 | amplifyconfiguration.json
37 | amplify-build-config.json
38 | amplify-gradle-config.json
39 | amplifyxc.config
40 | amplify/\#current-cloud-backend
41 | amplify/.config/local-*
42 | amplify/backend/amplify-meta.json
43 | amplify/backend/awscloudformation
44 |
45 | amplify/team-provider-info.json
--------------------------------------------------------------------------------
/.graphqlconfig.yml:
--------------------------------------------------------------------------------
1 | projects:
2 | MAPSMediaAssetAPI:
3 | schemaPath: src/graphql/schema.json
4 | includes:
5 | - src/graphql/**/*.js
6 | excludes:
7 | - ./amplify/**
8 | extensions:
9 | amplify:
10 | codeGenTarget: javascript
11 | generatedFileName: ''
12 | docsFilePath: src/graphql
13 | extensions:
14 | amplify:
15 | version: 3
16 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | ## Code of Conduct
2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
4 | opensource-codeofconduct@amazon.com with any additional questions or comments.
5 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this
4 | software and associated documentation files (the "Software"), to deal in the Software
5 | without restriction, including without limitation the rights to use, copy, modify,
6 | merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
7 | permit persons to whom the Software is furnished to do so.
8 |
9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
10 | INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
11 | PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
12 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
13 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
14 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--------------------------------------------------------------------------------
/amplify.yml:
--------------------------------------------------------------------------------
1 | version: 1
2 | backend:
3 | phases:
4 | preBuild:
5 | commands:
6 | - export BASE_PATH=$(pwd)
7 | - yum install -y gcc openssl-devel bzip2-devel libffi-devel python3.9-pip python3.7-pip
8 | - cd /opt && wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tgz && wget https://www.python.org/ftp/python/3.7.5/Python-3.7.5.tgz
9 | - cd /opt && tar xzf Python-3.9.6.tgz && tar xzf Python-3.7.5.tgz
10 | - cd /opt/Python-3.9.6 && ./configure --enable-optimizations
11 | - cd /opt/Python-3.9.6 && make altinstall
12 | - pip3.9 install --user pipenv
13 | - cd /opt/Python-3.7.5 && ./configure --enable-optimizations
14 | - cd /opt/Python-3.7.5 && make altinstall
15 | - pip3.7 install --user pipenv
16 | - ln -fs /usr/local/bin/python3.9 /usr/bin/python3
17 | - ln -fs /usr/local/bin/pip3.9 /usr/bin/pip3
18 | - cd $BASE_PATH
19 | build:
20 | commands:
21 | - '# Execute Amplify CLI with the helper script'
22 | - amplifyPush --simple
23 | frontend:
24 | phases:
25 | preBuild:
26 | commands:
27 | - npm install
28 | - npm install react-scripts
29 | build:
30 | commands:
31 | - npm run build
32 | artifacts:
33 | baseDirectory: build
34 | files:
35 | - '**/*'
36 | cache:
37 | paths:
38 | - node_modules/**/*
--------------------------------------------------------------------------------
/amplify/.config/project-config.json:
--------------------------------------------------------------------------------
1 | {
2 | "projectName": "MAPS",
3 | "version": "4.0",
4 | "frontend": "javascript",
5 | "javascript": {
6 | "framework": "react",
7 | "config": {
8 | "SourceDir": "src",
9 | "DistributionDir": "build",
10 | "BuildCommand": "npm run-script build",
11 | "StartCommand": "npm run-script start"
12 | }
13 | },
14 | "providers": [
15 | "awscloudformation"
16 | ]
17 | }
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSFrontEndAPI/parameters.json:
--------------------------------------------------------------------------------
1 | {
2 | "authRoleName": {
3 | "Ref": "AuthRoleName"
4 | },
5 | "unauthRoleName": {
6 | "Ref": "UnauthRoleName"
7 | }
8 | }
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/cli-inputs.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": 1,
3 | "serviceConfiguration": {
4 | "serviceName": "AppSync",
5 | "defaultAuthType": {
6 | "mode": "AMAZON_COGNITO_USER_POOLS",
7 | "cognitoUserPoolId": "authmaps2692126626921266"
8 | },
9 | "additionalAuthTypes": [
10 | {
11 | "mode": "API_KEY",
12 | "expirationTime": 90,
13 | "apiKeyExpirationDate": "2023-09-15T01:59:04.344Z",
14 | "keyDescription": "API Key for Lambdas"
15 | }
16 | ],
17 | "conflictResolution": {},
18 | "apiName": "MAPSMediaAssetAPI"
19 | }
20 | }
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/parameters.json:
--------------------------------------------------------------------------------
1 | {
2 | "AppSyncApiName": "MAPSMediaAssetAPI",
3 | "DynamoDBBillingMode": "PAY_PER_REQUEST",
4 | "DynamoDBEnableServerSideEncryption": false,
5 | "AuthCognitoUserPoolId": {
6 | "Fn::GetAtt": [
7 | "authmaps2692126626921266",
8 | "Outputs.UserPoolId"
9 | ]
10 | }
11 | }
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Mutation.createMAPSAssets.req.vtl:
--------------------------------------------------------------------------------
1 | {
2 | "version": "2017-02-28",
3 | "operation": "PutItem",
4 | "key": {
5 | "bucketObjKey": $util.dynamodb.toDynamoDBJson($ctx.args.input.bucketObjKey),
6 | },
7 | "attributeValues": $util.dynamodb.toMapValuesJson($ctx.args.input),
8 | "condition": {
9 | "expression": "attribute_not_exists(#bucketObjKey)",
10 | "expressionNames": {
11 | "#bucketObjKey": "bucketObjKey",
12 | },
13 | },
14 | }
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Mutation.createMAPSAssets.res.vtl:
--------------------------------------------------------------------------------
1 | $util.toJson($context.result)
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Mutation.deleteMAPSAssets.req.vtl:
--------------------------------------------------------------------------------
1 | {
2 | "version": "2017-02-28",
3 | "operation": "DeleteItem",
4 | "key": {
5 | "bucketObjKey": $util.dynamodb.toDynamoDBJson($ctx.args.input.bucketObjKey),
6 | },
7 | }
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Mutation.deleteMAPSAssets.res.vtl:
--------------------------------------------------------------------------------
1 | $util.toJson($context.result)
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Mutation.updateMAPSAssets.res.vtl:
--------------------------------------------------------------------------------
1 | $util.toJson($context.result)
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Query.getMAPSAssets.req.vtl:
--------------------------------------------------------------------------------
1 | {
2 | "version": "2017-02-28",
3 | "operation": "GetItem",
4 | "key": {
5 | "bucketObjKey": $util.dynamodb.toDynamoDBJson($ctx.args.bucketObjKey),
6 | },
7 | }
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Query.getMAPSAssets.res.vtl:
--------------------------------------------------------------------------------
1 | $util.toJson($context.result)
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Query.listMAPSAssets.req.vtl:
--------------------------------------------------------------------------------
1 | {
2 | "version": "2017-02-28",
3 | "operation": "Scan",
4 | "filter": #if($ctx.prev.result.arguments.filter) $util.transform.toDynamoDBFilterExpression($ctx.prev.result.arguments.filter) #else null #end
5 | #if( ${context.arguments.limit} )
6 | ,"limit": $util.toJson($context.arguments.limit)
7 | #end
8 | #if( ${context.arguments.nextToken} )
9 | ,"nextToken": $util.toJson($context.arguments.nextToken)
10 | #end
11 | }
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Query.listMAPSAssets.res.vtl:
--------------------------------------------------------------------------------
1 | ## In order to retain the same execution behavior for 2017-02-28 templates
2 | ## you might have to uncomment the following code below.
3 | ## For more details about changes from 2017-02-28 to 2018-05-29 see
4 | ## https://docs-aws.amazon.com/appsync/latest/devguide/resolver-mapping-template-changelog.html
5 | ##
6 | ## #if($ctx.error)
7 | ## $util.error($ctx.error.message, $ctx.error.type)
8 | ## #end
9 | ## #if($util.isNull($ctx.result))
10 | ## #return
11 | ## #end
12 |
13 | {
14 | #if($context.prev.result.arguments.allow)
15 | "items": $util.toJson($context.result.items)
16 | #else
17 | $util.toJson({"items": []})
18 | #end
19 | #if( ${context.result.nextToken} )
20 | ,"nextToken": $util.toJson($context.result.nextToken)
21 | #end
22 | }
23 |
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Query.pipelineMAPSAssets.req.vtl:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Query.pipelineMAPSAssets.res.vtl:
--------------------------------------------------------------------------------
1 | ## The after mapping template is used to collect the final value that is returned by the resolver.
2 | $util.toJson($ctx.result)
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Query.userGroupLookup.req.vtl:
--------------------------------------------------------------------------------
1 | #**
2 | The value of 'payload' after the template has been evaluated
3 | will be passed as the event to AWS Lambda.
4 | *#
5 | {
6 | "operation": "Invoke",
7 | "payload": $util.toJson($context)
8 | }
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/Query.userGroupLookup.res.vtl:
--------------------------------------------------------------------------------
1 | ## Raise a GraphQL field error in case of a datasource invocation error
2 | #if($ctx.error)
3 | $util.error($ctx.error.message, $ctx.error.type)
4 | #end
5 | $util.toJson($ctx.result)
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/resolvers/README.md:
--------------------------------------------------------------------------------
1 | Any resolvers that you add in this directory will override the ones automatically generated by Amplify CLI and will be directly copied to the cloud.
2 | For more information, visit [https://docs.amplify.aws/cli/graphql-transformer/resolvers](https://docs.amplify.aws/cli/graphql-transformer/resolvers)
--------------------------------------------------------------------------------
/amplify/backend/api/MAPSMediaAssetAPI/transform.conf.json:
--------------------------------------------------------------------------------
1 | {
2 | "Version": 5
3 | }
--------------------------------------------------------------------------------
/amplify/backend/auth/userPoolGroups/parameters.json:
--------------------------------------------------------------------------------
1 | {
2 | "AuthRoleArn": {
3 | "Fn::GetAtt": [
4 | "AuthRole",
5 | "Arn"
6 | ]
7 | },
8 | "UnauthRoleArn": {
9 | "Fn::GetAtt": [
10 | "UnauthRole",
11 | "Arn"
12 | ]
13 | }
14 | }
--------------------------------------------------------------------------------
/amplify/backend/auth/userPoolGroups/user-pool-group-precedence.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "groupName": "admin",
4 | "precedence": 1,
5 | "customPolicies": [
6 | {
7 | "PolicyName": "admin-group-policy",
8 | "PolicyDocument": {
9 | "Version": "2012-10-17",
10 | "Statement": [
11 | {
12 | "Sid": "statement1",
13 | "Effect": "Allow",
14 | "Action": [
15 | "s3:DeleteObject",
16 | "s3:PutObject",
17 | "s3:GetObject"
18 | ],
19 | "Resource": [
20 | "arn:aws:s3:::*"
21 | ]
22 | }
23 | ]
24 | }
25 | }
26 | ]
27 | },
28 | {
29 | "groupName": "editors",
30 | "precedence": 2,
31 | "customPolicies": [
32 | {
33 | "PolicyName": "admin-group-policy",
34 | "PolicyDocument": {
35 | "Version": "2012-10-17",
36 | "Statement": [
37 | {
38 | "Sid": "statement1",
39 | "Effect": "Allow",
40 | "Action": [
41 | "s3:DeleteObject",
42 | "s3:PutObject",
43 | "s3:GetObject"
44 | ],
45 | "Resource": [
46 | "arn:aws:s3:::*"
47 | ]
48 | }
49 | ]
50 | }
51 | }
52 | ]
53 | }
54 | ]
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSLambdaResolver/Pipfile:
--------------------------------------------------------------------------------
1 | [[source]]
2 | name = "pypi"
3 | url = "https://pypi.org/simple"
4 | verify_ssl = true
5 |
6 | [dev-packages]
7 |
8 | [packages]
9 |
10 | [requires]
11 | python_version = "3.9"
12 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSLambdaResolver/Pipfile.lock:
--------------------------------------------------------------------------------
1 | {
2 | "_meta": {
3 | "hash": {
4 | "sha256": "a36a5392bb1e8bbc06bfaa0761e52593cf2d83b486696bf54667ba8da616c839"
5 | },
6 | "pipfile-spec": 6,
7 | "requires": {
8 | "python_version": "3.9"
9 | },
10 | "sources": [
11 | {
12 | "name": "pypi",
13 | "url": "https://pypi.org/simple",
14 | "verify_ssl": true
15 | }
16 | ]
17 | },
18 | "default": {},
19 | "develop": {}
20 | }
21 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSLambdaResolver/parameters.json:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSLambdaResolver/src/event.json:
--------------------------------------------------------------------------------
1 | { "test": "event" }
2 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/layer-configuration.json:
--------------------------------------------------------------------------------
1 | {
2 | "permissions": [
3 | {
4 | "type": "Private"
5 | }
6 | ],
7 | "runtimes": [
8 | {
9 | "value": "python",
10 | "name": "Python",
11 | "runtimePluginId": "amplify-python-function-runtime-provider",
12 | "layerExecutablePath": "python"
13 | }
14 | ]
15 | }
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/Pipfile:
--------------------------------------------------------------------------------
1 | [[source]]
2 | name = "pypi"
3 | url = "https://pypi.org/simple"
4 | verify_ssl = true
5 |
6 | [dev-packages]
7 |
8 | [packages]
9 | pymediainfo="4.2.1"
10 |
11 | [requires]
12 | python_version = "3.7"
13 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/README.txt:
--------------------------------------------------------------------------------
1 | Replace this file with your layer files
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/README.txt:
--------------------------------------------------------------------------------
1 | Replace this file with your layer files
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/_distutils_hack/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/_distutils_hack/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/_distutils_hack/__pycache__/override.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/_distutils_hack/__pycache__/override.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/_distutils_hack/override.py:
--------------------------------------------------------------------------------
1 | __import__('_distutils_hack').do_override()
2 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/distutils-precedence.pth:
--------------------------------------------------------------------------------
1 | import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'local') == 'local'; enabled and __import__('_distutils_hack').add_shim();
2 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.py
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/typing_extensions.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/typing_extensions.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py:
--------------------------------------------------------------------------------
1 | """Read resources contained within a package."""
2 |
3 | from ._common import (
4 | as_file,
5 | files,
6 | Package,
7 | )
8 |
9 | from ._legacy import (
10 | contents,
11 | open_binary,
12 | read_binary,
13 | open_text,
14 | read_text,
15 | is_resource,
16 | path,
17 | Resource,
18 | )
19 |
20 | from .abc import ResourceReader
21 |
22 |
23 | __all__ = [
24 | 'Package',
25 | 'Resource',
26 | 'ResourceReader',
27 | 'as_file',
28 | 'contents',
29 | 'files',
30 | 'is_resource',
31 | 'open_binary',
32 | 'open_text',
33 | 'path',
34 | 'read_binary',
35 | 'read_text',
36 | ]
37 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py:
--------------------------------------------------------------------------------
1 | from itertools import filterfalse
2 |
3 | from typing import (
4 | Callable,
5 | Iterable,
6 | Iterator,
7 | Optional,
8 | Set,
9 | TypeVar,
10 | Union,
11 | )
12 |
13 | # Type and type variable definitions
14 | _T = TypeVar('_T')
15 | _U = TypeVar('_U')
16 |
17 |
18 | def unique_everseen(
19 | iterable: Iterable[_T], key: Optional[Callable[[_T], _U]] = None
20 | ) -> Iterator[_T]:
21 | "List unique elements, preserving order. Remember all elements ever seen."
22 | # unique_everseen('AAAABBBCCDAABBB') --> A B C D
23 | # unique_everseen('ABBCcAD', str.lower) --> A B C D
24 | seen: Set[Union[_T, _U]] = set()
25 | seen_add = seen.add
26 | if key is None:
27 | for element in filterfalse(seen.__contains__, iterable):
28 | seen_add(element)
29 | yield element
30 | else:
31 | for element in iterable:
32 | k = key(element)
33 | if k not in seen:
34 | seen_add(k)
35 | yield element
36 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/jaraco/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/jaraco/__init__.py
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/more_itertools/__init__.py:
--------------------------------------------------------------------------------
1 | """More routines for operating on iterables, beyond itertools"""
2 |
3 | from .more import * # noqa
4 | from .recipes import * # noqa
5 |
6 | __version__ = '9.0.0'
7 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.py:
--------------------------------------------------------------------------------
1 | # This file is dual licensed under the terms of the Apache License, Version
2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository
3 | # for complete details.
4 |
5 | __title__ = "packaging"
6 | __summary__ = "Core utilities for Python packages"
7 | __uri__ = "https://github.com/pypa/packaging"
8 |
9 | __version__ = "23.0"
10 |
11 | __author__ = "Donald Stufft and individual contributors"
12 | __email__ = "donald@stufft.io"
13 |
14 | __license__ = "BSD-2-Clause or Apache-2.0"
15 | __copyright__ = "2014-2019 %s" % __author__
16 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_elffile.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_elffile.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_parser.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_parser.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_tokenizer.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_tokenizer.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__main__.py:
--------------------------------------------------------------------------------
1 | from __future__ import annotations
2 |
3 | from platformdirs import PlatformDirs, __version__
4 |
5 | PROPS = (
6 | "user_data_dir",
7 | "user_config_dir",
8 | "user_cache_dir",
9 | "user_state_dir",
10 | "user_log_dir",
11 | "user_documents_dir",
12 | "user_runtime_dir",
13 | "site_data_dir",
14 | "site_config_dir",
15 | )
16 |
17 |
18 | def main() -> None:
19 | app_name = "MyApp"
20 | app_author = "MyCompany"
21 |
22 | print(f"-- platformdirs {__version__} --")
23 |
24 | print("-- app dirs (with optional 'version')")
25 | dirs = PlatformDirs(app_name, app_author, version="1.0")
26 | for prop in PROPS:
27 | print(f"{prop}: {getattr(dirs, prop)}")
28 |
29 | print("\n-- app dirs (without optional 'version')")
30 | dirs = PlatformDirs(app_name, app_author)
31 | for prop in PROPS:
32 | print(f"{prop}: {getattr(dirs, prop)}")
33 |
34 | print("\n-- app dirs (without optional 'appauthor')")
35 | dirs = PlatformDirs(app_name)
36 | for prop in PROPS:
37 | print(f"{prop}: {getattr(dirs, prop)}")
38 |
39 | print("\n-- app dirs (with disabled 'appauthor')")
40 | dirs = PlatformDirs(app_name, appauthor=False)
41 | for prop in PROPS:
42 | print(f"{prop}: {getattr(dirs, prop)}")
43 |
44 |
45 | if __name__ == "__main__":
46 | main()
47 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__main__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__main__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/android.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/android.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/api.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/api.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/macos.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/macos.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/unix.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/unix.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/windows.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/windows.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/_vendor/platformdirs/version.py:
--------------------------------------------------------------------------------
1 | # file generated by setuptools_scm
2 | # don't change, don't track in version control
3 | __version__ = version = '2.6.2'
4 | __version_tuple__ = version_tuple = (2, 6, 2)
5 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pymediainfo-4.2.1-py3.7.egg-info/SOURCES.txt:
--------------------------------------------------------------------------------
1 | AUTHORS
2 | LICENSE
3 | README.rst
4 | appveyor.yml
5 | demo.py
6 | setup.cfg
7 | setup.py
8 | docs/Makefile
9 | docs/conf.py
10 | docs/index.rst
11 | docs/make.bat
12 | docs/pymediainfo.rst
13 | pymediainfo/__init__.py
14 | pymediainfo.egg-info/PKG-INFO
15 | pymediainfo.egg-info/SOURCES.txt
16 | pymediainfo.egg-info/dependency_links.txt
17 | pymediainfo.egg-info/namespace_packages.txt
18 | pymediainfo.egg-info/not-zip-safe
19 | pymediainfo.egg-info/requires.txt
20 | pymediainfo.egg-info/top_level.txt
21 | tests/test_pymediainfo.py
22 | tests/data/aac_he_v2.aac
23 | tests/data/accentué.txt
24 | tests/data/invalid.xml
25 | tests/data/issue55.flv
26 | tests/data/sample.mkv
27 | tests/data/sample.mp4
28 | tests/data/sample.xml
29 | tests/data/sample_with_cover.mp3
30 | tests/data/vbr_requires_parsespeed_1.mp4
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pymediainfo-4.2.1-py3.7.egg-info/dependency_links.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pymediainfo-4.2.1-py3.7.egg-info/installed-files.txt:
--------------------------------------------------------------------------------
1 | ../pymediainfo/__init__.py
2 | ../pymediainfo/__pycache__/__init__.cpython-37.pyc
3 | PKG-INFO
4 | SOURCES.txt
5 | dependency_links.txt
6 | namespace_packages.txt
7 | not-zip-safe
8 | requires.txt
9 | top_level.txt
10 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pymediainfo-4.2.1-py3.7.egg-info/namespace_packages.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pymediainfo-4.2.1-py3.7.egg-info/not-zip-safe:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pymediainfo-4.2.1-py3.7.egg-info/requires.txt:
--------------------------------------------------------------------------------
1 | setuptools
2 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pymediainfo-4.2.1-py3.7.egg-info/top_level.txt:
--------------------------------------------------------------------------------
1 | pymediainfo
2 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pymediainfo/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/pymediainfo/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools-67.8.0.dist-info/INSTALLER:
--------------------------------------------------------------------------------
1 | pip
2 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools-67.8.0.dist-info/LICENSE:
--------------------------------------------------------------------------------
1 | Permission is hereby granted, free of charge, to any person obtaining a copy
2 | of this software and associated documentation files (the "Software"), to
3 | deal in the Software without restriction, including without limitation the
4 | rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
5 | sell copies of the Software, and to permit persons to whom the Software is
6 | furnished to do so, subject to the following conditions:
7 |
8 | The above copyright notice and this permission notice shall be included in
9 | all copies or substantial portions of the Software.
10 |
11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
16 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
17 | IN THE SOFTWARE.
18 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools-67.8.0.dist-info/WHEEL:
--------------------------------------------------------------------------------
1 | Wheel-Version: 1.0
2 | Generator: bdist_wheel (0.40.0)
3 | Root-Is-Purelib: true
4 | Tag: py3-none-any
5 |
6 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools-67.8.0.dist-info/top_level.txt:
--------------------------------------------------------------------------------
1 | _distutils_hack
2 | pkg_resources
3 | setuptools
4 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_entry_points.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_entry_points.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_imp.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_imp.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_importlib.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_importlib.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_itertools.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_itertools.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_normalization.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_normalization.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_path.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_path.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_reqs.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/_reqs.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/archive_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/archive_util.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/build_meta.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/build_meta.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/dep_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/dep_util.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/depends.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/depends.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/discovery.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/discovery.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/dist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/dist.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/errors.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/errors.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/extension.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/extension.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/glob.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/glob.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/installer.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/installer.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/launch.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/launch.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/logging.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/logging.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/monkey.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/monkey.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/msvc.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/msvc.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/namespaces.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/namespaces.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/package_index.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/package_index.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/py312compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/py312compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/py34compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/py34compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/sandbox.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/sandbox.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/unicode_utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/unicode_utils.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/warnings.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/warnings.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/wheel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/wheel.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/windows_support.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/__pycache__/windows_support.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__init__.py:
--------------------------------------------------------------------------------
1 | import sys
2 | import importlib
3 |
4 | __version__, _, _ = sys.version.partition(' ')
5 |
6 |
7 | try:
8 | # Allow Debian and pkgsrc (only) to customize system
9 | # behavior. Ref pypa/distutils#2 and pypa/distutils#16.
10 | # This hook is deprecated and no other environments
11 | # should use it.
12 | importlib.import_module('_distutils_system_mod')
13 | except ImportError:
14 | pass
15 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/_log.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/_log.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/config.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/config.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/core.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/core.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/debug.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/debug.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/dist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/dist.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/errors.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/errors.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/extension.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/extension.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/log.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/log.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/util.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/_functools.py:
--------------------------------------------------------------------------------
1 | import functools
2 |
3 |
4 | # from jaraco.functools 3.5
5 | def pass_none(func):
6 | """
7 | Wrap func so it's not called if its first param is None
8 |
9 | >>> print_text = pass_none(print)
10 | >>> print_text('text')
11 | text
12 | >>> print_text(None)
13 | """
14 |
15 | @functools.wraps(func)
16 | def wrapper(param, *args, **kwargs):
17 | if param is not None:
18 | return func(param, *args, **kwargs)
19 |
20 | return wrapper
21 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/_log.py:
--------------------------------------------------------------------------------
1 | import logging
2 |
3 |
4 | log = logging.getLogger()
5 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/_macos_compat.py:
--------------------------------------------------------------------------------
1 | import sys
2 | import importlib
3 |
4 |
5 | def bypass_compiler_fixup(cmd, args):
6 | return cmd
7 |
8 |
9 | if sys.platform == 'darwin':
10 | compiler_fixup = importlib.import_module('_osx_support').compiler_fixup
11 | else:
12 | compiler_fixup = bypass_compiler_fixup
13 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__init__.py:
--------------------------------------------------------------------------------
1 | """distutils.command
2 |
3 | Package containing implementation of all the standard Distutils
4 | commands."""
5 |
6 | __all__ = [ # noqa: F822
7 | 'build',
8 | 'build_py',
9 | 'build_ext',
10 | 'build_clib',
11 | 'build_scripts',
12 | 'clean',
13 | 'install',
14 | 'install_lib',
15 | 'install_headers',
16 | 'install_scripts',
17 | 'install_data',
18 | 'sdist',
19 | 'register',
20 | 'bdist',
21 | 'bdist_dumb',
22 | 'bdist_rpm',
23 | 'check',
24 | 'upload',
25 | ]
26 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/install_headers.py:
--------------------------------------------------------------------------------
1 | """distutils.command.install_headers
2 |
3 | Implements the Distutils 'install_headers' command, to install C/C++ header
4 | files to the Python include directory."""
5 |
6 | from ..core import Command
7 |
8 |
9 | # XXX force is never used
10 | class install_headers(Command):
11 | description = "install C/C++ header files"
12 |
13 | user_options = [
14 | ('install-dir=', 'd', "directory to install header files to"),
15 | ('force', 'f', "force installation (overwrite existing files)"),
16 | ]
17 |
18 | boolean_options = ['force']
19 |
20 | def initialize_options(self):
21 | self.install_dir = None
22 | self.force = 0
23 | self.outfiles = []
24 |
25 | def finalize_options(self):
26 | self.set_undefined_options(
27 | 'install', ('install_headers', 'install_dir'), ('force', 'force')
28 | )
29 |
30 | def run(self):
31 | headers = self.distribution.headers
32 | if not headers:
33 | return
34 |
35 | self.mkpath(self.install_dir)
36 | for header in headers:
37 | (out, _) = self.copy_file(header, self.install_dir)
38 | self.outfiles.append(out)
39 |
40 | def get_inputs(self):
41 | return self.distribution.headers or []
42 |
43 | def get_outputs(self):
44 | return self.outfiles
45 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/command/py37compat.py:
--------------------------------------------------------------------------------
1 | import sys
2 |
3 |
4 | def _pythonlib_compat():
5 | """
6 | On Python 3.7 and earlier, distutils would include the Python
7 | library. See pypa/distutils#9.
8 | """
9 | from distutils import sysconfig
10 |
11 | if not sysconfig.get_config_var('Py_ENABLED_SHARED'):
12 | return
13 |
14 | yield 'python{}.{}{}'.format(
15 | sys.hexversion >> 24,
16 | (sys.hexversion >> 16) & 0xFF,
17 | sysconfig.get_config_var('ABIFLAGS'),
18 | )
19 |
20 |
21 | def compose(f1, f2):
22 | return lambda *args, **kwargs: f1(f2(*args, **kwargs))
23 |
24 |
25 | pythonlib = (
26 | compose(list, _pythonlib_compat)
27 | if sys.version_info < (3, 8)
28 | and sys.platform != 'darwin'
29 | and sys.platform[:3] != 'aix'
30 | else list
31 | )
32 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/debug.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 | # If DISTUTILS_DEBUG is anything other than the empty string, we run in
4 | # debug mode.
5 | DEBUG = os.environ.get('DISTUTILS_DEBUG')
6 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/log.py:
--------------------------------------------------------------------------------
1 | """
2 | A simple log mechanism styled after PEP 282.
3 |
4 | Retained for compatibility and should not be used.
5 | """
6 |
7 | import logging
8 | import warnings
9 |
10 | from ._log import log as _global_log
11 |
12 |
13 | DEBUG = logging.DEBUG
14 | INFO = logging.INFO
15 | WARN = logging.WARN
16 | ERROR = logging.ERROR
17 | FATAL = logging.FATAL
18 |
19 | log = _global_log.log
20 | debug = _global_log.debug
21 | info = _global_log.info
22 | warn = _global_log.warning
23 | error = _global_log.error
24 | fatal = _global_log.fatal
25 |
26 |
27 | def set_threshold(level):
28 | orig = _global_log.level
29 | _global_log.setLevel(level)
30 | return orig
31 |
32 |
33 | def set_verbosity(v):
34 | if v <= 0:
35 | set_threshold(logging.WARN)
36 | elif v == 1:
37 | set_threshold(logging.INFO)
38 | elif v >= 2:
39 | set_threshold(logging.DEBUG)
40 |
41 |
42 | class Log(logging.Logger):
43 | """distutils.log.Log is deprecated, please use an alternative from `logging`."""
44 |
45 | def __init__(self, threshold=WARN):
46 | warnings.warn(Log.__doc__) # avoid DeprecationWarning to ensure warn is shown
47 | super().__init__(__name__, level=threshold)
48 |
49 | @property
50 | def threshold(self):
51 | return self.level
52 |
53 | @threshold.setter
54 | def threshold(self, level):
55 | self.setLevel(level)
56 |
57 | warn = logging.Logger.warning
58 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/py38compat.py:
--------------------------------------------------------------------------------
1 | def aix_platform(osname, version, release):
2 | try:
3 | import _aix_support
4 |
5 | return _aix_support.aix_platform()
6 | except ImportError:
7 | pass
8 | return "{}-{}.{}".format(osname, version, release)
9 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_distutils/py39compat.py:
--------------------------------------------------------------------------------
1 | import sys
2 | import platform
3 |
4 |
5 | def add_ext_suffix_39(vars):
6 | """
7 | Ensure vars contains 'EXT_SUFFIX'. pypa/distutils#130
8 | """
9 | import _imp
10 |
11 | ext_suffix = _imp.extension_suffixes()[0]
12 | vars.update(
13 | EXT_SUFFIX=ext_suffix,
14 | # sysconfig sets SO to match EXT_SUFFIX, so maintain
15 | # that expectation.
16 | # https://github.com/python/cpython/blob/785cc6770588de087d09e89a69110af2542be208/Lib/sysconfig.py#L671-L673
17 | SO=ext_suffix,
18 | )
19 |
20 |
21 | needs_ext_suffix = sys.version_info < (3, 10) and platform.system() == 'Windows'
22 | add_ext_suffix = add_ext_suffix_39 if needs_ext_suffix else lambda vars: None
23 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_itertools.py:
--------------------------------------------------------------------------------
1 | from setuptools.extern.more_itertools import consume # noqa: F401
2 |
3 |
4 | # copied from jaraco.itertools 6.1
5 | def ensure_unique(iterable, key=lambda x: x):
6 | """
7 | Wrap an iterable to raise a ValueError if non-unique values are encountered.
8 |
9 | >>> list(ensure_unique('abc'))
10 | ['a', 'b', 'c']
11 | >>> consume(ensure_unique('abca'))
12 | Traceback (most recent call last):
13 | ...
14 | ValueError: Duplicate element 'a' encountered.
15 | """
16 | seen = set()
17 | seen_add = seen.add
18 | for element in iterable:
19 | k = key(element)
20 | if k in seen:
21 | raise ValueError(f"Duplicate element {element!r} encountered.")
22 | seen_add(k)
23 | yield element
24 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_path.py:
--------------------------------------------------------------------------------
1 | import os
2 | import sys
3 | from typing import Union
4 |
5 | _Path = Union[str, os.PathLike]
6 |
7 |
8 | def ensure_directory(path):
9 | """Ensure that the parent directory of `path` exists"""
10 | dirname = os.path.dirname(path)
11 | os.makedirs(dirname, exist_ok=True)
12 |
13 |
14 | def same_path(p1: _Path, p2: _Path) -> bool:
15 | """Differs from os.path.samefile because it does not require paths to exist.
16 | Purely string based (no comparison between i-nodes).
17 | >>> same_path("a/b", "./a/b")
18 | True
19 | >>> same_path("a/b", "a/./b")
20 | True
21 | >>> same_path("a/b", "././a/b")
22 | True
23 | >>> same_path("a/b", "./a/b/c/..")
24 | True
25 | >>> same_path("a/b", "../a/b/c")
26 | False
27 | >>> same_path("a", "a/b")
28 | False
29 | """
30 | return normpath(p1) == normpath(p2)
31 |
32 |
33 | def normpath(filename: _Path) -> str:
34 | """Normalize a file/dir name for comparison purposes."""
35 | # See pkg_resources.normalize_path for notes about cygwin
36 | file = os.path.abspath(filename) if sys.platform == 'cygwin' else filename
37 | return os.path.normcase(os.path.realpath(os.path.normpath(file)))
38 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_reqs.py:
--------------------------------------------------------------------------------
1 | from typing import Callable, Iterable, Iterator, TypeVar, Union, overload
2 |
3 | import setuptools.extern.jaraco.text as text
4 | from setuptools.extern.packaging.requirements import Requirement
5 |
6 | _T = TypeVar("_T")
7 | _StrOrIter = Union[str, Iterable[str]]
8 |
9 |
10 | def parse_strings(strs: _StrOrIter) -> Iterator[str]:
11 | """
12 | Yield requirement strings for each specification in `strs`.
13 |
14 | `strs` must be a string, or a (possibly-nested) iterable thereof.
15 | """
16 | return text.join_continuation(map(text.drop_comment, text.yield_lines(strs)))
17 |
18 |
19 | @overload
20 | def parse(strs: _StrOrIter) -> Iterator[Requirement]:
21 | ...
22 |
23 |
24 | @overload
25 | def parse(strs: _StrOrIter, parser: Callable[[str], _T]) -> Iterator[_T]:
26 | ...
27 |
28 |
29 | def parse(strs, parser=Requirement):
30 | """
31 | Replacement for ``pkg_resources.parse_requirements`` that uses ``packaging``.
32 | """
33 | return map(parser, parse_strings(strs))
34 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/__init__.py
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_py39compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_py39compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/_collections.py:
--------------------------------------------------------------------------------
1 | import collections
2 |
3 |
4 | # from jaraco.collections 3.3
5 | class FreezableDefaultDict(collections.defaultdict):
6 | """
7 | Often it is desirable to prevent the mutation of
8 | a default dict after its initial construction, such
9 | as to prevent mutation during iteration.
10 |
11 | >>> dd = FreezableDefaultDict(list)
12 | >>> dd[0].append('1')
13 | >>> dd.freeze()
14 | >>> dd[1]
15 | []
16 | >>> len(dd)
17 | 1
18 | """
19 |
20 | def __missing__(self, key):
21 | return getattr(self, '_frozen', super().__missing__)(key)
22 |
23 | def freeze(self):
24 | self._frozen = lambda key: self.default_factory()
25 |
26 |
27 | class Pair(collections.namedtuple('Pair', 'name value')):
28 | @classmethod
29 | def parse(cls, text):
30 | return cls(*map(str.strip, text.split("=", 1)))
31 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/_meta.py:
--------------------------------------------------------------------------------
1 | from ._compat import Protocol
2 | from typing import Any, Dict, Iterator, List, TypeVar, Union
3 |
4 |
5 | _T = TypeVar("_T")
6 |
7 |
8 | class PackageMetadata(Protocol):
9 | def __len__(self) -> int:
10 | ... # pragma: no cover
11 |
12 | def __contains__(self, item: str) -> bool:
13 | ... # pragma: no cover
14 |
15 | def __getitem__(self, key: str) -> str:
16 | ... # pragma: no cover
17 |
18 | def __iter__(self) -> Iterator[str]:
19 | ... # pragma: no cover
20 |
21 | def get_all(self, name: str, failobj: _T = ...) -> Union[List[Any], _T]:
22 | """
23 | Return all values associated with a possibly multi-valued key.
24 | """
25 |
26 | @property
27 | def json(self) -> Dict[str, Union[str, List[str]]]:
28 | """
29 | A JSON-compatible form of the metadata.
30 | """
31 |
32 |
33 | class SimplePath(Protocol[_T]):
34 | """
35 | A minimal subset of pathlib.Path required by PathDistribution.
36 | """
37 |
38 | def joinpath(self) -> _T:
39 | ... # pragma: no cover
40 |
41 | def __truediv__(self, other: Union[str, _T]) -> _T:
42 | ... # pragma: no cover
43 |
44 | @property
45 | def parent(self) -> _T:
46 | ... # pragma: no cover
47 |
48 | def read_text(self) -> str:
49 | ... # pragma: no cover
50 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py:
--------------------------------------------------------------------------------
1 | """
2 | Compatibility layer with Python 3.8/3.9
3 | """
4 | from typing import TYPE_CHECKING, Any, Optional
5 |
6 | if TYPE_CHECKING: # pragma: no cover
7 | # Prevent circular imports on runtime.
8 | from . import Distribution, EntryPoint
9 | else:
10 | Distribution = EntryPoint = Any
11 |
12 |
13 | def normalized_name(dist: Distribution) -> Optional[str]:
14 | """
15 | Honor name normalization for distributions that don't provide ``_normalized_name``.
16 | """
17 | try:
18 | return dist._normalized_name
19 | except AttributeError:
20 | from . import Prepared # -> delay to prevent circular imports.
21 |
22 | return Prepared.normalize(getattr(dist, "name", None) or dist.metadata['Name'])
23 |
24 |
25 | def ep_matches(ep: EntryPoint, **params) -> bool:
26 | """
27 | Workaround for ``EntryPoint`` objects without the ``matches`` method.
28 | """
29 | try:
30 | return ep.matches(**params)
31 | except AttributeError:
32 | from . import EntryPoint # -> delay to prevent circular imports.
33 |
34 | # Reconstruct the EntryPoint object to make sure it is compatible.
35 | return EntryPoint(ep.name, ep.value, ep.group).matches(**params)
36 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__init__.py:
--------------------------------------------------------------------------------
1 | """Read resources contained within a package."""
2 |
3 | from ._common import (
4 | as_file,
5 | files,
6 | Package,
7 | )
8 |
9 | from ._legacy import (
10 | contents,
11 | open_binary,
12 | read_binary,
13 | open_text,
14 | read_text,
15 | is_resource,
16 | path,
17 | Resource,
18 | )
19 |
20 | from .abc import ResourceReader
21 |
22 |
23 | __all__ = [
24 | 'Package',
25 | 'Resource',
26 | 'ResourceReader',
27 | 'as_file',
28 | 'contents',
29 | 'files',
30 | 'is_resource',
31 | 'open_binary',
32 | 'open_text',
33 | 'path',
34 | 'read_binary',
35 | 'read_text',
36 | ]
37 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/importlib_resources/_itertools.py:
--------------------------------------------------------------------------------
1 | from itertools import filterfalse
2 |
3 | from typing import (
4 | Callable,
5 | Iterable,
6 | Iterator,
7 | Optional,
8 | Set,
9 | TypeVar,
10 | Union,
11 | )
12 |
13 | # Type and type variable definitions
14 | _T = TypeVar('_T')
15 | _U = TypeVar('_U')
16 |
17 |
18 | def unique_everseen(
19 | iterable: Iterable[_T], key: Optional[Callable[[_T], _U]] = None
20 | ) -> Iterator[_T]:
21 | "List unique elements, preserving order. Remember all elements ever seen."
22 | # unique_everseen('AAAABBBCCDAABBB') --> A B C D
23 | # unique_everseen('ABBCcAD', str.lower) --> A B C D
24 | seen: Set[Union[_T, _U]] = set()
25 | seen_add = seen.add
26 | if key is None:
27 | for element in filterfalse(seen.__contains__, iterable):
28 | seen_add(element)
29 | yield element
30 | else:
31 | for element in iterable:
32 | k = key(element)
33 | if k not in seen:
34 | seen_add(k)
35 | yield element
36 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/jaraco/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/jaraco/__init__.py
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/more_itertools/__init__.py:
--------------------------------------------------------------------------------
1 | from .more import * # noqa
2 | from .recipes import * # noqa
3 |
4 | __version__ = '8.8.0'
5 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__init__.py:
--------------------------------------------------------------------------------
1 | # This file is dual licensed under the terms of the Apache License, Version
2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository
3 | # for complete details.
4 |
5 | __title__ = "packaging"
6 | __summary__ = "Core utilities for Python packages"
7 | __uri__ = "https://github.com/pypa/packaging"
8 |
9 | __version__ = "23.0"
10 |
11 | __author__ = "Donald Stufft and individual contributors"
12 | __email__ = "donald@stufft.io"
13 |
14 | __license__ = "BSD-2-Clause or Apache-2.0"
15 | __copyright__ = "2014-2019 %s" % __author__
16 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_elffile.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_elffile.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_parser.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_parser.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_tokenizer.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/_tokenizer.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/tomli/__init__.py:
--------------------------------------------------------------------------------
1 | # SPDX-License-Identifier: MIT
2 | # SPDX-FileCopyrightText: 2021 Taneli Hukkinen
3 | # Licensed to PSF under a Contributor Agreement.
4 |
5 | __all__ = ("loads", "load", "TOMLDecodeError")
6 | __version__ = "2.0.1" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
7 |
8 | from ._parser import TOMLDecodeError, load, loads
9 |
10 | # Pretend this exception was created here.
11 | TOMLDecodeError.__module__ = __name__
12 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/_vendor/tomli/_types.py:
--------------------------------------------------------------------------------
1 | # SPDX-License-Identifier: MIT
2 | # SPDX-FileCopyrightText: 2021 Taneli Hukkinen
3 | # Licensed to PSF under a Contributor Agreement.
4 |
5 | from typing import Any, Callable, Tuple
6 |
7 | # Type annotations
8 | ParseFloat = Callable[[str], Any]
9 | Key = Tuple[str, ...]
10 | Pos = int
11 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/cli-32.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/cli-32.exe
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/cli-64.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/cli-64.exe
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/cli-arm64.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/cli-arm64.exe
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/cli.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/cli.exe
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__init__.py:
--------------------------------------------------------------------------------
1 | from distutils.command.bdist import bdist
2 | import sys
3 |
4 | if 'egg' not in bdist.format_commands:
5 | try:
6 | bdist.format_commands['egg'] = ('bdist_egg', "Python .egg file")
7 | except TypeError:
8 | # For backward compatibility with older distutils (stdlib)
9 | bdist.format_command['egg'] = ('bdist_egg', "Python .egg file")
10 | bdist.format_commands.append('egg')
11 |
12 | del bdist, sys
13 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/alias.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/alias.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/build.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/build.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/build_clib.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/build_clib.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/build_ext.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/build_ext.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/build_py.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/build_py.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/develop.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/develop.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/dist_info.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/dist_info.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/easy_install.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/easy_install.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/egg_info.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/egg_info.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/install.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/install.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/install_lib.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/install_lib.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/install_scripts.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/install_scripts.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/py36compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/py36compat.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/register.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/register.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/rotate.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/rotate.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/saveopts.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/saveopts.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/sdist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/sdist.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/setopt.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/setopt.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/test.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/test.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/upload.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/upload.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/upload_docs.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/__pycache__/upload_docs.cpython-37.pyc
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/bdist_rpm.py:
--------------------------------------------------------------------------------
1 | import distutils.command.bdist_rpm as orig
2 |
3 | from ..warnings import SetuptoolsDeprecationWarning
4 |
5 |
6 | class bdist_rpm(orig.bdist_rpm):
7 | """
8 | Override the default bdist_rpm behavior to do the following:
9 |
10 | 1. Run egg_info to ensure the name and version are properly calculated.
11 | 2. Always run 'install' using --single-version-externally-managed to
12 | disable eggs in RPM distributions.
13 | """
14 |
15 | def run(self):
16 | SetuptoolsDeprecationWarning.emit(
17 | "Deprecated command",
18 | """
19 | bdist_rpm is deprecated and will be removed in a future version.
20 | Use bdist_wheel (wheel packages) instead.
21 | """,
22 | see_url="https://github.com/pypa/setuptools/issues/1988",
23 | due_date=(2023, 10, 30) # Deprecation introduced in 22 Oct 2021.
24 | )
25 |
26 | # ensure distro name is up-to-date
27 | self.run_command('egg_info')
28 |
29 | orig.bdist_rpm.run(self)
30 |
31 | def _make_spec_file(self):
32 | spec = orig.bdist_rpm._make_spec_file(self)
33 | spec = [
34 | line.replace(
35 | "setup.py install ",
36 | "setup.py install --single-version-externally-managed "
37 | ).replace(
38 | "%setup",
39 | "%setup -n %{name}-%{unmangled_version}"
40 | )
41 | for line in spec
42 | ]
43 | return spec
44 |
--------------------------------------------------------------------------------
/amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/launcher manifest.xml:
--------------------------------------------------------------------------------
1 |
2 |