├── .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 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- 1 | from distutils import log 2 | import distutils.command.register as orig 3 | 4 | from setuptools.errors import RemovedCommandError 5 | 6 | 7 | class register(orig.register): 8 | """Formerly used to register packages on PyPI.""" 9 | 10 | def run(self): 11 | msg = ( 12 | "The register command has been removed, use twine to upload " 13 | + "instead (https://pypi.org/p/twine)" 14 | ) 15 | 16 | self.announce("ERROR: " + msg, log.ERROR) 17 | 18 | raise RemovedCommandError(msg) 19 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- 1 | from setuptools.command.setopt import edit_config, option_base 2 | 3 | 4 | class saveopts(option_base): 5 | """Save command-line options to a file""" 6 | 7 | description = "save supplied options to setup.cfg or other config file" 8 | 9 | def run(self): 10 | dist = self.distribution 11 | settings = {} 12 | 13 | for cmd in dist.command_options: 14 | 15 | if cmd == 'saveopts': 16 | continue # don't save our own options! 17 | 18 | for opt, (src, val) in dist.get_option_dict(cmd).items(): 19 | if src == "command line": 20 | settings.setdefault(cmd, {})[opt] = val 21 | 22 | edit_config(self.filename, settings, self.dry_run) 23 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- 1 | from distutils import log 2 | from distutils.command import upload as orig 3 | 4 | from setuptools.errors import RemovedCommandError 5 | 6 | 7 | class upload(orig.upload): 8 | """Formerly used to upload packages to PyPI.""" 9 | 10 | def run(self): 11 | msg = ( 12 | "The upload command has been removed, use twine to upload " 13 | + "instead (https://pypi.org/p/twine)" 14 | ) 15 | 16 | self.announce("ERROR: " + msg, log.ERROR) 17 | raise RemovedCommandError(msg) 18 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/__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/config/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.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/config/__pycache__/_apply_pyprojecttoml.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/__pycache__/expand.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/config/__pycache__/expand.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/__pycache__/pyprojecttoml.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/config/__pycache__/pyprojecttoml.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/__pycache__/setupcfg.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/config/__pycache__/setupcfg.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/_validate_pyproject/__init__.py: -------------------------------------------------------------------------------- 1 | from functools import reduce 2 | from typing import Any, Callable, Dict 3 | 4 | from . import formats 5 | from .error_reporting import detailed_errors, ValidationError 6 | from .extra_validations import EXTRA_VALIDATIONS 7 | from .fastjsonschema_exceptions import JsonSchemaException, JsonSchemaValueException 8 | from .fastjsonschema_validations import validate as _validate 9 | 10 | __all__ = [ 11 | "validate", 12 | "FORMAT_FUNCTIONS", 13 | "EXTRA_VALIDATIONS", 14 | "ValidationError", 15 | "JsonSchemaException", 16 | "JsonSchemaValueException", 17 | ] 18 | 19 | 20 | FORMAT_FUNCTIONS: Dict[str, Callable[[str], bool]] = { 21 | fn.__name__.replace("_", "-"): fn 22 | for fn in formats.__dict__.values() 23 | if callable(fn) and not fn.__name__.startswith("_") 24 | } 25 | 26 | 27 | def validate(data: Any) -> bool: 28 | """Validate the given ``data`` object using JSON Schema 29 | This function raises ``ValidationError`` if ``data`` is invalid. 30 | """ 31 | with detailed_errors(): 32 | _validate(data, custom_formats=FORMAT_FUNCTIONS) 33 | reduce(lambda acc, fn: fn(acc), EXTRA_VALIDATIONS, data) 34 | return True 35 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/_validate_pyproject/__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/config/_validate_pyproject/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.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/config/_validate_pyproject/__pycache__/error_reporting.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.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/config/_validate_pyproject/__pycache__/extra_validations.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.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/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.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/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.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/config/_validate_pyproject/__pycache__/formats.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/config/_validate_pyproject/extra_validations.py: -------------------------------------------------------------------------------- 1 | """The purpose of this module is implement PEP 621 validations that are 2 | difficult to express as a JSON Schema (or that are not supported by the current 3 | JSON Schema library). 4 | """ 5 | 6 | from typing import Mapping, TypeVar 7 | 8 | from .error_reporting import ValidationError 9 | 10 | T = TypeVar("T", bound=Mapping) 11 | 12 | 13 | class RedefiningStaticFieldAsDynamic(ValidationError): 14 | """According to PEP 621: 15 | 16 | Build back-ends MUST raise an error if the metadata specifies a field 17 | statically as well as being listed in dynamic. 18 | """ 19 | 20 | 21 | def validate_project_dynamic(pyproject: T) -> T: 22 | project_table = pyproject.get("project", {}) 23 | dynamic = project_table.get("dynamic", []) 24 | 25 | for field in dynamic: 26 | if field in project_table: 27 | msg = f"You cannot provide a value for `project.{field}` and " 28 | msg += "list it under `project.dynamic` at the same time" 29 | name = f"data.project.{field}" 30 | value = {field: project_table[field], "...": " # ...", "dynamic": dynamic} 31 | raise RedefiningStaticFieldAsDynamic(msg, value, name, rule="PEP 621") 32 | 33 | return pyproject 34 | 35 | 36 | EXTRA_VALIDATIONS = (validate_project_dynamic,) 37 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- 1 | from distutils.dep_util import newer_group 2 | 3 | 4 | # yes, this is was almost entirely copy-pasted from 5 | # 'newer_pairwise()', this is just another convenience 6 | # function. 7 | def newer_pairwise_group(sources_groups, targets): 8 | """Walk both arguments in parallel, testing if each source group is newer 9 | than its corresponding target. Returns a pair of lists (sources_groups, 10 | targets) where sources is newer than target, according to the semantics 11 | of 'newer_group()'. 12 | """ 13 | if len(sources_groups) != len(targets): 14 | raise ValueError( 15 | "'sources_group' and 'targets' must be the same length") 16 | 17 | # build a pair of lists (sources_groups, targets) where source is newer 18 | n_sources = [] 19 | n_targets = [] 20 | for i in range(len(sources_groups)): 21 | if newer_group(sources_groups[i], targets[i]): 22 | n_sources.append(sources_groups[i]) 23 | n_targets.append(targets[i]) 24 | 25 | return n_sources, n_targets 26 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/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/setuptools/extern/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/gui-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/gui-32.exe -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/gui-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/gui-64.exe -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/gui-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/gui-arm64.exe -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/gui.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/gui.exe -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- 1 | """ 2 | Launch the Python script on the command line after 3 | setuptools is bootstrapped via import. 4 | """ 5 | 6 | # Note that setuptools gets imported implicitly by the 7 | # invocation of this script using python -m setuptools.launch 8 | 9 | import tokenize 10 | import sys 11 | 12 | 13 | def run(): 14 | """ 15 | Run the script in sys.argv[1] as if it had 16 | been invoked naturally. 17 | """ 18 | __builtins__ 19 | script_name = sys.argv[1] 20 | namespace = dict( 21 | __file__=script_name, 22 | __name__='__main__', 23 | __doc__=None, 24 | ) 25 | sys.argv[:] = sys.argv[1:] 26 | 27 | open_ = getattr(tokenize, 'open', open) 28 | with open_(script_name) as fid: 29 | script = fid.read() 30 | norm_script = script.replace('\\r\\n', '\\n') 31 | code = compile(norm_script, script_name, 'exec') 32 | exec(code, namespace) 33 | 34 | 35 | if __name__ == '__main__': 36 | run() 37 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/logging.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import inspect 3 | import logging 4 | import distutils.log 5 | from . import monkey 6 | 7 | 8 | def _not_warning(record): 9 | return record.levelno < logging.WARNING 10 | 11 | 12 | def configure(): 13 | """ 14 | Configure logging to emit warning and above to stderr 15 | and everything else to stdout. This behavior is provided 16 | for compatibility with distutils.log but may change in 17 | the future. 18 | """ 19 | err_handler = logging.StreamHandler() 20 | err_handler.setLevel(logging.WARNING) 21 | out_handler = logging.StreamHandler(sys.stdout) 22 | out_handler.addFilter(_not_warning) 23 | handlers = err_handler, out_handler 24 | logging.basicConfig( 25 | format="{message}", style='{', handlers=handlers, level=logging.DEBUG) 26 | if inspect.ismodule(distutils.dist.log): 27 | monkey.patch_func(set_threshold, distutils.log, 'set_threshold') 28 | # For some reason `distutils.log` module is getting cached in `distutils.dist` 29 | # and then loaded again when patched, 30 | # implying: id(distutils.log) != id(distutils.dist.log). 31 | # Make sure the same module object is used everywhere: 32 | distutils.dist.log = distutils.log 33 | 34 | 35 | def set_threshold(level): 36 | logging.root.setLevel(level*10) 37 | return set_threshold.unpatched(level) 38 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/py312compat.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import shutil 3 | 4 | 5 | def shutil_rmtree(path, ignore_errors=False, onexc=None): 6 | if sys.version_info >= (3, 12): 7 | return shutil.rmtree(path, ignore_errors, onexc=onexc) 8 | 9 | def _handler(fn, path, excinfo): 10 | return onexc(fn, path, excinfo[1]) 11 | 12 | return shutil.rmtree(path, ignore_errors, onerror=_handler) 13 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- 1 | import importlib 2 | 3 | try: 4 | import importlib.util 5 | except ImportError: 6 | pass 7 | 8 | 9 | try: 10 | module_from_spec = importlib.util.module_from_spec 11 | except AttributeError: 12 | def module_from_spec(spec): 13 | return spec.loader.load_module(spec.name) 14 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-DEV-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').require(%(spec)r) 4 | __file__ = %(dev_path)r 5 | with open(__file__) as f: 6 | exec(compile(f.read(), __file__, 'exec')) 7 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- 1 | import unicodedata 2 | import sys 3 | 4 | 5 | # HFS Plus uses decomposed UTF-8 6 | def decompose(path): 7 | if isinstance(path, str): 8 | return unicodedata.normalize('NFD', path) 9 | try: 10 | path = path.decode('utf-8') 11 | path = unicodedata.normalize('NFD', path) 12 | path = path.encode('utf-8') 13 | except UnicodeError: 14 | pass # Not UTF-8 15 | return path 16 | 17 | 18 | def filesys_decode(path): 19 | """ 20 | Ensure that the given path is decoded, 21 | NONE when no expected encoding works 22 | """ 23 | 24 | if isinstance(path, str): 25 | return path 26 | 27 | fs_enc = sys.getfilesystemencoding() or 'utf-8' 28 | candidates = fs_enc, 'utf-8' 29 | 30 | for enc in candidates: 31 | try: 32 | return path.decode(enc) 33 | except UnicodeDecodeError: 34 | continue 35 | 36 | 37 | def try_encode(string, enc): 38 | "turn unicode encoding into a functional routine" 39 | try: 40 | return string.encode(enc) 41 | except UnicodeEncodeError: 42 | return None 43 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | from ._importlib import metadata 2 | 3 | try: 4 | __version__ = metadata.version('setuptools') or '0.dev0+unknown' 5 | except Exception: 6 | __version__ = '0.dev0+unknown' 7 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/lib/python/lib/python3.7/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- 1 | import platform 2 | 3 | 4 | def windows_only(func): 5 | if platform.system() != 'Windows': 6 | return lambda *args, **kwargs: None 7 | return func 8 | 9 | 10 | @windows_only 11 | def hide_file(path): 12 | """ 13 | Set the hidden attribute on a file or directory. 14 | 15 | From http://stackoverflow.com/questions/19622133/ 16 | 17 | `path` must be text. 18 | """ 19 | import ctypes 20 | __import__('ctypes.wintypes') 21 | SetFileAttributes = ctypes.windll.kernel32.SetFileAttributesW 22 | SetFileAttributes.argtypes = ctypes.wintypes.LPWSTR, ctypes.wintypes.DWORD 23 | SetFileAttributes.restype = ctypes.wintypes.BOOL 24 | 25 | FILE_ATTRIBUTE_HIDDEN = 0x02 26 | 27 | ret = SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN) 28 | if not ret: 29 | raise ctypes.WinError() 30 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/opt/python/libmediainfo.la: -------------------------------------------------------------------------------- 1 | # libmediainfo.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.2 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='libmediainfo.so.0' 9 | 10 | # Names of this library. 11 | library_names='libmediainfo.so.0.0.0 libmediainfo.so.0 libmediainfo.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -lz -lpthread' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libmediainfo. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=no 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/opt/python/libmediainfo.lai: -------------------------------------------------------------------------------- 1 | # libmediainfo.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.2 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='libmediainfo.so.0' 9 | 10 | # Names of this library. 11 | library_names='libmediainfo.so.0.0.0 libmediainfo.so.0 libmediainfo.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -lz -lpthread' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libmediainfo. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/opt/python/libmediainfo.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/opt/python/libmediainfo.so -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/opt/python/libmediainfo.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/opt/python/libmediainfo.so.0 -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/opt/python/libmediainfo.so.0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/amplify/backend/function/MAPSMediaInfoLayer/opt/python/libmediainfo.so.0.0.0 -------------------------------------------------------------------------------- /amplify/backend/function/MAPSMediaInfoLayer/parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimes": [ 3 | "python3.7" 4 | ], 5 | "description": "Updated layer version 2023-06-15T20:11:07.520Z" 6 | } -------------------------------------------------------------------------------- /amplify/backend/function/MAPSRequestProcessing/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/MAPSRequestProcessing/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/MAPSRequestProcessing/parameters.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /amplify/backend/function/MAPSRequestProcessing/src/chalice/__init__.py: -------------------------------------------------------------------------------- 1 | from chalice.app import Chalice, Blueprint 2 | from chalice.app import ( 3 | ChaliceViewError, BadRequestError, UnauthorizedError, ForbiddenError, 4 | NotFoundError, ConflictError, TooManyRequestsError, Response, CORSConfig, 5 | CustomAuthorizer, CognitoUserPoolAuthorizer, IAMAuthorizer, 6 | UnprocessableEntityError, WebsocketDisconnectedError, 7 | AuthResponse, AuthRoute, Cron, Rate, __version__ as chalice_version 8 | ) 9 | # We're reassigning version here to keep mypy happy. 10 | __version__ = chalice_version 11 | -------------------------------------------------------------------------------- /amplify/backend/function/MAPSRequestProcessing/src/event.json: -------------------------------------------------------------------------------- 1 | { "test": "event" } 2 | -------------------------------------------------------------------------------- /amplify/backend/function/maps2692126626921266PostConfirmation/function-parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "trigger": true, 3 | "modules": [ 4 | "add-to-group" 5 | ], 6 | "parentResource": "maps2692126626921266", 7 | "functionName": "maps2692126626921266PostConfirmation", 8 | "resourceName": "maps2692126626921266PostConfirmation", 9 | "parentStack": "auth", 10 | "triggerEnvs": "[]", 11 | "triggerDir": "/snapshot/repo/build/node_modules/@aws-amplify/amplify-category-auth/provider-utils/awscloudformation/triggers/PostConfirmation", 12 | "triggerTemplate": "PostConfirmation.json.ejs", 13 | "triggerEventPath": "PostConfirmation.event.json", 14 | "roleName": "maps2692126626921266PostConfirmation", 15 | "skipEdit": true 16 | } -------------------------------------------------------------------------------- /amplify/backend/function/maps2692126626921266PostConfirmation/parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "modules": "add-to-group", 3 | "resourceName": "maps2692126626921266PostConfirmation" 4 | } -------------------------------------------------------------------------------- /amplify/backend/function/maps2692126626921266PostConfirmation/src/add-to-group.js: -------------------------------------------------------------------------------- 1 | const { 2 | CognitoIdentityProviderClient, 3 | AdminAddUserToGroupCommand, 4 | GetGroupCommand, 5 | CreateGroupCommand, 6 | } = require('@aws-sdk/client-cognito-identity-provider'); 7 | 8 | const cognitoIdentityServiceProvider = new CognitoIdentityProviderClient({}); 9 | 10 | /** 11 | * @type {import('@types/aws-lambda').PostConfirmationTriggerHandler} 12 | */ 13 | exports.handler = async (event) => { 14 | const groupParams = { 15 | GroupName: process.env.GROUP, 16 | UserPoolId: event.userPoolId, 17 | }; 18 | const addUserParams = { 19 | GroupName: process.env.GROUP, 20 | UserPoolId: event.userPoolId, 21 | Username: event.userName, 22 | }; 23 | /** 24 | * Check if the group exists; if it doesn't, create it. 25 | */ 26 | try { 27 | await cognitoIdentityServiceProvider.send(new GetGroupCommand(groupParams)); 28 | } catch (e) { 29 | await cognitoIdentityServiceProvider.send(new CreateGroupCommand(groupParams)); 30 | } 31 | /** 32 | * Then, add the user to the group. 33 | */ 34 | await cognitoIdentityServiceProvider.send(new AdminAddUserToGroupCommand(addUserParams)); 35 | 36 | return event; 37 | }; 38 | -------------------------------------------------------------------------------- /amplify/backend/function/maps2692126626921266PostConfirmation/src/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "request": { 3 | "userPoolId": "testID", 4 | "userName": "testUser" 5 | }, 6 | "response": {} 7 | } 8 | -------------------------------------------------------------------------------- /amplify/backend/function/maps2692126626921266PostConfirmation/src/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * 4 | * This CloudFormation Trigger creates a handler which awaits the other handlers 5 | * specified in the `MODULES` env var, located at `./${MODULE}`. 6 | */ 7 | 8 | /** 9 | * The names of modules to load are stored as a comma-delimited string in the 10 | * `MODULES` env var. 11 | */ 12 | const moduleNames = process.env.MODULES.split(','); 13 | /** 14 | * The array of imported modules. 15 | */ 16 | const modules = moduleNames.map((name) => require(`./${name}`)); 17 | 18 | /** 19 | * This async handler iterates over the given modules and awaits them. 20 | * 21 | * @see https://docs.aws.amazon.com/lambda/latest/dg/nodejs-handler.html#nodejs-handler-async 22 | * @type {import('@types/aws-lambda').APIGatewayProxyHandler} 23 | * 24 | */ 25 | exports.handler = async (event, context) => { 26 | /** 27 | * Instead of naively iterating over all handlers, run them concurrently with 28 | * `await Promise.all(...)`. This would otherwise just be determined by the 29 | * order of names in the `MODULES` var. 30 | */ 31 | await Promise.all(modules.map((module) => module.handler(event, context))); 32 | return event; 33 | }; 34 | -------------------------------------------------------------------------------- /amplify/backend/function/maps2692126626921266PostConfirmation/src/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "maps2692126626921266PostConfirmation", 3 | "version": "2.0.0", 4 | "description": "Lambda function generated by Amplify", 5 | "main": "index.js", 6 | "license": "Apache-2.0", 7 | "dependencies": { 8 | "axios": "latest" 9 | }, 10 | "devDependencies": { 11 | "@types/aws-lambda": "^8.10.92" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /amplify/backend/function/mapsdeletefolderhandler/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/mapsdeletefolderhandler/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/mapsdeletefolderhandler/parameters.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /amplify/backend/function/mapsdeletefolderhandler/src/event.json: -------------------------------------------------------------------------------- 1 | { "test": "event" } 2 | -------------------------------------------------------------------------------- /amplify/backend/function/mapsfsxstatushandler/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/mapsfsxstatushandler/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/mapsfsxstatushandler/parameters.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /amplify/backend/function/mapsfsxstatushandler/src/event.json: -------------------------------------------------------------------------------- 1 | { "test": "event" } 2 | -------------------------------------------------------------------------------- /amplify/backend/function/mapsmediaconvertstartjob/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/mapsmediaconvertstartjob/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/mapsmediaconvertstartjob/parameters.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /amplify/backend/function/mapsmediaconvertstartjob/src/event.json: -------------------------------------------------------------------------------- 1 | { "test": "event" } 2 | -------------------------------------------------------------------------------- /amplify/backend/function/mapspopulatemetadata/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.8" 12 | -------------------------------------------------------------------------------- /amplify/backend/function/mapspopulatemetadata/Pipfile.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "hash": { 4 | "sha256": "7f7606f08e0544d8d012ef4d097dabdd6df6843a28793eb6551245d4b2db4242" 5 | }, 6 | "pipfile-spec": 6, 7 | "requires": { 8 | "python_version": "3.8" 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/mapspopulatemetadata/function-parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "lambdaLayers": [ 3 | { 4 | "type": "ProjectLayer", 5 | "resourceName": "MAPSMediaInfoLayer", 6 | "version": "Always choose latest version", 7 | "isLatestVersionSelected": true, 8 | "env": "test" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /amplify/backend/function/mapspopulatemetadata/parameters.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /amplify/backend/function/mapspopulatemetadata/src/event.json: -------------------------------------------------------------------------------- 1 | { "test": "event" } 2 | -------------------------------------------------------------------------------- /amplify/backend/res/MAPS/parameters.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /amplify/backend/tables/MAPSTables/parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /amplify/backend/tags.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "Key": "user:Stack", 4 | "Value": "{project-env}" 5 | }, 6 | { 7 | "Key": "user:Application", 8 | "Value": "{project-name}" 9 | } 10 | ] -------------------------------------------------------------------------------- /amplify/hooks/README.md: -------------------------------------------------------------------------------- 1 | # Command Hooks 2 | 3 | Command hooks can be used to run custom scripts upon Amplify CLI lifecycle events like pre-push, post-add-function, etc. 4 | 5 | To get started, add your script files based on the expected naming convention in this directory. 6 | 7 | Learn more about the script file naming convention, hook parameters, third party dependencies, and advanced configurations at https://docs.amplify.aws/cli/usage/command-hooks 8 | -------------------------------------------------------------------------------- /amplify/hooks/post-push.sh.sample: -------------------------------------------------------------------------------- 1 | # This is a sample hook script created by Amplify CLI. 2 | # To start using this post-push hook please change the filename: 3 | # post-push.sh.sample -> post-push.sh 4 | # 5 | # learn more: https://docs.amplify.aws/cli/usage/command-hooks 6 | 7 | if [ -z "$(which jq)" ]; then 8 | echo "Please install jq to run the sample script." 9 | exit 0 10 | fi 11 | 12 | parameters=`cat` 13 | error=$(jq -r '.error // empty' <<< "$parameters") 14 | data=$(jq -r '.data' <<< "$parameters") 15 | 16 | # 17 | # Write code here: 18 | # 19 | if [ ! -z "$error" ]; then 20 | echo "Amplify CLI emitted an error:" $(jq -r '.message' <<< "$error") 21 | exit 0 22 | fi 23 | echo "project root path:" $(pwd); 24 | echo "Amplify CLI command:" $(jq -r '.amplify | .command' <<< "$data") -------------------------------------------------------------------------------- /amplify/hooks/pre-push.js.sample: -------------------------------------------------------------------------------- 1 | /** 2 | * This is a sample hook script created by Amplify CLI. 3 | * To start using this pre-push hook please change the filename: 4 | * pre-push.js.sample -> pre-push.js 5 | * 6 | * learn more: https://docs.amplify.aws/cli/usage/command-hooks 7 | */ 8 | 9 | /** 10 | * @param data { { amplify: { environment: { envName: string, projectPath: string, defaultEditor: string }, command: string, subCommand: string, argv: string[] } } } 11 | * @param error { { message: string, stack: string } } 12 | */ 13 | const hookHandler = async (data, error) => { 14 | // TODO write your hook handler here 15 | }; 16 | 17 | const getParameters = async () => { 18 | const fs = require("fs"); 19 | return JSON.parse(fs.readFileSync(0, { encoding: "utf8" })); 20 | }; 21 | 22 | getParameters() 23 | .then((event) => hookHandler(event.data, event.error)) 24 | .catch((err) => { 25 | console.error(err); 26 | process.exitCode = 1; 27 | }); 28 | -------------------------------------------------------------------------------- /images/MAPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/images/MAPS.png -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/images/architecture.png -------------------------------------------------------------------------------- /images/copy_fsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/images/copy_fsx.png -------------------------------------------------------------------------------- /images/create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/images/create_folder.png -------------------------------------------------------------------------------- /images/main_configured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/images/main_configured.png -------------------------------------------------------------------------------- /images/maps_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/images/maps_main.png -------------------------------------------------------------------------------- /images/maps_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/images/maps_settings.png -------------------------------------------------------------------------------- /images/media_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/images/media_preview.png -------------------------------------------------------------------------------- /images/move_folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/images/move_folders.png -------------------------------------------------------------------------------- /images/uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/images/uploading.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "media-asset-preparation-system", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@aws-amplify/ui-react": "^4.6.0", 7 | "@material-ui/core": "^4.9.11", 8 | "@material-ui/icons": "^4.9.1", 9 | "@material-ui/lab": "^4.0.0-alpha.50", 10 | "ansi-regex": "^5.0.1", 11 | "aws-amplify": "^5.0.25", 12 | "aws-sdk": "^2.1189.0", 13 | "bootstrap": "^4.4.1", 14 | "file-saver": "^2.0.2", 15 | "history": "^5.0.0", 16 | "moment": "^2.29.2", 17 | "moment-timezone": "^0.5.28", 18 | "normalize-url": ">=4.5.1", 19 | "plist": "^3.0.5", 20 | "postcss": "^8.2.10", 21 | "react": "^16.14.0", 22 | "react-bootstrap": "^1.3.0", 23 | "react-dom": "^16.13.1", 24 | "react-drop-zone": "^3.0.7", 25 | "react-moment": "^0.9.7", 26 | "react-player": "^2.6.2", 27 | "react-redux": "^7.2.3", 28 | "react-router-dom": "^5.2.0", 29 | "redux": "^4.2.1", 30 | "styled-components": "^5.0.1", 31 | "util": "^0.12.4" 32 | }, 33 | "scripts": { 34 | "start": "react-scripts start", 35 | "build": "react-scripts build", 36 | "test": "react-scripts test", 37 | "eject": "react-scripts eject" 38 | }, 39 | "build": { 40 | "appId": "nonExistentID", 41 | "files": [ 42 | "build/**/*", 43 | "node_modules/**/*" 44 | ] 45 | }, 46 | "eslintConfig": { 47 | "extends": "react-app" 48 | }, 49 | "browserslist": { 50 | "production": [ 51 | ">0.2%", 52 | "not dead", 53 | "not op_mini all" 54 | ], 55 | "development": [ 56 | "last 1 chrome version", 57 | "last 1 firefox version", 58 | "last 1 safari version" 59 | ] 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /public/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/public/error.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AWS MAPS 5 | 6 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo512.png", 12 | "type": "image/png", 13 | "sizes": "512x512" 14 | } 15 | ], 16 | "start_url": ".", 17 | "display": "standalone", 18 | "theme_color": "#000000", 19 | "background_color": "#ffffff" 20 | } 21 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /scripts/MoveMedia.ps1: -------------------------------------------------------------------------------- 1 | [CmdletBinding()] 2 | param( 3 | [Parameter(Mandatory=$true)] 4 | [string]$bucket = '', 5 | [Parameter(Mandatory=$true)] 6 | [bool]$toFsx = 1, 7 | [Parameter(Mandatory=$true)] 8 | [string[]]$files = '', 9 | [Parameter(Mandatory=$true)] 10 | [string]$fsxmount = '' 11 | ) 12 | 13 | If (!(Test-Path F:)) { 14 | New-PSDrive –Name “F” –Root $fsxMount –PSProvider FileSystem 15 | } 16 | 17 | cd F: 18 | foreach ($file in $files) { 19 | If ($toFsx) { 20 | aws s3 cp s3://$bucket/$file .\Media\ 21 | } else { 22 | $dispKey = $file.Split('/')[-1] 23 | rm .\Media\$dispKey 24 | echo "upload s3://$($bucket)/$($file)" 25 | } 26 | } -------------------------------------------------------------------------------- /src/components/Main/MAPSMain.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | * SPDX-License-Identifier: MIT-0 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this 6 | * software and associated documentation files (the "Software"), to deal in the Software 7 | * without restriction, including without limitation the rights to use, copy, modify, 8 | * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to 9 | * permit persons to whom the Software is furnished to do so. 10 | * 11 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 12 | * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 13 | * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 14 | * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 15 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 16 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 17 | */ 18 | import React from 'react'; 19 | 20 | import Container from 'react-bootstrap/Container'; 21 | import MainAssetView from '../View/MainAssetView' 22 | 23 | function MAPSMain(props) { 24 | return ( 25 | 26 | 27 | 28 | ); 29 | }; 30 | 31 | export default MAPSMain; -------------------------------------------------------------------------------- /src/graphql/queries.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | // this is an auto generated file. This will be overwritten 3 | 4 | export const listMAPSAssets = /* GraphQL */ ` 5 | query ListMAPSAssets( 6 | $filter: TableMAPSAssetsFilterInput 7 | $limit: Int 8 | $nextToken: String 9 | ) { 10 | listMAPSAssets(filter: $filter, limit: $limit, nextToken: $nextToken) { 11 | items { 12 | bucketObjKey 13 | prefixLoc 14 | assetId 15 | creationDate 16 | lastModifiedDate 17 | thumbnailLoc 18 | proxyLoc 19 | fileStatus 20 | editUser 21 | videoCodec 22 | audioCodec 23 | fileFormat 24 | fileLength 25 | frameRate 26 | frameCount 27 | numAudioTracks 28 | numVideoTracks 29 | fileSize 30 | } 31 | nextToken 32 | } 33 | } 34 | `; 35 | export const getMAPSAssets = /* GraphQL */ ` 36 | query GetMAPSAssets($bucketObjKey: String!) { 37 | getMAPSAssets(bucketObjKey: $bucketObjKey) { 38 | bucketObjKey 39 | prefixLoc 40 | assetId 41 | creationDate 42 | lastModifiedDate 43 | thumbnailLoc 44 | proxyLoc 45 | fileStatus 46 | editUser 47 | videoCodec 48 | audioCodec 49 | fileFormat 50 | fileLength 51 | frameRate 52 | frameCount 53 | numAudioTracks 54 | numVideoTracks 55 | fileSize 56 | } 57 | } 58 | `; 59 | -------------------------------------------------------------------------------- /src/graphql/subscriptions.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | // this is an auto generated file. This will be overwritten 3 | 4 | export const onCreateMAPSAssets = /* GraphQL */ ` 5 | subscription OnCreateMAPSAssets { 6 | onCreateMAPSAssets { 7 | bucketObjKey 8 | prefixLoc 9 | assetId 10 | creationDate 11 | lastModifiedDate 12 | thumbnailLoc 13 | proxyLoc 14 | fileStatus 15 | editUser 16 | videoCodec 17 | audioCodec 18 | fileFormat 19 | fileLength 20 | frameRate 21 | frameCount 22 | numAudioTracks 23 | numVideoTracks 24 | fileSize 25 | } 26 | } 27 | `; 28 | export const onUpdateMAPSAssets = /* GraphQL */ ` 29 | subscription OnUpdateMAPSAssets { 30 | onUpdateMAPSAssets { 31 | bucketObjKey 32 | prefixLoc 33 | assetId 34 | creationDate 35 | lastModifiedDate 36 | thumbnailLoc 37 | proxyLoc 38 | fileStatus 39 | editUser 40 | videoCodec 41 | audioCodec 42 | fileFormat 43 | fileLength 44 | frameRate 45 | frameCount 46 | numAudioTracks 47 | numVideoTracks 48 | fileSize 49 | } 50 | } 51 | `; 52 | export const onDeleteMAPSAssets = /* GraphQL */ ` 53 | subscription OnDeleteMAPSAssets { 54 | onDeleteMAPSAssets { 55 | bucketObjKey 56 | prefixLoc 57 | assetId 58 | creationDate 59 | lastModifiedDate 60 | thumbnailLoc 61 | proxyLoc 62 | fileStatus 63 | editUser 64 | videoCodec 65 | audioCodec 66 | fileFormat 67 | fileLength 68 | frameRate 69 | frameCount 70 | numAudioTracks 71 | numVideoTracks 72 | fileSize 73 | } 74 | } 75 | `; 76 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0px; 3 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", 4 | "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | background-color: #2f3241; 9 | } 10 | 11 | code { 12 | font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", 13 | monospace; 14 | } 15 | 16 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Amplify } from 'aws-amplify'; 3 | import ReactDOM from "react-dom"; 4 | import awsmobile from './aws-exports'; 5 | import "./index.css"; 6 | import App from './App'; 7 | 8 | import { Provider } from 'react-redux'; 9 | import { createStore } from 'redux'; 10 | import mapsStore from './store/store'; 11 | 12 | const maps = createStore(mapsStore); 13 | 14 | Amplify.configure(awsmobile); 15 | 16 | ReactDOM.render( 17 | 18 | 19 | , 20 | document.getElementById("root") 21 | ); -------------------------------------------------------------------------------- /src/media/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/src/media/logo192.png -------------------------------------------------------------------------------- /src/media/media_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-media-asset-preparation-system/ee3c998b9824640e42df8c974149f32dbd543df5/src/media/media_small.png -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | * SPDX-License-Identifier: MIT-0 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this 6 | * software and associated documentation files (the "Software"), to deal in the Software 7 | * without restriction, including without limitation the rights to use, copy, modify, 8 | * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to 9 | * permit persons to whom the Software is furnished to do so. 10 | * 11 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 12 | * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 13 | * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 14 | * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 15 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 16 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 17 | */ 18 | import { combineReducers } from 'redux'; 19 | import { userConfig } from './user/user'; 20 | import { mapsConfig } from './mapsconfig/mapsconfig'; 21 | 22 | const mapsStore = combineReducers({ 23 | mapsConfig, 24 | userConfig 25 | }); 26 | 27 | export default mapsStore; --------------------------------------------------------------------------------