├── README.md ├── env ├── bin │ ├── Activate.ps1 │ ├── __pycache__ │ │ └── jp.cpython-39.pyc │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── jp.py │ ├── normalizer │ ├── pip │ ├── pip3 │ ├── pip3.9 │ ├── python │ ├── python3 │ └── python3.9 ├── lib │ └── python3.9 │ │ └── site-packages │ │ ├── __pycache__ │ │ ├── enlighten.cpython-39.pyc │ │ └── six.cpython-39.pyc │ │ ├── _distutils_hack │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── override.cpython-39.pyc │ │ └── override.py │ │ ├── blessed-1.19.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── blessed │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _capabilities.cpython-39.pyc │ │ │ ├── color.cpython-39.pyc │ │ │ ├── colorspace.cpython-39.pyc │ │ │ ├── formatters.cpython-39.pyc │ │ │ ├── keyboard.cpython-39.pyc │ │ │ ├── sequences.cpython-39.pyc │ │ │ ├── terminal.cpython-39.pyc │ │ │ └── win_terminal.cpython-39.pyc │ │ ├── _capabilities.py │ │ ├── _capabilities.pyi │ │ ├── color.py │ │ ├── color.pyi │ │ ├── colorspace.py │ │ ├── colorspace.pyi │ │ ├── formatters.py │ │ ├── formatters.pyi │ │ ├── keyboard.py │ │ ├── keyboard.pyi │ │ ├── py.typed │ │ ├── sequences.py │ │ ├── sequences.pyi │ │ ├── terminal.py │ │ ├── terminal.pyi │ │ ├── win_terminal.py │ │ └── win_terminal.pyi │ │ ├── boto3-1.23.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── NOTICE │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── boto3 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── compat.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── session.cpython-39.pyc │ │ │ └── utils.cpython-39.pyc │ │ ├── compat.py │ │ ├── data │ │ │ ├── cloudformation │ │ │ │ └── 2010-05-15 │ │ │ │ │ └── resources-1.json │ │ │ ├── cloudwatch │ │ │ │ └── 2010-08-01 │ │ │ │ │ └── resources-1.json │ │ │ ├── dynamodb │ │ │ │ └── 2012-08-10 │ │ │ │ │ └── resources-1.json │ │ │ ├── ec2 │ │ │ │ ├── 2014-10-01 │ │ │ │ │ └── resources-1.json │ │ │ │ ├── 2015-03-01 │ │ │ │ │ └── resources-1.json │ │ │ │ ├── 2015-04-15 │ │ │ │ │ └── resources-1.json │ │ │ │ ├── 2015-10-01 │ │ │ │ │ └── resources-1.json │ │ │ │ ├── 2016-04-01 │ │ │ │ │ └── resources-1.json │ │ │ │ ├── 2016-09-15 │ │ │ │ │ └── resources-1.json │ │ │ │ └── 2016-11-15 │ │ │ │ │ └── resources-1.json │ │ │ ├── glacier │ │ │ │ └── 2012-06-01 │ │ │ │ │ └── resources-1.json │ │ │ ├── iam │ │ │ │ └── 2010-05-08 │ │ │ │ │ └── resources-1.json │ │ │ ├── opsworks │ │ │ │ └── 2013-02-18 │ │ │ │ │ └── resources-1.json │ │ │ ├── s3 │ │ │ │ └── 2006-03-01 │ │ │ │ │ └── resources-1.json │ │ │ ├── sns │ │ │ │ └── 2010-03-31 │ │ │ │ │ └── resources-1.json │ │ │ └── sqs │ │ │ │ └── 2012-11-05 │ │ │ │ └── resources-1.json │ │ ├── docs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── action.cpython-39.pyc │ │ │ │ ├── attr.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ ├── collection.cpython-39.pyc │ │ │ │ ├── docstring.cpython-39.pyc │ │ │ │ ├── method.cpython-39.pyc │ │ │ │ ├── resource.cpython-39.pyc │ │ │ │ ├── service.cpython-39.pyc │ │ │ │ ├── subresource.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── waiter.cpython-39.pyc │ │ │ ├── action.py │ │ │ ├── attr.py │ │ │ ├── base.py │ │ │ ├── client.py │ │ │ ├── collection.py │ │ │ ├── docstring.py │ │ │ ├── method.py │ │ │ ├── resource.py │ │ │ ├── service.py │ │ │ ├── subresource.py │ │ │ ├── utils.py │ │ │ └── waiter.py │ │ ├── dynamodb │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conditions.cpython-39.pyc │ │ │ │ ├── table.cpython-39.pyc │ │ │ │ ├── transform.cpython-39.pyc │ │ │ │ └── types.cpython-39.pyc │ │ │ ├── conditions.py │ │ │ ├── table.py │ │ │ ├── transform.py │ │ │ └── types.py │ │ ├── ec2 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── createtags.cpython-39.pyc │ │ │ │ └── deletetags.cpython-39.pyc │ │ │ ├── createtags.py │ │ │ └── deletetags.py │ │ ├── examples │ │ │ ├── cloudfront.rst │ │ │ └── s3.rst │ │ ├── exceptions.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── action.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── collection.cpython-39.pyc │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ ├── model.cpython-39.pyc │ │ │ │ ├── params.cpython-39.pyc │ │ │ │ └── response.cpython-39.pyc │ │ │ ├── action.py │ │ │ ├── base.py │ │ │ ├── collection.py │ │ │ ├── factory.py │ │ │ ├── model.py │ │ │ ├── params.py │ │ │ └── response.py │ │ ├── s3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── inject.cpython-39.pyc │ │ │ │ └── transfer.cpython-39.pyc │ │ │ ├── inject.py │ │ │ └── transfer.py │ │ ├── session.py │ │ └── utils.py │ │ ├── botocore-1.26.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── NOTICE │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── botocore │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── args.cpython-39.pyc │ │ │ ├── auth.cpython-39.pyc │ │ │ ├── awsrequest.cpython-39.pyc │ │ │ ├── client.cpython-39.pyc │ │ │ ├── compat.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── configloader.cpython-39.pyc │ │ │ ├── configprovider.cpython-39.pyc │ │ │ ├── credentials.cpython-39.pyc │ │ │ ├── discovery.cpython-39.pyc │ │ │ ├── endpoint.cpython-39.pyc │ │ │ ├── errorfactory.cpython-39.pyc │ │ │ ├── eventstream.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── handlers.cpython-39.pyc │ │ │ ├── history.cpython-39.pyc │ │ │ ├── hooks.cpython-39.pyc │ │ │ ├── httpchecksum.cpython-39.pyc │ │ │ ├── httpsession.cpython-39.pyc │ │ │ ├── loaders.cpython-39.pyc │ │ │ ├── model.cpython-39.pyc │ │ │ ├── monitoring.cpython-39.pyc │ │ │ ├── paginate.cpython-39.pyc │ │ │ ├── parsers.cpython-39.pyc │ │ │ ├── regions.cpython-39.pyc │ │ │ ├── response.cpython-39.pyc │ │ │ ├── retryhandler.cpython-39.pyc │ │ │ ├── serialize.cpython-39.pyc │ │ │ ├── session.cpython-39.pyc │ │ │ ├── signers.cpython-39.pyc │ │ │ ├── stub.cpython-39.pyc │ │ │ ├── translate.cpython-39.pyc │ │ │ ├── utils.cpython-39.pyc │ │ │ ├── validate.cpython-39.pyc │ │ │ └── waiter.cpython-39.pyc │ │ ├── args.py │ │ ├── auth.py │ │ ├── awsrequest.py │ │ ├── cacert.pem │ │ ├── client.py │ │ ├── compat.py │ │ ├── config.py │ │ ├── configloader.py │ │ ├── configprovider.py │ │ ├── credentials.py │ │ ├── crt │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── auth.cpython-39.pyc │ │ │ └── auth.py │ │ ├── data │ │ │ ├── _retry.json │ │ │ ├── accessanalyzer │ │ │ │ └── 2019-11-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── account │ │ │ │ └── 2021-02-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── acm-pca │ │ │ │ └── 2017-08-22 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── acm │ │ │ │ └── 2015-12-08 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── alexaforbusiness │ │ │ │ └── 2017-11-09 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── amp │ │ │ │ └── 2020-08-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── amplify │ │ │ │ └── 2017-07-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── amplifybackend │ │ │ │ └── 2020-08-11 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── amplifyuibuilder │ │ │ │ └── 2021-08-11 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── apigateway │ │ │ │ └── 2015-07-09 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── apigatewaymanagementapi │ │ │ │ └── 2018-11-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── apigatewayv2 │ │ │ │ └── 2018-11-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── appconfig │ │ │ │ └── 2019-10-09 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── appconfigdata │ │ │ │ └── 2021-11-11 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── appflow │ │ │ │ └── 2020-08-23 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── appintegrations │ │ │ │ └── 2020-07-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── application-autoscaling │ │ │ │ └── 2016-02-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── application-insights │ │ │ │ └── 2018-11-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── applicationcostprofiler │ │ │ │ └── 2020-09-10 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── appmesh │ │ │ │ ├── 2018-10-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ │ └── 2019-01-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── apprunner │ │ │ │ └── 2020-05-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── appstream │ │ │ │ └── 2016-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── appsync │ │ │ │ └── 2017-07-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── athena │ │ │ │ └── 2017-05-18 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── auditmanager │ │ │ │ └── 2017-07-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── autoscaling-plans │ │ │ │ └── 2018-01-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── autoscaling │ │ │ │ └── 2011-01-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── backup-gateway │ │ │ │ └── 2021-01-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── backup │ │ │ │ └── 2018-11-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── batch │ │ │ │ └── 2016-08-10 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── billingconductor │ │ │ │ └── 2021-07-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── braket │ │ │ │ └── 2019-09-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── budgets │ │ │ │ └── 2016-10-20 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ce │ │ │ │ └── 2017-10-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── chime-sdk-identity │ │ │ │ └── 2021-04-20 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── chime-sdk-media-pipelines │ │ │ │ └── 2021-07-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── chime-sdk-meetings │ │ │ │ └── 2021-07-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── chime-sdk-messaging │ │ │ │ └── 2021-05-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── chime │ │ │ │ └── 2018-05-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloud9 │ │ │ │ └── 2017-09-23 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudcontrol │ │ │ │ └── 2021-09-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── paginators-1.sdk-extras.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── clouddirectory │ │ │ │ ├── 2016-05-10 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ │ └── 2017-01-11 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudformation │ │ │ │ └── 2010-05-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── cloudfront │ │ │ │ ├── 2014-05-31 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2014-10-21 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2014-11-06 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-04-17 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-07-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-09-17 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-01-13 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-01-28 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-08-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-08-20 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-09-07 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-09-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-11-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2017-03-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2017-10-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2018-06-18 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2018-11-05 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2019-03-26 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ └── 2020-05-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── cloudhsm │ │ │ │ └── 2014-05-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudhsmv2 │ │ │ │ └── 2017-04-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudsearch │ │ │ │ ├── 2011-02-01 │ │ │ │ │ └── service-2.json │ │ │ │ └── 2013-01-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudsearchdomain │ │ │ │ └── 2013-01-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudtrail │ │ │ │ └── 2013-11-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cloudwatch │ │ │ │ └── 2010-08-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── codeartifact │ │ │ │ └── 2018-09-22 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── paginators-1.sdk-extras.json │ │ │ │ │ └── service-2.json │ │ │ ├── codebuild │ │ │ │ └── 2016-10-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── codecommit │ │ │ │ └── 2015-04-13 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── codedeploy │ │ │ │ └── 2014-10-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── codeguru-reviewer │ │ │ │ └── 2019-09-19 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── codeguruprofiler │ │ │ │ └── 2019-07-18 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── codepipeline │ │ │ │ └── 2015-07-09 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── codestar-connections │ │ │ │ └── 2019-12-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── codestar-notifications │ │ │ │ └── 2019-10-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── codestar │ │ │ │ └── 2017-04-19 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cognito-identity │ │ │ │ └── 2014-06-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cognito-idp │ │ │ │ └── 2016-04-18 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cognito-sync │ │ │ │ └── 2014-06-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── comprehend │ │ │ │ └── 2017-11-27 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── comprehendmedical │ │ │ │ └── 2018-10-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── compute-optimizer │ │ │ │ └── 2019-11-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── config │ │ │ │ └── 2014-11-12 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── connect-contact-lens │ │ │ │ └── 2020-08-21 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── connect │ │ │ │ └── 2017-08-08 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── connectparticipant │ │ │ │ └── 2018-09-07 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── cur │ │ │ │ └── 2017-01-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── customer-profiles │ │ │ │ └── 2020-08-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── databrew │ │ │ │ └── 2017-07-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── dataexchange │ │ │ │ └── 2017-07-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── datapipeline │ │ │ │ └── 2012-10-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── datasync │ │ │ │ └── 2018-11-09 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── dax │ │ │ │ └── 2017-04-19 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── detective │ │ │ │ └── 2018-10-26 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── devicefarm │ │ │ │ └── 2015-06-23 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── devops-guru │ │ │ │ └── 2020-12-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── directconnect │ │ │ │ └── 2012-10-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── discovery │ │ │ │ └── 2015-11-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── dlm │ │ │ │ └── 2018-01-12 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── dms │ │ │ │ └── 2016-01-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── docdb │ │ │ │ └── 2014-10-31 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ ├── service-2.sdk-extras.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── drs │ │ │ │ └── 2020-02-26 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ds │ │ │ │ └── 2015-04-16 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── dynamodb │ │ │ │ └── 2012-08-10 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── dynamodbstreams │ │ │ │ └── 2012-08-10 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ebs │ │ │ │ └── 2019-11-02 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ec2-instance-connect │ │ │ │ └── 2018-04-02 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ec2 │ │ │ │ ├── 2014-09-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2014-10-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-03-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-04-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2015-10-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-04-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ ├── 2016-09-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ └── 2016-11-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── ecr-public │ │ │ │ └── 2020-10-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ecr │ │ │ │ └── 2015-09-21 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── ecs │ │ │ │ └── 2014-11-13 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── efs │ │ │ │ └── 2015-02-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── eks │ │ │ │ └── 2017-11-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ ├── service-2.sdk-extras.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── elastic-inference │ │ │ │ └── 2017-07-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── elasticache │ │ │ │ ├── 2014-09-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ └── 2015-02-02 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── elasticbeanstalk │ │ │ │ └── 2010-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── elastictranscoder │ │ │ │ └── 2012-09-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── elb │ │ │ │ └── 2012-06-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── elbv2 │ │ │ │ └── 2015-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── emr-containers │ │ │ │ └── 2020-10-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── emr │ │ │ │ └── 2009-03-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── endpoints.json │ │ │ ├── es │ │ │ │ └── 2015-01-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── events │ │ │ │ ├── 2014-02-03 │ │ │ │ │ └── service-2.json │ │ │ │ └── 2015-10-07 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── evidently │ │ │ │ └── 2021-02-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── finspace-data │ │ │ │ └── 2020-07-13 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── finspace │ │ │ │ └── 2021-03-12 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── firehose │ │ │ │ └── 2015-08-04 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── fis │ │ │ │ └── 2020-12-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── fms │ │ │ │ └── 2018-01-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── forecast │ │ │ │ └── 2018-06-26 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── forecastquery │ │ │ │ └── 2018-06-26 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── frauddetector │ │ │ │ └── 2019-11-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── fsx │ │ │ │ └── 2018-03-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── gamelift │ │ │ │ └── 2015-10-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── gamesparks │ │ │ │ └── 2021-08-17 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── glacier │ │ │ │ └── 2012-06-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── globalaccelerator │ │ │ │ └── 2018-08-08 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── glue │ │ │ │ └── 2017-03-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── grafana │ │ │ │ └── 2020-08-18 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── greengrass │ │ │ │ └── 2017-06-07 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── greengrassv2 │ │ │ │ └── 2020-11-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── groundstation │ │ │ │ └── 2019-05-23 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── guardduty │ │ │ │ └── 2017-11-28 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── health │ │ │ │ └── 2016-08-04 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── healthlake │ │ │ │ └── 2017-07-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── honeycode │ │ │ │ └── 2020-03-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── paginators-1.sdk-extras.json │ │ │ │ │ └── service-2.json │ │ │ ├── iam │ │ │ │ └── 2010-05-08 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── identitystore │ │ │ │ └── 2020-06-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── imagebuilder │ │ │ │ └── 2019-12-02 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── importexport │ │ │ │ └── 2010-06-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── inspector │ │ │ │ ├── 2015-08-18 │ │ │ │ │ └── service-2.json │ │ │ │ └── 2016-02-16 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── inspector2 │ │ │ │ └── 2020-06-08 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── paginators-1.sdk-extras.json │ │ │ │ │ └── service-2.json │ │ │ ├── iot-data │ │ │ │ └── 2015-05-28 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iot-jobs-data │ │ │ │ └── 2017-09-29 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iot │ │ │ │ └── 2015-05-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iot1click-devices │ │ │ │ └── 2018-05-14 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iot1click-projects │ │ │ │ └── 2018-05-14 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iotanalytics │ │ │ │ └── 2017-11-27 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iotdeviceadvisor │ │ │ │ └── 2020-09-18 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iotevents-data │ │ │ │ └── 2018-10-23 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iotevents │ │ │ │ └── 2018-07-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iotfleethub │ │ │ │ └── 2020-11-03 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iotsecuretunneling │ │ │ │ └── 2018-10-05 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iotsitewise │ │ │ │ └── 2019-12-02 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── iotthingsgraph │ │ │ │ └── 2018-09-06 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── iottwinmaker │ │ │ │ └── 2021-11-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── iotwireless │ │ │ │ └── 2020-11-22 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ivs │ │ │ │ └── 2020-07-14 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ivschat │ │ │ │ └── 2020-07-14 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kafka │ │ │ │ └── 2018-11-14 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kafkaconnect │ │ │ │ └── 2021-09-14 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kendra │ │ │ │ └── 2019-02-03 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── keyspaces │ │ │ │ └── 2022-02-10 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── kinesis-video-archived-media │ │ │ │ └── 2017-09-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kinesis-video-media │ │ │ │ └── 2017-09-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kinesis-video-signaling │ │ │ │ └── 2019-12-04 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kinesis │ │ │ │ └── 2013-12-02 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── kinesisanalytics │ │ │ │ └── 2015-08-14 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kinesisanalyticsv2 │ │ │ │ └── 2018-05-23 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kinesisvideo │ │ │ │ └── 2017-09-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── kms │ │ │ │ └── 2014-11-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lakeformation │ │ │ │ └── 2017-03-31 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── paginators-1.sdk-extras.json │ │ │ │ │ └── service-2.json │ │ │ ├── lambda │ │ │ │ ├── 2014-11-11 │ │ │ │ │ └── service-2.json │ │ │ │ └── 2015-03-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── lex-models │ │ │ │ └── 2017-04-19 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lex-runtime │ │ │ │ └── 2016-11-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lexv2-models │ │ │ │ └── 2020-08-07 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── lexv2-runtime │ │ │ │ └── 2020-08-07 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── license-manager │ │ │ │ └── 2018-08-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lightsail │ │ │ │ └── 2016-11-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── location │ │ │ │ └── 2020-11-19 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── logs │ │ │ │ └── 2014-03-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lookoutequipment │ │ │ │ └── 2020-12-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lookoutmetrics │ │ │ │ └── 2017-07-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── lookoutvision │ │ │ │ └── 2020-11-20 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── machinelearning │ │ │ │ └── 2014-12-12 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── macie │ │ │ │ └── 2017-12-19 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── macie2 │ │ │ │ └── 2020-01-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── managedblockchain │ │ │ │ └── 2018-09-24 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── marketplace-catalog │ │ │ │ └── 2018-09-17 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── marketplace-entitlement │ │ │ │ └── 2017-01-11 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── marketplacecommerceanalytics │ │ │ │ └── 2015-07-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mediaconnect │ │ │ │ └── 2018-11-14 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── mediaconvert │ │ │ │ └── 2017-08-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── medialive │ │ │ │ └── 2017-10-14 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── mediapackage-vod │ │ │ │ └── 2018-11-07 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mediapackage │ │ │ │ └── 2017-10-12 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mediastore-data │ │ │ │ └── 2017-09-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mediastore │ │ │ │ └── 2017-09-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mediatailor │ │ │ │ └── 2018-04-23 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── memorydb │ │ │ │ └── 2021-01-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── meteringmarketplace │ │ │ │ └── 2016-01-14 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mgh │ │ │ │ └── 2017-05-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mgn │ │ │ │ └── 2020-02-26 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── migration-hub-refactor-spaces │ │ │ │ └── 2021-10-26 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── migrationhub-config │ │ │ │ └── 2019-06-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── migrationhubstrategy │ │ │ │ └── 2020-02-19 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── paginators-1.sdk-extras.json │ │ │ │ │ └── service-2.json │ │ │ ├── mobile │ │ │ │ └── 2017-07-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mq │ │ │ │ └── 2017-11-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mturk │ │ │ │ └── 2017-01-17 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── mwaa │ │ │ │ └── 2020-07-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── neptune │ │ │ │ └── 2014-10-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ ├── service-2.sdk-extras.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── network-firewall │ │ │ │ └── 2020-11-12 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── networkmanager │ │ │ │ └── 2019-07-05 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── nimble │ │ │ │ └── 2020-08-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── opensearch │ │ │ │ └── 2021-01-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── opsworks │ │ │ │ └── 2013-02-18 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── opsworkscm │ │ │ │ └── 2016-11-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── organizations │ │ │ │ └── 2016-11-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── outposts │ │ │ │ └── 2019-12-03 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── panorama │ │ │ │ └── 2019-07-24 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── personalize-events │ │ │ │ └── 2018-03-22 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── personalize-runtime │ │ │ │ └── 2018-05-22 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── personalize │ │ │ │ └── 2018-05-22 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── pi │ │ │ │ └── 2018-02-27 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── pinpoint-email │ │ │ │ └── 2018-07-26 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── pinpoint-sms-voice-v2 │ │ │ │ └── 2022-03-31 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── paginators-1.sdk-extras.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── pinpoint-sms-voice │ │ │ │ └── 2018-09-05 │ │ │ │ │ └── service-2.json │ │ │ ├── pinpoint │ │ │ │ └── 2016-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── polly │ │ │ │ └── 2016-06-10 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── pricing │ │ │ │ └── 2017-10-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── proton │ │ │ │ └── 2020-07-20 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── qldb-session │ │ │ │ └── 2019-07-11 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── qldb │ │ │ │ └── 2019-01-02 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── quicksight │ │ │ │ └── 2018-04-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── paginators-1.sdk-extras.json │ │ │ │ │ └── service-2.json │ │ │ ├── ram │ │ │ │ └── 2018-01-04 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── rbin │ │ │ │ └── 2021-06-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── rds-data │ │ │ │ └── 2018-08-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── rds │ │ │ │ ├── 2014-09-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ │ └── 2014-10-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ ├── service-2.sdk-extras.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── redshift-data │ │ │ │ └── 2019-12-20 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── paginators-1.sdk-extras.json │ │ │ │ │ └── service-2.json │ │ │ ├── redshift │ │ │ │ └── 2012-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── rekognition │ │ │ │ └── 2016-06-27 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── resiliencehub │ │ │ │ └── 2020-04-30 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── resource-groups │ │ │ │ └── 2017-11-27 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── resourcegroupstaggingapi │ │ │ │ └── 2017-01-26 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── robomaker │ │ │ │ └── 2018-06-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── route53-recovery-cluster │ │ │ │ └── 2019-12-02 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── route53-recovery-control-config │ │ │ │ └── 2020-11-02 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── route53-recovery-readiness │ │ │ │ └── 2019-12-02 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── route53 │ │ │ │ └── 2013-04-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── route53domains │ │ │ │ └── 2014-05-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── route53resolver │ │ │ │ └── 2018-04-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── paginators-1.sdk-extras.json │ │ │ │ │ └── service-2.json │ │ │ ├── rum │ │ │ │ └── 2018-05-10 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── s3 │ │ │ │ └── 2006-03-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── s3control │ │ │ │ └── 2018-08-20 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── s3outposts │ │ │ │ └── 2017-07-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sagemaker-a2i-runtime │ │ │ │ └── 2019-11-07 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sagemaker-edge │ │ │ │ └── 2020-09-23 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sagemaker-featurestore-runtime │ │ │ │ └── 2020-07-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sagemaker-runtime │ │ │ │ └── 2017-05-13 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sagemaker │ │ │ │ └── 2017-07-24 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── savingsplans │ │ │ │ └── 2019-06-28 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── schemas │ │ │ │ └── 2019-12-02 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── sdb │ │ │ │ └── 2009-04-15 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sdk-default-configuration.json │ │ │ ├── secretsmanager │ │ │ │ └── 2017-10-17 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── service-2.sdk-extras.json │ │ │ ├── securityhub │ │ │ │ └── 2018-10-26 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── serverlessrepo │ │ │ │ └── 2017-09-08 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── service-quotas │ │ │ │ └── 2019-06-24 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── servicecatalog-appregistry │ │ │ │ └── 2020-06-24 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── servicecatalog │ │ │ │ └── 2015-12-10 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── servicediscovery │ │ │ │ └── 2017-03-14 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ses │ │ │ │ └── 2010-12-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── sesv2 │ │ │ │ └── 2019-09-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── shield │ │ │ │ └── 2016-06-02 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── signer │ │ │ │ └── 2017-08-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── sms-voice │ │ │ │ └── 2018-09-05 │ │ │ │ │ └── service-2.json │ │ │ ├── sms │ │ │ │ └── 2016-10-24 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── snow-device-management │ │ │ │ └── 2021-08-04 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── snowball │ │ │ │ └── 2016-06-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sns │ │ │ │ └── 2010-03-31 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sqs │ │ │ │ └── 2012-11-05 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ssm-contacts │ │ │ │ └── 2021-05-03 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── ssm-incidents │ │ │ │ └── 2018-05-10 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── ssm │ │ │ │ └── 2014-11-06 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── sso-admin │ │ │ │ └── 2020-07-20 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sso-oidc │ │ │ │ └── 2019-06-10 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sso │ │ │ │ └── 2019-06-10 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── stepfunctions │ │ │ │ └── 2016-11-23 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── storagegateway │ │ │ │ └── 2013-06-30 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── sts │ │ │ │ └── 2011-06-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── support │ │ │ │ └── 2013-04-15 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── swf │ │ │ │ └── 2012-01-25 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── synthetics │ │ │ │ └── 2017-10-11 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── textract │ │ │ │ └── 2018-06-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── timestream-query │ │ │ │ └── 2018-11-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── timestream-write │ │ │ │ └── 2018-11-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── transcribe │ │ │ │ └── 2017-10-26 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── transfer │ │ │ │ └── 2018-11-05 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ ├── service-2.json │ │ │ │ │ └── waiters-2.json │ │ │ ├── translate │ │ │ │ └── 2017-07-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── voice-id │ │ │ │ └── 2021-09-27 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── waf-regional │ │ │ │ └── 2016-11-28 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── waf │ │ │ │ └── 2015-08-24 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── wafv2 │ │ │ │ └── 2019-07-29 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── wellarchitected │ │ │ │ └── 2020-03-31 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── wisdom │ │ │ │ └── 2020-10-19 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── workdocs │ │ │ │ └── 2016-05-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── worklink │ │ │ │ └── 2018-09-25 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── workmail │ │ │ │ └── 2017-10-01 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── workmailmessageflow │ │ │ │ └── 2019-05-01 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── workspaces-web │ │ │ │ └── 2020-07-08 │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ ├── workspaces │ │ │ │ └── 2015-04-08 │ │ │ │ │ ├── examples-1.json │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ └── service-2.json │ │ │ └── xray │ │ │ │ └── 2016-04-12 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── discovery.py │ │ ├── docs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ ├── docstring.cpython-39.pyc │ │ │ │ ├── example.cpython-39.pyc │ │ │ │ ├── method.cpython-39.pyc │ │ │ │ ├── paginator.cpython-39.pyc │ │ │ │ ├── params.cpython-39.pyc │ │ │ │ ├── service.cpython-39.pyc │ │ │ │ ├── shape.cpython-39.pyc │ │ │ │ ├── sharedexample.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── waiter.cpython-39.pyc │ │ │ ├── bcdoc │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── docstringparser.cpython-39.pyc │ │ │ │ │ ├── restdoc.cpython-39.pyc │ │ │ │ │ └── style.cpython-39.pyc │ │ │ │ ├── docstringparser.py │ │ │ │ ├── restdoc.py │ │ │ │ └── style.py │ │ │ ├── client.py │ │ │ ├── docstring.py │ │ │ ├── example.py │ │ │ ├── method.py │ │ │ ├── paginator.py │ │ │ ├── params.py │ │ │ ├── service.py │ │ │ ├── shape.py │ │ │ ├── sharedexample.py │ │ │ ├── utils.py │ │ │ └── waiter.py │ │ ├── endpoint.py │ │ ├── errorfactory.py │ │ ├── eventstream.py │ │ ├── exceptions.py │ │ ├── handlers.py │ │ ├── history.py │ │ ├── hooks.py │ │ ├── httpchecksum.py │ │ ├── httpsession.py │ │ ├── loaders.py │ │ ├── model.py │ │ ├── monitoring.py │ │ ├── paginate.py │ │ ├── parsers.py │ │ ├── regions.py │ │ ├── response.py │ │ ├── retries │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── adaptive.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── bucket.cpython-39.pyc │ │ │ │ ├── quota.cpython-39.pyc │ │ │ │ ├── special.cpython-39.pyc │ │ │ │ ├── standard.cpython-39.pyc │ │ │ │ └── throttling.cpython-39.pyc │ │ │ ├── adaptive.py │ │ │ ├── base.py │ │ │ ├── bucket.py │ │ │ ├── quota.py │ │ │ ├── special.py │ │ │ ├── standard.py │ │ │ └── throttling.py │ │ ├── retryhandler.py │ │ ├── serialize.py │ │ ├── session.py │ │ ├── signers.py │ │ ├── stub.py │ │ ├── translate.py │ │ ├── utils.py │ │ ├── validate.py │ │ ├── vendored │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── six.cpython-39.pyc │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── exceptions.cpython-39.pyc │ │ │ │ ├── exceptions.py │ │ │ │ └── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ └── urllib3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── exceptions.cpython-39.pyc │ │ │ │ │ └── exceptions.py │ │ │ └── six.py │ │ └── waiter.py │ │ ├── certifi-2021.10.8.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── __main__.cpython-39.pyc │ │ │ └── core.cpython-39.pyc │ │ ├── cacert.pem │ │ └── core.py │ │ ├── charset_normalizer-2.0.12.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── charset_normalizer │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── api.cpython-39.pyc │ │ │ ├── cd.cpython-39.pyc │ │ │ ├── constant.cpython-39.pyc │ │ │ ├── legacy.cpython-39.pyc │ │ │ ├── md.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── utils.cpython-39.pyc │ │ │ └── version.cpython-39.pyc │ │ ├── api.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── cd.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── normalizer.cpython-39.pyc │ │ │ └── normalizer.py │ │ ├── constant.py │ │ ├── legacy.py │ │ ├── md.py │ │ ├── models.py │ │ ├── py.typed │ │ ├── utils.py │ │ └── version.py │ │ ├── dateutil │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _common.cpython-39.pyc │ │ │ ├── _version.cpython-39.pyc │ │ │ ├── easter.cpython-39.pyc │ │ │ ├── relativedelta.cpython-39.pyc │ │ │ ├── rrule.cpython-39.pyc │ │ │ ├── tzwin.cpython-39.pyc │ │ │ └── utils.cpython-39.pyc │ │ ├── _common.py │ │ ├── _version.py │ │ ├── easter.py │ │ ├── parser │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _parser.cpython-39.pyc │ │ │ │ └── isoparser.cpython-39.pyc │ │ │ ├── _parser.py │ │ │ └── isoparser.py │ │ ├── relativedelta.py │ │ ├── rrule.py │ │ ├── tz │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _common.cpython-39.pyc │ │ │ │ ├── _factories.cpython-39.pyc │ │ │ │ ├── tz.cpython-39.pyc │ │ │ │ └── win.cpython-39.pyc │ │ │ ├── _common.py │ │ │ ├── _factories.py │ │ │ ├── tz.py │ │ │ └── win.py │ │ ├── tzwin.py │ │ ├── utils.py │ │ └── zoneinfo │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── rebuild.cpython-39.pyc │ │ │ ├── dateutil-zoneinfo.tar.gz │ │ │ └── rebuild.py │ │ ├── distutils-precedence.pth │ │ ├── enlighten-1.10.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── enlighten.py │ │ ├── enlighten │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _basecounter.cpython-39.pyc │ │ │ ├── _basemanager.cpython-39.pyc │ │ │ ├── _counter.cpython-39.pyc │ │ │ ├── _manager.cpython-39.pyc │ │ │ ├── _notebook_manager.cpython-39.pyc │ │ │ ├── _statusbar.cpython-39.pyc │ │ │ ├── _terminal.cpython-39.pyc │ │ │ ├── _util.cpython-39.pyc │ │ │ ├── _win_terminal.cpython-39.pyc │ │ │ ├── counter.cpython-39.pyc │ │ │ └── manager.cpython-39.pyc │ │ ├── _basecounter.py │ │ ├── _basemanager.py │ │ ├── _counter.py │ │ ├── _manager.py │ │ ├── _notebook_manager.py │ │ ├── _statusbar.py │ │ ├── _terminal.py │ │ ├── _util.py │ │ ├── _win_terminal.py │ │ ├── counter.py │ │ └── manager.py │ │ ├── examples │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── basic.cpython-39.pyc │ │ │ ├── context_manager.cpython-39.pyc │ │ │ ├── floats.cpython-39.pyc │ │ │ ├── ftp_downloader.cpython-39.pyc │ │ │ └── multiple_logging.cpython-39.pyc │ │ ├── basic.py │ │ ├── context_manager.py │ │ ├── floats.py │ │ ├── ftp_downloader.py │ │ └── multiple_logging.py │ │ ├── idna-3.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.md │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── idna │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── codec.cpython-39.pyc │ │ │ ├── compat.cpython-39.pyc │ │ │ ├── core.cpython-39.pyc │ │ │ ├── idnadata.cpython-39.pyc │ │ │ ├── intranges.cpython-39.pyc │ │ │ ├── package_data.cpython-39.pyc │ │ │ └── uts46data.cpython-39.pyc │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ ├── py.typed │ │ └── uts46data.py │ │ ├── jmespath-1.0.0.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── jmespath │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── ast.cpython-39.pyc │ │ │ ├── compat.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── functions.cpython-39.pyc │ │ │ ├── lexer.cpython-39.pyc │ │ │ ├── parser.cpython-39.pyc │ │ │ └── visitor.cpython-39.pyc │ │ ├── ast.py │ │ ├── compat.py │ │ ├── exceptions.py │ │ ├── functions.py │ │ ├── lexer.py │ │ ├── parser.py │ │ └── visitor.py │ │ ├── pip-22.0.4.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── __main__.cpython-39.pyc │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── build_env.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ ├── pyproject.cpython-39.pyc │ │ │ │ ├── self_outdated_check.cpython-39.pyc │ │ │ │ └── wheel_builder.cpython-39.pyc │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── autocompletion.cpython-39.pyc │ │ │ │ │ ├── base_command.cpython-39.pyc │ │ │ │ │ ├── cmdoptions.cpython-39.pyc │ │ │ │ │ ├── command_context.cpython-39.pyc │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ ├── main_parser.cpython-39.pyc │ │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ │ ├── progress_bars.cpython-39.pyc │ │ │ │ │ ├── req_command.cpython-39.pyc │ │ │ │ │ ├── spinners.cpython-39.pyc │ │ │ │ │ └── status_codes.cpython-39.pyc │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── command_context.py │ │ │ │ ├── main.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ ├── progress_bars.py │ │ │ │ ├── req_command.py │ │ │ │ ├── spinners.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── completion.cpython-39.pyc │ │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ ├── hash.cpython-39.pyc │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ ├── list.cpython-39.pyc │ │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ │ ├── show.cpython-39.pyc │ │ │ │ │ ├── uninstall.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── cache.py │ │ │ │ ├── check.py │ │ │ │ ├── completion.py │ │ │ │ ├── configuration.py │ │ │ │ ├── debug.py │ │ │ │ ├── download.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hash.py │ │ │ │ ├── help.py │ │ │ │ ├── index.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── installed.cpython-39.pyc │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── installed.py │ │ │ │ ├── sdist.py │ │ │ │ └── wheel.py │ │ │ ├── exceptions.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── collector.cpython-39.pyc │ │ │ │ │ ├── package_finder.cpython-39.pyc │ │ │ │ │ └── sources.cpython-39.pyc │ │ │ │ ├── collector.py │ │ │ │ ├── package_finder.py │ │ │ │ └── sources.py │ │ │ ├── locations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _distutils.cpython-39.pyc │ │ │ │ │ ├── _sysconfig.cpython-39.pyc │ │ │ │ │ └── base.cpython-39.pyc │ │ │ │ ├── _distutils.py │ │ │ │ ├── _sysconfig.py │ │ │ │ └── base.py │ │ │ ├── main.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ └── pkg_resources.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ └── pkg_resources.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── candidate.cpython-39.pyc │ │ │ │ │ ├── direct_url.cpython-39.pyc │ │ │ │ │ ├── format_control.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── link.cpython-39.pyc │ │ │ │ │ ├── scheme.cpython-39.pyc │ │ │ │ │ ├── search_scope.cpython-39.pyc │ │ │ │ │ ├── selection_prefs.cpython-39.pyc │ │ │ │ │ ├── target_python.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── candidate.py │ │ │ │ ├── direct_url.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ ├── link.py │ │ │ │ ├── scheme.py │ │ │ │ ├── search_scope.py │ │ │ │ ├── selection_prefs.py │ │ │ │ ├── target_python.py │ │ │ │ └── wheel.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ ├── lazy_wheel.cpython-39.pyc │ │ │ │ │ ├── session.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── xmlrpc.cpython-39.pyc │ │ │ │ ├── auth.py │ │ │ │ ├── cache.py │ │ │ │ ├── download.py │ │ │ │ ├── lazy_wheel.py │ │ │ │ ├── session.py │ │ │ │ ├── utils.py │ │ │ │ └── xmlrpc.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ └── prepare.cpython-39.pyc │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ │ ├── metadata_editable.cpython-39.pyc │ │ │ │ │ │ ├── metadata_legacy.cpython-39.pyc │ │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ │ ├── wheel_editable.cpython-39.pyc │ │ │ │ │ │ └── wheel_legacy.cpython-39.pyc │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── metadata_editable.py │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ ├── wheel.py │ │ │ │ │ ├── wheel_editable.py │ │ │ │ │ └── wheel_legacy.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── editable_legacy.cpython-39.pyc │ │ │ │ │ │ ├── legacy.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ ├── legacy.py │ │ │ │ │ └── wheel.py │ │ │ │ └── prepare.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ │ ├── req_file.cpython-39.pyc │ │ │ │ │ ├── req_install.cpython-39.pyc │ │ │ │ │ ├── req_set.cpython-39.pyc │ │ │ │ │ ├── req_tracker.cpython-39.pyc │ │ │ │ │ └── req_uninstall.cpython-39.pyc │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── base.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── legacy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ │ └── resolver.py │ │ │ │ └── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── candidates.cpython-39.pyc │ │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ │ ├── found_candidates.cpython-39.pyc │ │ │ │ │ ├── provider.cpython-39.pyc │ │ │ │ │ ├── reporter.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── candidates.py │ │ │ │ │ ├── factory.py │ │ │ │ │ ├── found_candidates.py │ │ │ │ │ ├── provider.py │ │ │ │ │ ├── reporter.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ └── resolver.py │ │ │ ├── self_outdated_check.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _log.cpython-39.pyc │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── compatibility_tags.cpython-39.pyc │ │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ │ ├── direct_url_helpers.cpython-39.pyc │ │ │ │ │ ├── distutils_args.cpython-39.pyc │ │ │ │ │ ├── egg_link.cpython-39.pyc │ │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ │ ├── entrypoints.cpython-39.pyc │ │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ │ ├── filetypes.cpython-39.pyc │ │ │ │ │ ├── glibc.cpython-39.pyc │ │ │ │ │ ├── hashes.cpython-39.pyc │ │ │ │ │ ├── inject_securetransport.cpython-39.pyc │ │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ ├── packaging.cpython-39.pyc │ │ │ │ │ ├── setuptools_build.cpython-39.pyc │ │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ │ ├── temp_dir.cpython-39.pyc │ │ │ │ │ ├── unpacking.cpython-39.pyc │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ ├── virtualenv.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── _log.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── compatibility_tags.py │ │ │ │ ├── datetime.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── direct_url_helpers.py │ │ │ │ ├── distutils_args.py │ │ │ │ ├── egg_link.py │ │ │ │ ├── encoding.py │ │ │ │ ├── entrypoints.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── filetypes.py │ │ │ │ ├── glibc.py │ │ │ │ ├── hashes.py │ │ │ │ ├── inject_securetransport.py │ │ │ │ ├── logging.py │ │ │ │ ├── misc.py │ │ │ │ ├── models.py │ │ │ │ ├── packaging.py │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── temp_dir.py │ │ │ │ ├── unpacking.py │ │ │ │ ├── urls.py │ │ │ │ ├── virtualenv.py │ │ │ │ └── wheel.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bazaar.cpython-39.pyc │ │ │ │ │ ├── git.cpython-39.pyc │ │ │ │ │ ├── mercurial.cpython-39.pyc │ │ │ │ │ ├── subversion.cpython-39.pyc │ │ │ │ │ └── versioncontrol.cpython-39.pyc │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ ├── subversion.py │ │ │ │ └── versioncontrol.py │ │ │ └── wheel_builder.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── distro.cpython-39.pyc │ │ │ │ ├── six.cpython-39.pyc │ │ │ │ └── typing_extensions.cpython-39.pyc │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _cmd.cpython-39.pyc │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── controller.cpython-39.pyc │ │ │ │ │ ├── filewrapper.cpython-39.pyc │ │ │ │ │ ├── heuristics.cpython-39.pyc │ │ │ │ │ ├── serialize.cpython-39.pyc │ │ │ │ │ └── wrapper.cpython-39.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── file_cache.cpython-39.pyc │ │ │ │ │ │ └── redis_cache.cpython-39.pyc │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ └── core.cpython-39.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── big5freq.cpython-39.pyc │ │ │ │ │ ├── big5prober.cpython-39.pyc │ │ │ │ │ ├── chardistribution.cpython-39.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-39.pyc │ │ │ │ │ ├── charsetprober.cpython-39.pyc │ │ │ │ │ ├── codingstatemachine.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── cp949prober.cpython-39.pyc │ │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ │ ├── escprober.cpython-39.pyc │ │ │ │ │ ├── escsm.cpython-39.pyc │ │ │ │ │ ├── eucjpprober.cpython-39.pyc │ │ │ │ │ ├── euckrfreq.cpython-39.pyc │ │ │ │ │ ├── euckrprober.cpython-39.pyc │ │ │ │ │ ├── euctwfreq.cpython-39.pyc │ │ │ │ │ ├── euctwprober.cpython-39.pyc │ │ │ │ │ ├── gb2312freq.cpython-39.pyc │ │ │ │ │ ├── gb2312prober.cpython-39.pyc │ │ │ │ │ ├── hebrewprober.cpython-39.pyc │ │ │ │ │ ├── jisfreq.cpython-39.pyc │ │ │ │ │ ├── jpcntx.cpython-39.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-39.pyc │ │ │ │ │ ├── langgreekmodel.cpython-39.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-39.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-39.pyc │ │ │ │ │ ├── langrussianmodel.cpython-39.pyc │ │ │ │ │ ├── langthaimodel.cpython-39.pyc │ │ │ │ │ ├── langturkishmodel.cpython-39.pyc │ │ │ │ │ ├── latin1prober.cpython-39.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-39.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-39.pyc │ │ │ │ │ ├── mbcssm.cpython-39.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-39.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-39.pyc │ │ │ │ │ ├── sjisprober.cpython-39.pyc │ │ │ │ │ ├── universaldetector.cpython-39.pyc │ │ │ │ │ ├── utf8prober.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── chardetect.cpython-39.pyc │ │ │ │ │ └── chardetect.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── enums.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langrussianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── langturkishmodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── metadata │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── languages.cpython-39.pyc │ │ │ │ │ └── languages.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ │ ├── ansitowin32.cpython-39.pyc │ │ │ │ │ ├── initialise.cpython-39.pyc │ │ │ │ │ ├── win32.cpython-39.pyc │ │ │ │ │ └── winterm.cpython-39.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── locators.cpython-39.pyc │ │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ │ ├── scripts.cpython-39.pyc │ │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ │ ├── shutil.cpython-39.pyc │ │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ │ └── tarfile.cpython-39.pyc │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── shutil.py │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ └── tarfile.py │ │ │ │ ├── compat.py │ │ │ │ ├── database.py │ │ │ │ ├── index.py │ │ │ │ ├── locators.py │ │ │ │ ├── manifest.py │ │ │ │ ├── markers.py │ │ │ │ ├── metadata.py │ │ │ │ ├── resources.py │ │ │ │ ├── scripts.py │ │ │ │ ├── t32.exe │ │ │ │ ├── t64-arm.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── util.py │ │ │ │ ├── version.py │ │ │ │ ├── w32.exe │ │ │ │ ├── w64-arm.exe │ │ │ │ ├── w64.exe │ │ │ │ └── wheel.py │ │ │ ├── distro.py │ │ │ ├── html5lib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _ihatexml.cpython-39.pyc │ │ │ │ │ ├── _inputstream.cpython-39.pyc │ │ │ │ │ ├── _tokenizer.cpython-39.pyc │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ ├── html5parser.cpython-39.pyc │ │ │ │ │ └── serializer.cpython-39.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ │ │ └── py.cpython-39.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-39.pyc │ │ │ │ │ │ ├── lint.cpython-39.pyc │ │ │ │ │ │ ├── optionaltags.cpython-39.pyc │ │ │ │ │ │ ├── sanitizer.cpython-39.pyc │ │ │ │ │ │ └── whitespace.cpython-39.pyc │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ ├── lint.py │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ └── whitespace.py │ │ │ │ ├── html5parser.py │ │ │ │ ├── serializer.py │ │ │ │ ├── treeadapters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ │ └── sax.cpython-39.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ ├── etree_lxml.cpython-39.pyc │ │ │ │ │ └── genshi.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── codec.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ ├── idnadata.cpython-39.pyc │ │ │ │ │ ├── intranges.cpython-39.pyc │ │ │ │ │ ├── package_data.cpython-39.pyc │ │ │ │ │ └── uts46data.cpython-39.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── ext.cpython-39.pyc │ │ │ │ │ └── fallback.cpython-39.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _manylinux.cpython-39.pyc │ │ │ │ │ ├── _musllinux.cpython-39.pyc │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ ├── _manylinux.py │ │ │ │ ├── _musllinux.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── colorlog.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── dirtools.cpython-39.pyc │ │ │ │ │ ├── envbuild.cpython-39.pyc │ │ │ │ │ ├── meta.cpython-39.pyc │ │ │ │ │ └── wrappers.cpython-39.pyc │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── dirtools.py │ │ │ │ ├── envbuild.py │ │ │ │ ├── in_process │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── _in_process.cpython-39.pyc │ │ │ │ │ └── _in_process.py │ │ │ │ ├── meta.py │ │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── py31compat.cpython-39.pyc │ │ │ │ └── py31compat.py │ │ │ ├── platformdirs │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── android.cpython-39.pyc │ │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ │ ├── macos.cpython-39.pyc │ │ │ │ │ ├── unix.cpython-39.pyc │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ └── windows.cpython-39.pyc │ │ │ │ ├── android.py │ │ │ │ ├── api.py │ │ │ │ ├── macos.py │ │ │ │ ├── unix.py │ │ │ │ ├── version.py │ │ │ │ └── windows.py │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ │ ├── colors.cpython-39.pyc │ │ │ │ │ ├── counter.cpython-39.pyc │ │ │ │ │ └── spinner.cpython-39.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── colors.py │ │ │ │ ├── counter.py │ │ │ │ └── spinner.py │ │ │ ├── pygments │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── cmdline.cpython-39.pyc │ │ │ │ │ ├── console.cpython-39.pyc │ │ │ │ │ ├── filter.cpython-39.pyc │ │ │ │ │ ├── formatter.cpython-39.pyc │ │ │ │ │ ├── lexer.cpython-39.pyc │ │ │ │ │ ├── modeline.cpython-39.pyc │ │ │ │ │ ├── plugin.cpython-39.pyc │ │ │ │ │ ├── regexopt.cpython-39.pyc │ │ │ │ │ ├── scanner.cpython-39.pyc │ │ │ │ │ ├── sphinxext.cpython-39.pyc │ │ │ │ │ ├── style.cpython-39.pyc │ │ │ │ │ ├── token.cpython-39.pyc │ │ │ │ │ ├── unistring.cpython-39.pyc │ │ │ │ │ └── util.cpython-39.pyc │ │ │ │ ├── cmdline.py │ │ │ │ ├── console.py │ │ │ │ ├── filter.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── formatter.py │ │ │ │ ├── formatters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _mapping.cpython-39.pyc │ │ │ │ │ │ ├── bbcode.cpython-39.pyc │ │ │ │ │ │ ├── groff.cpython-39.pyc │ │ │ │ │ │ ├── html.cpython-39.pyc │ │ │ │ │ │ ├── img.cpython-39.pyc │ │ │ │ │ │ ├── irc.cpython-39.pyc │ │ │ │ │ │ ├── latex.cpython-39.pyc │ │ │ │ │ │ ├── other.cpython-39.pyc │ │ │ │ │ │ ├── pangomarkup.cpython-39.pyc │ │ │ │ │ │ ├── rtf.cpython-39.pyc │ │ │ │ │ │ ├── svg.cpython-39.pyc │ │ │ │ │ │ ├── terminal.cpython-39.pyc │ │ │ │ │ │ └── terminal256.cpython-39.pyc │ │ │ │ │ ├── _mapping.py │ │ │ │ │ ├── bbcode.py │ │ │ │ │ ├── groff.py │ │ │ │ │ ├── html.py │ │ │ │ │ ├── img.py │ │ │ │ │ ├── irc.py │ │ │ │ │ ├── latex.py │ │ │ │ │ ├── other.py │ │ │ │ │ ├── pangomarkup.py │ │ │ │ │ ├── rtf.py │ │ │ │ │ ├── svg.py │ │ │ │ │ ├── terminal.py │ │ │ │ │ └── terminal256.py │ │ │ │ ├── lexer.py │ │ │ │ ├── lexers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _mapping.cpython-39.pyc │ │ │ │ │ │ └── python.cpython-39.pyc │ │ │ │ │ ├── _mapping.py │ │ │ │ │ └── python.py │ │ │ │ ├── modeline.py │ │ │ │ ├── plugin.py │ │ │ │ ├── regexopt.py │ │ │ │ ├── scanner.py │ │ │ │ ├── sphinxext.py │ │ │ │ ├── style.py │ │ │ │ ├── styles │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── token.py │ │ │ │ ├── unistring.py │ │ │ │ └── util.py │ │ │ ├── pyparsing │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── actions.cpython-39.pyc │ │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── helpers.cpython-39.pyc │ │ │ │ │ ├── results.cpython-39.pyc │ │ │ │ │ ├── testing.cpython-39.pyc │ │ │ │ │ ├── unicode.cpython-39.pyc │ │ │ │ │ └── util.cpython-39.pyc │ │ │ │ ├── actions.py │ │ │ │ ├── common.py │ │ │ │ ├── core.py │ │ │ │ ├── diagram │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── exceptions.py │ │ │ │ ├── helpers.py │ │ │ │ ├── results.py │ │ │ │ ├── testing.py │ │ │ │ ├── unicode.py │ │ │ │ └── util.py │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __version__.cpython-39.pyc │ │ │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ │ │ ├── adapters.cpython-39.pyc │ │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ ├── certs.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ ├── packages.cpython-39.pyc │ │ │ │ │ ├── sessions.cpython-39.pyc │ │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ │ ├── structures.cpython-39.pyc │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ ├── __version__.py │ │ │ │ ├── _internal_utils.py │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── help.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ ├── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── providers.cpython-39.pyc │ │ │ │ │ ├── reporters.cpython-39.pyc │ │ │ │ │ ├── resolvers.cpython-39.pyc │ │ │ │ │ └── structs.cpython-39.pyc │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── collections_abc.cpython-39.pyc │ │ │ │ │ └── collections_abc.py │ │ │ │ ├── providers.py │ │ │ │ ├── reporters.py │ │ │ │ ├── resolvers.py │ │ │ │ └── structs.py │ │ │ ├── rich │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── _cell_widths.cpython-39.pyc │ │ │ │ │ ├── _emoji_codes.cpython-39.pyc │ │ │ │ │ ├── _emoji_replace.cpython-39.pyc │ │ │ │ │ ├── _extension.cpython-39.pyc │ │ │ │ │ ├── _inspect.cpython-39.pyc │ │ │ │ │ ├── _log_render.cpython-39.pyc │ │ │ │ │ ├── _loop.cpython-39.pyc │ │ │ │ │ ├── _lru_cache.cpython-39.pyc │ │ │ │ │ ├── _palettes.cpython-39.pyc │ │ │ │ │ ├── _pick.cpython-39.pyc │ │ │ │ │ ├── _ratio.cpython-39.pyc │ │ │ │ │ ├── _spinners.cpython-39.pyc │ │ │ │ │ ├── _stack.cpython-39.pyc │ │ │ │ │ ├── _timer.cpython-39.pyc │ │ │ │ │ ├── _windows.cpython-39.pyc │ │ │ │ │ ├── _wrap.cpython-39.pyc │ │ │ │ │ ├── abc.cpython-39.pyc │ │ │ │ │ ├── align.cpython-39.pyc │ │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ │ ├── box.cpython-39.pyc │ │ │ │ │ ├── cells.cpython-39.pyc │ │ │ │ │ ├── color.cpython-39.pyc │ │ │ │ │ ├── color_triplet.cpython-39.pyc │ │ │ │ │ ├── columns.cpython-39.pyc │ │ │ │ │ ├── console.cpython-39.pyc │ │ │ │ │ ├── constrain.cpython-39.pyc │ │ │ │ │ ├── containers.cpython-39.pyc │ │ │ │ │ ├── control.cpython-39.pyc │ │ │ │ │ ├── default_styles.cpython-39.pyc │ │ │ │ │ ├── diagnose.cpython-39.pyc │ │ │ │ │ ├── emoji.cpython-39.pyc │ │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ │ ├── file_proxy.cpython-39.pyc │ │ │ │ │ ├── filesize.cpython-39.pyc │ │ │ │ │ ├── highlighter.cpython-39.pyc │ │ │ │ │ ├── json.cpython-39.pyc │ │ │ │ │ ├── jupyter.cpython-39.pyc │ │ │ │ │ ├── layout.cpython-39.pyc │ │ │ │ │ ├── live.cpython-39.pyc │ │ │ │ │ ├── live_render.cpython-39.pyc │ │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ │ ├── markup.cpython-39.pyc │ │ │ │ │ ├── measure.cpython-39.pyc │ │ │ │ │ ├── padding.cpython-39.pyc │ │ │ │ │ ├── pager.cpython-39.pyc │ │ │ │ │ ├── palette.cpython-39.pyc │ │ │ │ │ ├── panel.cpython-39.pyc │ │ │ │ │ ├── pretty.cpython-39.pyc │ │ │ │ │ ├── progress.cpython-39.pyc │ │ │ │ │ ├── progress_bar.cpython-39.pyc │ │ │ │ │ ├── prompt.cpython-39.pyc │ │ │ │ │ ├── protocol.cpython-39.pyc │ │ │ │ │ ├── region.cpython-39.pyc │ │ │ │ │ ├── repr.cpython-39.pyc │ │ │ │ │ ├── rule.cpython-39.pyc │ │ │ │ │ ├── scope.cpython-39.pyc │ │ │ │ │ ├── screen.cpython-39.pyc │ │ │ │ │ ├── segment.cpython-39.pyc │ │ │ │ │ ├── spinner.cpython-39.pyc │ │ │ │ │ ├── status.cpython-39.pyc │ │ │ │ │ ├── style.cpython-39.pyc │ │ │ │ │ ├── styled.cpython-39.pyc │ │ │ │ │ ├── syntax.cpython-39.pyc │ │ │ │ │ ├── table.cpython-39.pyc │ │ │ │ │ ├── tabulate.cpython-39.pyc │ │ │ │ │ ├── terminal_theme.cpython-39.pyc │ │ │ │ │ ├── text.cpython-39.pyc │ │ │ │ │ ├── theme.cpython-39.pyc │ │ │ │ │ ├── themes.cpython-39.pyc │ │ │ │ │ ├── traceback.cpython-39.pyc │ │ │ │ │ └── tree.cpython-39.pyc │ │ │ │ ├── _cell_widths.py │ │ │ │ ├── _emoji_codes.py │ │ │ │ ├── _emoji_replace.py │ │ │ │ ├── _extension.py │ │ │ │ ├── _inspect.py │ │ │ │ ├── _log_render.py │ │ │ │ ├── _loop.py │ │ │ │ ├── _lru_cache.py │ │ │ │ ├── _palettes.py │ │ │ │ ├── _pick.py │ │ │ │ ├── _ratio.py │ │ │ │ ├── _spinners.py │ │ │ │ ├── _stack.py │ │ │ │ ├── _timer.py │ │ │ │ ├── _windows.py │ │ │ │ ├── _wrap.py │ │ │ │ ├── abc.py │ │ │ │ ├── align.py │ │ │ │ ├── ansi.py │ │ │ │ ├── bar.py │ │ │ │ ├── box.py │ │ │ │ ├── cells.py │ │ │ │ ├── color.py │ │ │ │ ├── color_triplet.py │ │ │ │ ├── columns.py │ │ │ │ ├── console.py │ │ │ │ ├── constrain.py │ │ │ │ ├── containers.py │ │ │ │ ├── control.py │ │ │ │ ├── default_styles.py │ │ │ │ ├── diagnose.py │ │ │ │ ├── emoji.py │ │ │ │ ├── errors.py │ │ │ │ ├── file_proxy.py │ │ │ │ ├── filesize.py │ │ │ │ ├── highlighter.py │ │ │ │ ├── json.py │ │ │ │ ├── jupyter.py │ │ │ │ ├── layout.py │ │ │ │ ├── live.py │ │ │ │ ├── live_render.py │ │ │ │ ├── logging.py │ │ │ │ ├── markup.py │ │ │ │ ├── measure.py │ │ │ │ ├── padding.py │ │ │ │ ├── pager.py │ │ │ │ ├── palette.py │ │ │ │ ├── panel.py │ │ │ │ ├── pretty.py │ │ │ │ ├── progress.py │ │ │ │ ├── progress_bar.py │ │ │ │ ├── prompt.py │ │ │ │ ├── protocol.py │ │ │ │ ├── region.py │ │ │ │ ├── repr.py │ │ │ │ ├── rule.py │ │ │ │ ├── scope.py │ │ │ │ ├── screen.py │ │ │ │ ├── segment.py │ │ │ │ ├── spinner.py │ │ │ │ ├── status.py │ │ │ │ ├── style.py │ │ │ │ ├── styled.py │ │ │ │ ├── syntax.py │ │ │ │ ├── table.py │ │ │ │ ├── tabulate.py │ │ │ │ ├── terminal_theme.py │ │ │ │ ├── text.py │ │ │ │ ├── theme.py │ │ │ │ ├── themes.py │ │ │ │ ├── traceback.py │ │ │ │ └── tree.py │ │ │ ├── six.py │ │ │ ├── tenacity │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _asyncio.cpython-39.pyc │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ ├── after.cpython-39.pyc │ │ │ │ │ ├── before.cpython-39.pyc │ │ │ │ │ ├── before_sleep.cpython-39.pyc │ │ │ │ │ ├── nap.cpython-39.pyc │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ ├── stop.cpython-39.pyc │ │ │ │ │ ├── tornadoweb.cpython-39.pyc │ │ │ │ │ └── wait.cpython-39.pyc │ │ │ │ ├── _asyncio.py │ │ │ │ ├── _utils.py │ │ │ │ ├── after.py │ │ │ │ ├── before.py │ │ │ │ ├── before_sleep.py │ │ │ │ ├── nap.py │ │ │ │ ├── retry.py │ │ │ │ ├── stop.py │ │ │ │ ├── tornadoweb.py │ │ │ │ └── wait.py │ │ │ ├── tomli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _parser.cpython-39.pyc │ │ │ │ │ └── _re.cpython-39.pyc │ │ │ │ ├── _parser.py │ │ │ │ └── _re.py │ │ │ ├── typing_extensions.py │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ ├── connectionpool.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ ├── filepost.cpython-39.pyc │ │ │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ └── response.cpython-39.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── _version.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ │ │ └── socks.cpython-39.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ │ │ └── low_level.cpython-39.pyc │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ └── six.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ │ ├── queue.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ ├── ssl_.cpython-39.pyc │ │ │ │ │ ├── ssl_match_hostname.cpython-39.pyc │ │ │ │ │ ├── ssltransport.cpython-39.pyc │ │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ │ ├── url.cpython-39.pyc │ │ │ │ │ └── wait.cpython-39.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── proxy.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── ssl_match_hostname.py │ │ │ │ │ ├── ssltransport.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ ├── vendor.txt │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── labels.cpython-39.pyc │ │ │ │ ├── mklabels.cpython-39.pyc │ │ │ │ ├── tests.cpython-39.pyc │ │ │ │ └── x_user_defined.cpython-39.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ └── py.typed │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ └── zipp.cpython-39.pyc │ │ │ ├── appdirs.py │ │ │ ├── importlib_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _adapters.cpython-39.pyc │ │ │ │ │ ├── _common.cpython-39.pyc │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ ├── _itertools.cpython-39.pyc │ │ │ │ │ ├── _legacy.cpython-39.pyc │ │ │ │ │ ├── abc.cpython-39.pyc │ │ │ │ │ ├── readers.cpython-39.pyc │ │ │ │ │ └── simple.cpython-39.pyc │ │ │ │ ├── _adapters.py │ │ │ │ ├── _common.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _itertools.py │ │ │ │ ├── _legacy.py │ │ │ │ ├── abc.py │ │ │ │ ├── readers.py │ │ │ │ └── simple.py │ │ │ ├── jaraco │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── context.cpython-39.pyc │ │ │ │ │ └── functools.cpython-39.pyc │ │ │ │ ├── context.py │ │ │ │ ├── functools.py │ │ │ │ └── text │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── more_itertools │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── more.cpython-39.pyc │ │ │ │ │ └── recipes.cpython-39.pyc │ │ │ │ ├── more.py │ │ │ │ └── recipes.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _manylinux.cpython-39.pyc │ │ │ │ │ ├── _musllinux.cpython-39.pyc │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ ├── _manylinux.py │ │ │ │ ├── _musllinux.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── zipp.py │ │ └── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── prefixed-0.3.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── prefixed │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── python_dateutil-2.8.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── top_level.txt │ │ └── zip-safe │ │ ├── requests-2.27.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── requests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── __version__.cpython-39.pyc │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ ├── adapters.cpython-39.pyc │ │ │ ├── api.cpython-39.pyc │ │ │ ├── auth.cpython-39.pyc │ │ │ ├── certs.cpython-39.pyc │ │ │ ├── compat.cpython-39.pyc │ │ │ ├── cookies.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── help.cpython-39.pyc │ │ │ ├── hooks.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── packages.cpython-39.pyc │ │ │ ├── sessions.cpython-39.pyc │ │ │ ├── status_codes.cpython-39.pyc │ │ │ ├── structures.cpython-39.pyc │ │ │ └── utils.cpython-39.pyc │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ │ ├── s3transfer-0.5.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── NOTICE.txt │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── s3transfer │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── bandwidth.cpython-39.pyc │ │ │ ├── compat.cpython-39.pyc │ │ │ ├── constants.cpython-39.pyc │ │ │ ├── copies.cpython-39.pyc │ │ │ ├── crt.cpython-39.pyc │ │ │ ├── delete.cpython-39.pyc │ │ │ ├── download.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── futures.cpython-39.pyc │ │ │ ├── manager.cpython-39.pyc │ │ │ ├── processpool.cpython-39.pyc │ │ │ ├── subscribers.cpython-39.pyc │ │ │ ├── tasks.cpython-39.pyc │ │ │ ├── upload.cpython-39.pyc │ │ │ └── utils.cpython-39.pyc │ │ ├── bandwidth.py │ │ ├── compat.py │ │ ├── constants.py │ │ ├── copies.py │ │ ├── crt.py │ │ ├── delete.py │ │ ├── download.py │ │ ├── exceptions.py │ │ ├── futures.py │ │ ├── manager.py │ │ ├── processpool.py │ │ ├── subscribers.py │ │ ├── tasks.py │ │ ├── upload.py │ │ └── utils.py │ │ ├── setuptools-60.10.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── setuptools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _deprecation_warning.cpython-39.pyc │ │ │ ├── _entry_points.cpython-39.pyc │ │ │ ├── _imp.cpython-39.pyc │ │ │ ├── _importlib.cpython-39.pyc │ │ │ ├── _itertools.cpython-39.pyc │ │ │ ├── _path.cpython-39.pyc │ │ │ ├── _reqs.cpython-39.pyc │ │ │ ├── archive_util.cpython-39.pyc │ │ │ ├── build_meta.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── dep_util.cpython-39.pyc │ │ │ ├── depends.cpython-39.pyc │ │ │ ├── dist.cpython-39.pyc │ │ │ ├── errors.cpython-39.pyc │ │ │ ├── extension.cpython-39.pyc │ │ │ ├── glob.cpython-39.pyc │ │ │ ├── installer.cpython-39.pyc │ │ │ ├── launch.cpython-39.pyc │ │ │ ├── logging.cpython-39.pyc │ │ │ ├── monkey.cpython-39.pyc │ │ │ ├── msvc.cpython-39.pyc │ │ │ ├── namespaces.cpython-39.pyc │ │ │ ├── package_index.cpython-39.pyc │ │ │ ├── py34compat.cpython-39.pyc │ │ │ ├── sandbox.cpython-39.pyc │ │ │ ├── unicode_utils.cpython-39.pyc │ │ │ ├── version.cpython-39.pyc │ │ │ ├── wheel.cpython-39.pyc │ │ │ └── windows_support.cpython-39.pyc │ │ ├── _deprecation_warning.py │ │ ├── _distutils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ ├── _msvccompiler.cpython-39.pyc │ │ │ │ ├── archive_util.cpython-39.pyc │ │ │ │ ├── bcppcompiler.cpython-39.pyc │ │ │ │ ├── ccompiler.cpython-39.pyc │ │ │ │ ├── cmd.cpython-39.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ ├── cygwinccompiler.cpython-39.pyc │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ ├── dep_util.cpython-39.pyc │ │ │ │ ├── dir_util.cpython-39.pyc │ │ │ │ ├── dist.cpython-39.pyc │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ ├── extension.cpython-39.pyc │ │ │ │ ├── fancy_getopt.cpython-39.pyc │ │ │ │ ├── file_util.cpython-39.pyc │ │ │ │ ├── filelist.cpython-39.pyc │ │ │ │ ├── log.cpython-39.pyc │ │ │ │ ├── msvc9compiler.cpython-39.pyc │ │ │ │ ├── msvccompiler.cpython-39.pyc │ │ │ │ ├── py35compat.cpython-39.pyc │ │ │ │ ├── py38compat.cpython-39.pyc │ │ │ │ ├── spawn.cpython-39.pyc │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ ├── text_file.cpython-39.pyc │ │ │ │ ├── unixccompiler.cpython-39.pyc │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ └── versionpredicate.cpython-39.pyc │ │ │ ├── _collections.py │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bdist.cpython-39.pyc │ │ │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── clean.cpython-39.pyc │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ ├── install_data.cpython-39.pyc │ │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ │ ├── install_headers.cpython-39.pyc │ │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ │ ├── py37compat.cpython-39.pyc │ │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ └── upload.cpython-39.pyc │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.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 │ │ │ ├── py35compat.py │ │ │ ├── py38compat.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 │ │ ├── _path.py │ │ ├── _reqs.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── ordered_set.cpython-39.pyc │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ ├── typing_extensions.cpython-39.pyc │ │ │ │ └── zipp.cpython-39.pyc │ │ │ ├── importlib_metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _adapters.cpython-39.pyc │ │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ ├── _functools.cpython-39.pyc │ │ │ │ │ ├── _itertools.cpython-39.pyc │ │ │ │ │ ├── _meta.cpython-39.pyc │ │ │ │ │ └── _text.cpython-39.pyc │ │ │ │ ├── _adapters.py │ │ │ │ ├── _collections.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _functools.py │ │ │ │ ├── _itertools.py │ │ │ │ ├── _meta.py │ │ │ │ └── _text.py │ │ │ ├── importlib_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _adapters.cpython-39.pyc │ │ │ │ │ ├── _common.cpython-39.pyc │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ ├── _itertools.cpython-39.pyc │ │ │ │ │ ├── _legacy.cpython-39.pyc │ │ │ │ │ ├── abc.cpython-39.pyc │ │ │ │ │ ├── readers.cpython-39.pyc │ │ │ │ │ └── simple.cpython-39.pyc │ │ │ │ ├── _adapters.py │ │ │ │ ├── _common.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _itertools.py │ │ │ │ ├── _legacy.py │ │ │ │ ├── abc.py │ │ │ │ ├── readers.py │ │ │ │ └── simple.py │ │ │ ├── jaraco │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── context.cpython-39.pyc │ │ │ │ │ └── functools.cpython-39.pyc │ │ │ │ ├── context.py │ │ │ │ ├── functools.py │ │ │ │ └── text │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── more_itertools │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── more.cpython-39.pyc │ │ │ │ │ └── recipes.cpython-39.pyc │ │ │ │ ├── more.py │ │ │ │ └── recipes.py │ │ │ ├── nspektr │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── _compat.cpython-39.pyc │ │ │ │ └── _compat.py │ │ │ ├── ordered_set.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _manylinux.cpython-39.pyc │ │ │ │ │ ├── _musllinux.cpython-39.pyc │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ ├── _manylinux.py │ │ │ │ ├── _musllinux.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.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-39.pyc │ │ │ │ ├── alias.cpython-39.pyc │ │ │ │ ├── bdist_egg.cpython-39.pyc │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ ├── develop.cpython-39.pyc │ │ │ │ ├── dist_info.cpython-39.pyc │ │ │ │ ├── easy_install.cpython-39.pyc │ │ │ │ ├── egg_info.cpython-39.pyc │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ ├── py36compat.cpython-39.pyc │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ ├── rotate.cpython-39.pyc │ │ │ │ ├── saveopts.cpython-39.pyc │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ ├── setopt.cpython-39.pyc │ │ │ │ ├── test.cpython-39.pyc │ │ │ │ ├── upload.cpython-39.pyc │ │ │ │ └── upload_docs.cpython-39.pyc │ │ │ ├── alias.py │ │ │ ├── bdist_egg.py │ │ │ ├── bdist_rpm.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── develop.py │ │ │ ├── dist_info.py │ │ │ ├── easy_install.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.py │ │ ├── dep_util.py │ │ ├── depends.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.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 │ │ ├── py34compat.py │ │ ├── sandbox.py │ │ ├── script (dev).tmpl │ │ ├── script.tmpl │ │ ├── unicode_utils.py │ │ ├── version.py │ │ ├── wheel.py │ │ └── windows_support.py │ │ ├── six-1.16.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── six.py │ │ ├── urllib3-1.26.9.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── urllib3 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _collections.cpython-39.pyc │ │ │ ├── _version.cpython-39.pyc │ │ │ ├── connection.cpython-39.pyc │ │ │ ├── connectionpool.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── fields.cpython-39.pyc │ │ │ ├── filepost.cpython-39.pyc │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ ├── request.cpython-39.pyc │ │ │ └── response.cpython-39.pyc │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ └── socks.cpython-39.pyc │ │ │ ├── _appengine_environ.py │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ └── low_level.cpython-39.pyc │ │ │ │ ├── bindings.py │ │ │ │ └── low_level.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ ├── pyopenssl.py │ │ │ ├── securetransport.py │ │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── six.cpython-39.pyc │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ └── makefile.py │ │ │ └── six.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── connection.cpython-39.pyc │ │ │ ├── proxy.cpython-39.pyc │ │ │ ├── queue.cpython-39.pyc │ │ │ ├── request.cpython-39.pyc │ │ │ ├── response.cpython-39.pyc │ │ │ ├── retry.cpython-39.pyc │ │ │ ├── ssl_.cpython-39.pyc │ │ │ ├── ssl_match_hostname.cpython-39.pyc │ │ │ ├── ssltransport.cpython-39.pyc │ │ │ ├── timeout.cpython-39.pyc │ │ │ ├── url.cpython-39.pyc │ │ │ └── wait.cpython-39.pyc │ │ │ ├── connection.py │ │ │ ├── proxy.py │ │ │ ├── queue.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── ssl_match_hostname.py │ │ │ ├── ssltransport.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ │ ├── wcwidth-0.2.5.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── top_level.txt │ │ └── zip-safe │ │ └── wcwidth │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── table_wide.cpython-39.pyc │ │ ├── table_zero.cpython-39.pyc │ │ ├── unicode_versions.cpython-39.pyc │ │ └── wcwidth.cpython-39.pyc │ │ ├── table_wide.py │ │ ├── table_zero.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── test_core.cpython-39.pyc │ │ └── test_core.py │ │ ├── unicode_versions.py │ │ ├── version.json │ │ └── wcwidth.py └── pyvenv.cfg ├── modules ├── __pycache__ │ ├── elb.cpython-38.pyc │ ├── elb.cpython-39.pyc │ ├── public_api.cpython-38.pyc │ ├── public_api.cpython-39.pyc │ ├── public_buckets.cpython-38.pyc │ ├── public_buckets.cpython-39.pyc │ ├── public_db.cpython-38.pyc │ ├── public_db.cpython-39.pyc │ ├── public_ec2.cpython-38.pyc │ ├── public_ec2.cpython-39.pyc │ ├── public_redshift.cpython-38.pyc │ ├── public_redshift.cpython-39.pyc │ ├── test_endpoint.cpython-38.pyc │ └── test_endpoint.cpython-39.pyc ├── elb.py ├── public_api.py ├── public_buckets.py ├── public_db.py ├── public_ec2.py ├── public_redshift.py └── test_endpoint.py ├── poro.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/README.md -------------------------------------------------------------------------------- /env/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/bin/Activate.ps1 -------------------------------------------------------------------------------- /env/bin/__pycache__/jp.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/bin/__pycache__/jp.cpython-39.pyc -------------------------------------------------------------------------------- /env/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/bin/activate -------------------------------------------------------------------------------- /env/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/bin/activate.csh -------------------------------------------------------------------------------- /env/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/bin/activate.fish -------------------------------------------------------------------------------- /env/bin/jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/bin/jp.py -------------------------------------------------------------------------------- /env/bin/normalizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/bin/normalizer -------------------------------------------------------------------------------- /env/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/bin/pip -------------------------------------------------------------------------------- /env/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/bin/pip3 -------------------------------------------------------------------------------- /env/bin/pip3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/bin/pip3.9 -------------------------------------------------------------------------------- /env/bin/python: -------------------------------------------------------------------------------- 1 | python3.9 -------------------------------------------------------------------------------- /env/bin/python3: -------------------------------------------------------------------------------- 1 | python3.9 -------------------------------------------------------------------------------- /env/bin/python3.9: -------------------------------------------------------------------------------- 1 | /opt/homebrew/opt/python@3.9/bin/python3.9 -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/__pycache__/six.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/__pycache__/six.cpython-39.pyc -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed-1.19.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed-1.19.1.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed-1.19.1.dist-info/LICENSE -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed-1.19.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed-1.19.1.dist-info/RECORD -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed-1.19.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed-1.19.1.dist-info/WHEEL -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed-1.19.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | blessed 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/_capabilities.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/_capabilities.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/_capabilities.pyi -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/color.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/color.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/color.pyi -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/colorspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/colorspace.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/colorspace.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/colorspace.pyi -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/formatters.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/formatters.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/formatters.pyi -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/keyboard.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/keyboard.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/keyboard.pyi -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/sequences.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/sequences.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/sequences.pyi -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/terminal.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/terminal.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/terminal.pyi -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/win_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/win_terminal.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/blessed/win_terminal.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/blessed/win_terminal.pyi -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/LICENSE -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/METADATA -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/NOTICE -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/RECORD -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3-1.23.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/action.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/attr.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/base.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/client.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/collection.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/docstring.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/method.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/resource.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/service.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/subresource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/subresource.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/docs/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/docs/waiter.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/dynamodb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/dynamodb/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/dynamodb/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/dynamodb/conditions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/dynamodb/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/dynamodb/table.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/dynamodb/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/dynamodb/transform.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/dynamodb/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/dynamodb/types.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/ec2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/ec2/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/ec2/createtags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/ec2/createtags.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/ec2/deletetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/ec2/deletetags.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/examples/cloudfront.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/examples/cloudfront.rst -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/examples/s3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/examples/s3.rst -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/exceptions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/resources/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/resources/action.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/resources/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/resources/base.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/resources/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/resources/collection.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/resources/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/resources/factory.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/resources/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/resources/model.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/resources/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/resources/params.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/resources/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/resources/response.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/s3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/s3/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/s3/inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/s3/inject.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/s3/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/s3/transfer.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/session.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/boto3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/boto3/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore-1.26.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore-1.26.0.dist-info/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore-1.26.0.dist-info/NOTICE -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore-1.26.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore-1.26.0.dist-info/RECORD -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore-1.26.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore-1.26.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | botocore 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/args.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/auth.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/awsrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/awsrequest.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/cacert.pem -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/client.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/config.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/configloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/configloader.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/configprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/configprovider.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/credentials.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/crt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/crt/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/crt/auth.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/_retry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/data/_retry.json -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/account/2021-02-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/apigatewaymanagementapi/2018-11-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/appconfig/2019-10-09/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/appconfigdata/2021-11-11/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/appflow/2020-08-23/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/appintegrations/2020-07-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/application-insights/2018-11-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/apprunner/2020-05-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/auditmanager/2017-07-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/ce/2017-10-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/chime-sdk-identity/2021-04-20/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/chime-sdk-media-pipelines/2021-07-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/chime-sdk-meetings/2021-07-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/chime-sdk-messaging/2021-05-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/cloudsearch/2013-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/codestar-connections/2019-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/cognito-sync/2014-06-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/comprehendmedical/2018-10-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/compute-optimizer/2019-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/connect-contact-lens/2020-08-21/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/connectparticipant/2018-09-07/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/customer-profiles/2020-08-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/detective/2018-10-26/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/dlm/2018-01-12/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/dynamodbstreams/2012-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/ebs/2019-11-02/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/ec2-instance-connect/2018-04-02/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/data/endpoints.json -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/finspace/2021-03-12/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/firehose/2015-08-04/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/fis/2020-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/forecastquery/2018-06-26/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/frauddetector/2019-11-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/healthlake/2017-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/identitystore/2020-06-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/imagebuilder/2019-12-02/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/iot-jobs-data/2017-09-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/iotdeviceadvisor/2020-09-18/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/iotevents-data/2018-10-23/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/iotevents/2018-07-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/iotsecuretunneling/2018-10-05/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/iottwinmaker/2021-11-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/iotwireless/2020-11-22/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/ivschat/2020-07-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/kendra/2019-02-03/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/kinesis-video-media/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/kinesis-video-signaling/2019-12-04/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/kinesisanalytics/2015-08-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/lex-runtime/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/lexv2-models/2020-08-07/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/lexv2-runtime/2020-08-07/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/lookoutequipment/2020-12-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/lookoutmetrics/2017-07-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/managedblockchain/2018-09-24/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/marketplace-catalog/2018-09-17/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/memorydb/2021-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/meteringmarketplace/2016-01-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/migrationhub-config/2019-06-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/opensearch/2021-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/outposts/2019-12-03/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/panorama/2019-07-24/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/personalize-events/2018-03-22/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/personalize-runtime/2018-05-22/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/pi/2018-02-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/qldb-session/2019-07-11/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/qldb/2019-01-02/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/rds-data/2018-08-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/resiliencehub/2020-04-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/route53-recovery-control-config/2020-11-02/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/sagemaker-edge/2020-09-23/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/sagemaker-featurestore-runtime/2020-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/sagemaker-runtime/2017-05-13/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/savingsplans/2019-06-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/sesv2/2019-09-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/sso-oidc/2019-06-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/sts/2011-06-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/synthetics/2017-10-11/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/textract/2018-06-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/timestream-write/2018-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/transcribe/2017-10-26/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/voice-id/2021-09-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/waf-regional/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/wafv2/2019-07-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/wellarchitected/2020-03-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/worklink/2018-09-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/workmailmessageflow/2019-05-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/data/workspaces-web/2020-07-08/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/discovery.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/bcdoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/bcdoc/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/bcdoc/restdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/bcdoc/restdoc.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/bcdoc/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/bcdoc/style.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/client.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/docstring.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/example.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/method.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/paginator.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/params.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/service.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/shape.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/sharedexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/sharedexample.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/docs/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/docs/waiter.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/endpoint.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/errorfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/errorfactory.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/eventstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/eventstream.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/exceptions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/handlers.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/history.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/hooks.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/httpchecksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/httpchecksum.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/httpsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/httpsession.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/loaders.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/model.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/monitoring.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/paginate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/paginate.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/parsers.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/regions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/response.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/retries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/retries/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/retries/adaptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/retries/adaptive.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/retries/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/retries/base.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/retries/bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/retries/bucket.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/retries/quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/retries/quota.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/retries/special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/retries/special.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/retries/standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/retries/standard.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/retries/throttling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/retries/throttling.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/retryhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/retryhandler.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/serialize.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/session.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/signers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/signers.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/stub.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/translate.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/validate.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/vendored/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/vendored/six.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/botocore/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/botocore/waiter.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/certifi-2021.10.8.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/certifi-2021.10.8.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.10.08" 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/certifi/__main__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/certifi/cacert.pem -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/certifi/core.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer-2.0.12.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer-2.0.12.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | charset_normalizer 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/charset_normalizer/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/charset_normalizer/api.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/charset_normalizer/cd.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/charset_normalizer/constant.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/charset_normalizer/legacy.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/charset_normalizer/md.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/charset_normalizer/models.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/charset_normalizer/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/charset_normalizer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/charset_normalizer/version.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/_common.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/_version.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/easter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/easter.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/parser/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/parser/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/parser/_parser.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/parser/isoparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/parser/isoparser.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/relativedelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/relativedelta.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/rrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/rrule.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/tz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/tz/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/tz/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/tz/_common.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/tz/_factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/tz/_factories.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/tz/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/tz/tz.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/tz/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/tz/win.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/tzwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/tzwin.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/zoneinfo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/zoneinfo/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/dateutil/zoneinfo/rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/dateutil/zoneinfo/rebuild.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten-1.10.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten-1.10.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten-1.10.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten-1.10.2.dist-info/WHEEL -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten-1.10.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | enlighten 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/_basecounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/_basecounter.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/_basemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/_basemanager.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/_counter.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/_manager.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/_notebook_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/_notebook_manager.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/_statusbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/_statusbar.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/_terminal.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/_util.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/_win_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/_win_terminal.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/counter.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/enlighten/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/enlighten/manager.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/examples/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/examples/basic.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/examples/context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/examples/context_manager.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/examples/floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/examples/floats.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/examples/ftp_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/examples/ftp_downloader.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/examples/multiple_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/examples/multiple_logging.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna-3.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna-3.3.dist-info/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/idna-3.3.dist-info/LICENSE.md -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna-3.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/idna-3.3.dist-info/METADATA -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna-3.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/idna-3.3.dist-info/RECORD -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna-3.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna-3.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/idna/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/idna/codec.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/idna/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/idna/core.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.3' 2 | 3 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath-1.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath-1.0.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/jmespath-1.0.0.dist-info/RECORD -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath-1.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jmespath 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/jmespath/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/jmespath/ast.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/jmespath/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/jmespath/exceptions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/jmespath/functions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/jmespath/lexer.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/jmespath/parser.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/jmespath/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/jmespath/visitor.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip-22.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip-22.0.4.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip-22.0.4.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip-22.0.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip-22.0.4.dist-info/METADATA -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip-22.0.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip-22.0.4.dist-info/RECORD -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip-22.0.4.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip-22.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip-22.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/index.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/index/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/index/sources.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/locations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/locations/base.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/metadata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/metadata/base.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/network/session.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/req/req_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/req/req_tracker.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/resolution/base.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/_log.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/egg_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/egg_link.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.10.08" 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/euctwfreq.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/t64-arm.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/w64-arm.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/html5lib/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/py.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.3' 2 | 3 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 3) 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pep517/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pep517/dirtools.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pep517/meta.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/platformdirs/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/platformdirs/api.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/platformdirs/unix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/platformdirs/unix.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/progress/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/progress/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/progress/colors.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/__main__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/cmdline.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/console.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/filter.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/lexer.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/modeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/modeline.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/plugin.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/regexopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/regexopt.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/scanner.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/style.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/token.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pygments/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pygments/util.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pyparsing/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pyparsing/actions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pyparsing/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pyparsing/common.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pyparsing/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pyparsing/core.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pyparsing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pyparsing/helpers.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pyparsing/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pyparsing/results.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/pyparsing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/pyparsing/util.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/__main__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/_inspect.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/_loop.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/_palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/_palettes.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/_pick.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/_ratio.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/_spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/_spinners.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/_stack.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/_timer.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/_windows.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/_wrap.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/abc.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/align.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/ansi.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/bar.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/box.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/cells.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/color.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/columns.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/console.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/constrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/constrain.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/control.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/diagnose.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/emoji.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/errors.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/filesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/filesize.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/json.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/jupyter.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/layout.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/live.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/logging.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/markup.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/measure.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/padding.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/pager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/pager.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/palette.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/panel.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/pretty.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/progress.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/prompt.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/protocol.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/region.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/repr.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/rule.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/scope.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/screen.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/segment.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/spinner.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/status.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/style.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/styled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/styled.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/syntax.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/table.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/tabulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/tabulate.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/text.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/theme.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/themes.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/traceback.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/rich/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/rich/tree.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/tomli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/tomli/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/tomli/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/tomli/_parser.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.8" 3 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pip/py.typed -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/pkg_resources/_vendor/zipp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/pkg_resources/_vendor/zipp.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/prefixed-0.3.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/prefixed-0.3.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | prefixed 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/prefixed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/prefixed/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/python_dateutil-2.8.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/python_dateutil-2.8.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dateutil 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/python_dateutil-2.8.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests-2.27.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests-2.27.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests-2.27.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/__version__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/_internal_utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/adapters.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/api.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/auth.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/certs.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/cookies.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/exceptions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/help.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/hooks.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/models.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/packages.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/sessions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/status_codes.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/structures.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/requests/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer-0.5.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer-0.5.2.dist-info/NOTICE.txt: -------------------------------------------------------------------------------- 1 | s3transfer 2 | Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer-0.5.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | s3transfer 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/bandwidth.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/constants.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/copies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/copies.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/crt.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/delete.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/download.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/exceptions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/futures.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/manager.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/processpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/processpool.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/subscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/subscribers.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/tasks.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/upload.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/s3transfer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/s3transfer/utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools-60.10.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools-60.10.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools-60.10.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_entry_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_entry_points.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_importlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_importlib.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_itertools.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_path.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_reqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_reqs.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_vendor/jaraco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/_vendor/zipp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/_vendor/zipp.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/cli-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/cli-arm64.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/gui-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/gui-arm64.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/logging.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/six-1.16.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/six-1.16.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/six-1.16.0.dist-info/LICENSE -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/six-1.16.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/six-1.16.0.dist-info/METADATA -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/six-1.16.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/six-1.16.0.dist-info/RECORD -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/six-1.16.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/six-1.16.0.dist-info/WHEEL -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/six-1.16.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/six.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3-1.26.9.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3-1.26.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/_collections.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.9" 3 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/connection.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/fields.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/filepost.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/request.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/response.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/connection.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/proxy.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/queue.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/request.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/response.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/url.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/urllib3/util/wait.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth-0.2.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth-0.2.5.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/wcwidth-0.2.5.dist-info/WHEEL -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth-0.2.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wcwidth 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth-0.2.5.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/wcwidth/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth/table_wide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/wcwidth/table_wide.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth/table_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/wcwidth/table_zero.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """This file intentionally left blank.""" 2 | -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/wcwidth/tests/test_core.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth/unicode_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/wcwidth/unicode_versions.py -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/wcwidth/version.json -------------------------------------------------------------------------------- /env/lib/python3.9/site-packages/wcwidth/wcwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/lib/python3.9/site-packages/wcwidth/wcwidth.py -------------------------------------------------------------------------------- /env/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/env/pyvenv.cfg -------------------------------------------------------------------------------- /modules/__pycache__/elb.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/elb.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/elb.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/elb.cpython-39.pyc -------------------------------------------------------------------------------- /modules/__pycache__/public_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/public_api.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/public_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/public_api.cpython-39.pyc -------------------------------------------------------------------------------- /modules/__pycache__/public_buckets.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/public_buckets.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/public_buckets.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/public_buckets.cpython-39.pyc -------------------------------------------------------------------------------- /modules/__pycache__/public_db.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/public_db.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/public_db.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/public_db.cpython-39.pyc -------------------------------------------------------------------------------- /modules/__pycache__/public_ec2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/public_ec2.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/public_ec2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/public_ec2.cpython-39.pyc -------------------------------------------------------------------------------- /modules/__pycache__/public_redshift.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/public_redshift.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/public_redshift.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/public_redshift.cpython-39.pyc -------------------------------------------------------------------------------- /modules/__pycache__/test_endpoint.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/test_endpoint.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/test_endpoint.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/__pycache__/test_endpoint.cpython-39.pyc -------------------------------------------------------------------------------- /modules/elb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/elb.py -------------------------------------------------------------------------------- /modules/public_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/public_api.py -------------------------------------------------------------------------------- /modules/public_buckets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/public_buckets.py -------------------------------------------------------------------------------- /modules/public_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/public_db.py -------------------------------------------------------------------------------- /modules/public_ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/public_ec2.py -------------------------------------------------------------------------------- /modules/public_redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/public_redshift.py -------------------------------------------------------------------------------- /modules/test_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/modules/test_endpoint.py -------------------------------------------------------------------------------- /poro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/poro.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9rnt/poro/HEAD/requirements.txt --------------------------------------------------------------------------------