├── .gitignore ├── .travis.yml ├── LICENSE ├── Readme.md ├── api_handlers.py ├── available_ips.py ├── import_cidrs.py ├── import_eips.py ├── import_elbs_classic.py ├── import_elbsv2.py ├── import_endpoint_services.py ├── import_nat_gateways.py ├── package.json ├── requirements.txt ├── runner.py ├── serverless.example.yml ├── sts.py ├── tests ├── available_ips_test.py ├── import_cidrs_test.py ├── import_eips_test.py ├── import_elbs_classic_test.py ├── nat_gateways_test.py └── requirements.txt └── vendor ├── __pycache__ └── six.cpython-36.pyc ├── boto3-1.5.18.dist-info ├── DESCRIPTION.rst ├── INSTALLER ├── METADATA ├── RECORD ├── WHEEL ├── metadata.json └── top_level.txt ├── boto3 ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── compat.cpython-36.pyc │ ├── exceptions.cpython-36.pyc │ ├── session.cpython-36.pyc │ └── utils.cpython-36.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-36.pyc │ │ ├── action.cpython-36.pyc │ │ ├── attr.cpython-36.pyc │ │ ├── base.cpython-36.pyc │ │ ├── client.cpython-36.pyc │ │ ├── collection.cpython-36.pyc │ │ ├── docstring.cpython-36.pyc │ │ ├── method.cpython-36.pyc │ │ ├── resource.cpython-36.pyc │ │ ├── service.cpython-36.pyc │ │ ├── subresource.cpython-36.pyc │ │ ├── utils.cpython-36.pyc │ │ └── waiter.cpython-36.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-36.pyc │ │ ├── conditions.cpython-36.pyc │ │ ├── table.cpython-36.pyc │ │ ├── transform.cpython-36.pyc │ │ └── types.cpython-36.pyc │ ├── conditions.py │ ├── table.py │ ├── transform.py │ └── types.py ├── ec2 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── createtags.cpython-36.pyc │ │ └── deletetags.cpython-36.pyc │ ├── createtags.py │ └── deletetags.py ├── examples │ ├── cloudfront.rst │ └── s3.rst ├── exceptions.py ├── resources │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── action.cpython-36.pyc │ │ ├── base.cpython-36.pyc │ │ ├── collection.cpython-36.pyc │ │ ├── factory.cpython-36.pyc │ │ ├── model.cpython-36.pyc │ │ ├── params.cpython-36.pyc │ │ └── response.cpython-36.pyc │ ├── action.py │ ├── base.py │ ├── collection.py │ ├── factory.py │ ├── model.py │ ├── params.py │ └── response.py ├── s3 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── inject.cpython-36.pyc │ │ └── transfer.cpython-36.pyc │ ├── inject.py │ └── transfer.py ├── session.py └── utils.py ├── botocore-1.8.32.dist-info ├── DESCRIPTION.rst ├── INSTALLER ├── METADATA ├── RECORD ├── WHEEL ├── metadata.json └── top_level.txt ├── botocore ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── args.cpython-36.pyc │ ├── auth.cpython-36.pyc │ ├── awsrequest.cpython-36.pyc │ ├── client.cpython-36.pyc │ ├── compat.cpython-36.pyc │ ├── config.cpython-36.pyc │ ├── configloader.cpython-36.pyc │ ├── credentials.cpython-36.pyc │ ├── endpoint.cpython-36.pyc │ ├── errorfactory.cpython-36.pyc │ ├── exceptions.cpython-36.pyc │ ├── handlers.cpython-36.pyc │ ├── hooks.cpython-36.pyc │ ├── loaders.cpython-36.pyc │ ├── model.cpython-36.pyc │ ├── paginate.cpython-36.pyc │ ├── parsers.cpython-36.pyc │ ├── regions.cpython-36.pyc │ ├── response.cpython-36.pyc │ ├── retryhandler.cpython-36.pyc │ ├── serialize.cpython-36.pyc │ ├── session.cpython-36.pyc │ ├── signers.cpython-36.pyc │ ├── stub.cpython-36.pyc │ ├── translate.cpython-36.pyc │ ├── utils.cpython-36.pyc │ ├── validate.cpython-36.pyc │ └── waiter.cpython-36.pyc ├── args.py ├── auth.py ├── awsrequest.py ├── client.py ├── compat.py ├── config.py ├── configloader.py ├── credentials.py ├── data │ ├── _retry.json │ ├── acm │ │ └── 2015-12-08 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── alexaforbusiness │ │ └── 2017-11-09 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── apigateway │ │ └── 2015-07-09 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── application-autoscaling │ │ └── 2016-02-06 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── appstream │ │ └── 2016-12-01 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── appsync │ │ └── 2017-07-25 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── athena │ │ └── 2017-05-18 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── autoscaling-plans │ │ └── 2018-01-06 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── autoscaling │ │ └── 2011-01-01 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── batch │ │ └── 2016-08-10 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── budgets │ │ └── 2016-10-20 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── ce │ │ └── 2017-10-25 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── cloud9 │ │ └── 2017-09-23 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── clouddirectory │ │ └── 2016-05-10 │ │ │ ├── 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 │ ├── cloudhsm │ │ └── 2014-05-30 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── cloudhsmv2 │ │ └── 2017-04-28 │ │ │ ├── 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 │ ├── 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 │ ├── codepipeline │ │ └── 2015-07-09 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── codestar │ │ └── 2017-04-19 │ │ │ ├── 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 │ │ │ └── service-2.json │ ├── comprehend │ │ └── 2017-11-27 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── config │ │ └── 2014-11-12 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── cur │ │ └── 2017-01-06 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── datapipeline │ │ └── 2012-10-29 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── dax │ │ └── 2017-04-19 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── devicefarm │ │ └── 2015-06-23 │ │ │ ├── examples-1.json │ │ │ ├── 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 │ ├── dms │ │ └── 2016-01-01 │ │ │ ├── examples-1.json │ │ │ ├── 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 │ ├── 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 │ │ └── 2015-09-21 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-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 │ ├── elasticache │ │ ├── 2014-09-30 │ │ │ ├── paginators-1.json │ │ │ ├── service-2.json │ │ │ └── waiters-2.json │ │ └── 2015-02-02 │ │ │ ├── paginators-1.json │ │ │ ├── service-2.json │ │ │ └── waiters-2.json │ ├── elasticbeanstalk │ │ └── 2010-12-01 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-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 │ ├── emr │ │ └── 2009-03-31 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ ├── service-2.json │ │ │ └── waiters-2.json │ ├── endpoints.json │ ├── es │ │ └── 2015-01-01 │ │ │ ├── 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 │ ├── firehose │ │ └── 2015-08-04 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── gamelift │ │ └── 2015-10-01 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── glacier │ │ └── 2012-06-01 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ ├── service-2.json │ │ │ └── waiters-2.json │ ├── glue │ │ └── 2017-03-31 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── greengrass │ │ └── 2017-06-07 │ │ │ └── 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 │ ├── iam │ │ └── 2010-05-08 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ ├── service-2.json │ │ │ └── waiters-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 │ ├── iot-data │ │ └── 2015-05-28 │ │ │ └── service-2.json │ ├── iot-jobs-data │ │ └── 2017-09-29 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── iot │ │ └── 2015-05-28 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── kinesis-video-archived-media │ │ └── 2017-09-30 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── kinesis-video-media │ │ └── 2017-09-30 │ │ │ ├── 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 │ ├── kinesisvideo │ │ └── 2017-09-30 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── kms │ │ └── 2014-11-01 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── lambda │ │ ├── 2014-11-11 │ │ │ └── service-2.json │ │ └── 2015-03-31 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── lex-models │ │ └── 2017-04-19 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── lex-runtime │ │ └── 2016-11-28 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── lightsail │ │ └── 2016-11-28 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── logs │ │ └── 2014-03-28 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── machinelearning │ │ └── 2014-12-12 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ ├── service-2.json │ │ │ └── waiters-2.json │ ├── marketplace-entitlement │ │ └── 2017-01-11 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── marketplacecommerceanalytics │ │ └── 2015-07-01 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── mediaconvert │ │ └── 2017-08-29 │ │ │ └── service-2.json │ ├── medialive │ │ └── 2017-10-14 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── mediapackage │ │ └── 2017-10-12 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── mediastore-data │ │ └── 2017-09-01 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── mediastore │ │ └── 2017-09-01 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── meteringmarketplace │ │ └── 2016-01-14 │ │ │ ├── examples-1.json │ │ │ └── service-2.json │ ├── mgh │ │ └── 2017-05-31 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── mobile │ │ └── 2017-07-01 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── mq │ │ └── 2017-11-27 │ │ │ └── service-2.json │ ├── mturk │ │ └── 2017-01-17 │ │ │ ├── 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 │ │ │ ├── paginators-1.json │ │ │ └── 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 │ │ │ ├── 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 │ │ └── 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 │ ├── resource-groups │ │ └── 2017-11-27 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── resourcegroupstaggingapi │ │ └── 2017-01-26 │ │ │ ├── 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 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── s3 │ │ └── 2006-03-01 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ ├── service-2.json │ │ │ └── waiters-2.json │ ├── sagemaker-runtime │ │ └── 2017-05-13 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── sagemaker │ │ └── 2017-07-24 │ │ │ ├── paginators-1.json │ │ │ ├── service-2.json │ │ │ └── waiters-2.json │ ├── sdb │ │ └── 2009-04-15 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── serverlessrepo │ │ └── 2017-09-08 │ │ │ └── service-2.json │ ├── servicecatalog │ │ └── 2015-12-10 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── servicediscovery │ │ └── 2017-03-14 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── ses │ │ └── 2010-12-01 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ ├── service-2.json │ │ │ └── waiters-2.json │ ├── shield │ │ └── 2016-06-02 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── sms │ │ └── 2016-10-24 │ │ │ ├── examples-1.json │ │ │ ├── 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 │ │ └── 2014-11-06 │ │ │ ├── examples-1.json │ │ │ ├── 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 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── translate │ │ └── 2017-07-01 │ │ │ ├── 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 │ ├── workdocs │ │ └── 2016-05-01 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── workmail │ │ └── 2017-10-01 │ │ │ ├── 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 ├── docs │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── client.cpython-36.pyc │ │ ├── docstring.cpython-36.pyc │ │ ├── example.cpython-36.pyc │ │ ├── method.cpython-36.pyc │ │ ├── paginator.cpython-36.pyc │ │ ├── params.cpython-36.pyc │ │ ├── service.cpython-36.pyc │ │ ├── shape.cpython-36.pyc │ │ ├── sharedexample.cpython-36.pyc │ │ ├── utils.cpython-36.pyc │ │ └── waiter.cpython-36.pyc │ ├── bcdoc │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── docevents.cpython-36.pyc │ │ │ ├── docstringparser.cpython-36.pyc │ │ │ ├── restdoc.cpython-36.pyc │ │ │ ├── style.cpython-36.pyc │ │ │ └── textwriter.cpython-36.pyc │ │ ├── docevents.py │ │ ├── docstringparser.py │ │ ├── restdoc.py │ │ ├── style.py │ │ └── textwriter.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 ├── exceptions.py ├── handlers.py ├── history.py ├── hooks.py ├── loaders.py ├── model.py ├── paginate.py ├── parsers.py ├── regions.py ├── response.py ├── retryhandler.py ├── serialize.py ├── session.py ├── signers.py ├── stub.py ├── translate.py ├── utils.py ├── validate.py ├── vendored │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── six.cpython-36.pyc │ ├── requests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── adapters.cpython-36.pyc │ │ │ ├── api.cpython-36.pyc │ │ │ ├── auth.cpython-36.pyc │ │ │ ├── certs.cpython-36.pyc │ │ │ ├── compat.cpython-36.pyc │ │ │ ├── cookies.cpython-36.pyc │ │ │ ├── exceptions.cpython-36.pyc │ │ │ ├── hooks.cpython-36.pyc │ │ │ ├── models.cpython-36.pyc │ │ │ ├── sessions.cpython-36.pyc │ │ │ ├── status_codes.cpython-36.pyc │ │ │ ├── structures.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── cacert.pem │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── big5freq.cpython-36.pyc │ │ │ │ │ ├── big5prober.cpython-36.pyc │ │ │ │ │ ├── chardetect.cpython-36.pyc │ │ │ │ │ ├── chardistribution.cpython-36.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-36.pyc │ │ │ │ │ ├── charsetprober.cpython-36.pyc │ │ │ │ │ ├── codingstatemachine.cpython-36.pyc │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ │ ├── cp949prober.cpython-36.pyc │ │ │ │ │ ├── escprober.cpython-36.pyc │ │ │ │ │ ├── escsm.cpython-36.pyc │ │ │ │ │ ├── eucjpprober.cpython-36.pyc │ │ │ │ │ ├── euckrfreq.cpython-36.pyc │ │ │ │ │ ├── euckrprober.cpython-36.pyc │ │ │ │ │ ├── euctwfreq.cpython-36.pyc │ │ │ │ │ ├── euctwprober.cpython-36.pyc │ │ │ │ │ ├── gb2312freq.cpython-36.pyc │ │ │ │ │ ├── gb2312prober.cpython-36.pyc │ │ │ │ │ ├── hebrewprober.cpython-36.pyc │ │ │ │ │ ├── jisfreq.cpython-36.pyc │ │ │ │ │ ├── jpcntx.cpython-36.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-36.pyc │ │ │ │ │ ├── langcyrillicmodel.cpython-36.pyc │ │ │ │ │ ├── langgreekmodel.cpython-36.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-36.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-36.pyc │ │ │ │ │ ├── langthaimodel.cpython-36.pyc │ │ │ │ │ ├── latin1prober.cpython-36.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-36.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-36.pyc │ │ │ │ │ ├── mbcssm.cpython-36.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-36.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-36.pyc │ │ │ │ │ ├── sjisprober.cpython-36.pyc │ │ │ │ │ ├── universaldetector.cpython-36.pyc │ │ │ │ │ └── utf8prober.cpython-36.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardetect.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── constants.py │ │ │ │ ├── cp949prober.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 │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ └── utf8prober.py │ │ │ └── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _collections.cpython-36.pyc │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ ├── connectionpool.cpython-36.pyc │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ ├── fields.cpython-36.pyc │ │ │ │ ├── filepost.cpython-36.pyc │ │ │ │ ├── poolmanager.cpython-36.pyc │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ └── response.cpython-36.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── ntlmpool.cpython-36.pyc │ │ │ │ │ └── pyopenssl.cpython-36.pyc │ │ │ │ ├── ntlmpool.py │ │ │ │ └── pyopenssl.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── ordered_dict.cpython-36.pyc │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ ├── ordered_dict.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── _implementation.cpython-36.pyc │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ ├── retry.cpython-36.pyc │ │ │ │ ├── ssl_.cpython-36.pyc │ │ │ │ ├── timeout.cpython-36.pyc │ │ │ │ └── url.cpython-36.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ └── url.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ └── six.py └── waiter.py ├── dateutil ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── _common.cpython-36.pyc │ ├── _version.cpython-36.pyc │ ├── easter.cpython-36.pyc │ ├── parser.cpython-36.pyc │ ├── relativedelta.cpython-36.pyc │ ├── rrule.cpython-36.pyc │ └── tzwin.cpython-36.pyc ├── _common.py ├── _version.py ├── easter.py ├── parser.py ├── relativedelta.py ├── rrule.py ├── tz │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── _common.cpython-36.pyc │ │ ├── tz.cpython-36.pyc │ │ └── win.cpython-36.pyc │ ├── _common.py │ ├── tz.py │ └── win.py ├── tzwin.py └── zoneinfo │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── rebuild.cpython-36.pyc │ ├── dateutil-zoneinfo.tar.gz │ └── rebuild.py ├── docutils-0.14.dist-info ├── DESCRIPTION.rst ├── INSTALLER ├── METADATA ├── RECORD ├── WHEEL ├── metadata.json └── top_level.txt ├── docutils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── _compat.cpython-36.pyc │ ├── core.cpython-36.pyc │ ├── examples.cpython-36.pyc │ ├── frontend.cpython-36.pyc │ ├── io.cpython-36.pyc │ ├── nodes.cpython-36.pyc │ └── statemachine.cpython-36.pyc ├── _compat.py ├── core.py ├── examples.py ├── frontend.py ├── io.py ├── languages │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── af.cpython-36.pyc │ │ ├── ca.cpython-36.pyc │ │ ├── cs.cpython-36.pyc │ │ ├── da.cpython-36.pyc │ │ ├── de.cpython-36.pyc │ │ ├── en.cpython-36.pyc │ │ ├── eo.cpython-36.pyc │ │ ├── es.cpython-36.pyc │ │ ├── fa.cpython-36.pyc │ │ ├── fi.cpython-36.pyc │ │ ├── fr.cpython-36.pyc │ │ ├── gl.cpython-36.pyc │ │ ├── he.cpython-36.pyc │ │ ├── it.cpython-36.pyc │ │ ├── ja.cpython-36.pyc │ │ ├── lt.cpython-36.pyc │ │ ├── lv.cpython-36.pyc │ │ ├── nl.cpython-36.pyc │ │ ├── pl.cpython-36.pyc │ │ ├── pt_br.cpython-36.pyc │ │ ├── ru.cpython-36.pyc │ │ ├── sk.cpython-36.pyc │ │ ├── sv.cpython-36.pyc │ │ ├── zh_cn.cpython-36.pyc │ │ └── zh_tw.cpython-36.pyc │ ├── af.py │ ├── ca.py │ ├── cs.py │ ├── da.py │ ├── de.py │ ├── en.py │ ├── eo.py │ ├── es.py │ ├── fa.py │ ├── fi.py │ ├── fr.py │ ├── gl.py │ ├── he.py │ ├── it.py │ ├── ja.py │ ├── lt.py │ ├── lv.py │ ├── nl.py │ ├── pl.py │ ├── pt_br.py │ ├── ru.py │ ├── sk.py │ ├── sv.py │ ├── zh_cn.py │ └── zh_tw.py ├── nodes.py ├── parsers │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── null.cpython-36.pyc │ ├── null.py │ └── rst │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── roles.cpython-36.pyc │ │ ├── states.cpython-36.pyc │ │ └── tableparser.cpython-36.pyc │ │ ├── directives │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── admonitions.cpython-36.pyc │ │ │ ├── body.cpython-36.pyc │ │ │ ├── html.cpython-36.pyc │ │ │ ├── images.cpython-36.pyc │ │ │ ├── misc.cpython-36.pyc │ │ │ ├── parts.cpython-36.pyc │ │ │ ├── references.cpython-36.pyc │ │ │ └── tables.cpython-36.pyc │ │ ├── admonitions.py │ │ ├── body.py │ │ ├── html.py │ │ ├── images.py │ │ ├── misc.py │ │ ├── parts.py │ │ ├── references.py │ │ └── tables.py │ │ ├── include │ │ ├── README.txt │ │ ├── isoamsa.txt │ │ ├── isoamsb.txt │ │ ├── isoamsc.txt │ │ ├── isoamsn.txt │ │ ├── isoamso.txt │ │ ├── isoamsr.txt │ │ ├── isobox.txt │ │ ├── isocyr1.txt │ │ ├── isocyr2.txt │ │ ├── isodia.txt │ │ ├── isogrk1.txt │ │ ├── isogrk2.txt │ │ ├── isogrk3.txt │ │ ├── isogrk4-wide.txt │ │ ├── isogrk4.txt │ │ ├── isolat1.txt │ │ ├── isolat2.txt │ │ ├── isomfrk-wide.txt │ │ ├── isomfrk.txt │ │ ├── isomopf-wide.txt │ │ ├── isomopf.txt │ │ ├── isomscr-wide.txt │ │ ├── isomscr.txt │ │ ├── isonum.txt │ │ ├── isopub.txt │ │ ├── isotech.txt │ │ ├── mmlalias.txt │ │ ├── mmlextra-wide.txt │ │ ├── mmlextra.txt │ │ ├── s5defs.txt │ │ ├── xhtml1-lat1.txt │ │ ├── xhtml1-special.txt │ │ └── xhtml1-symbol.txt │ │ ├── languages │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── af.cpython-36.pyc │ │ │ ├── ca.cpython-36.pyc │ │ │ ├── cs.cpython-36.pyc │ │ │ ├── da.cpython-36.pyc │ │ │ ├── de.cpython-36.pyc │ │ │ ├── en.cpython-36.pyc │ │ │ ├── eo.cpython-36.pyc │ │ │ ├── es.cpython-36.pyc │ │ │ ├── fa.cpython-36.pyc │ │ │ ├── fi.cpython-36.pyc │ │ │ ├── fr.cpython-36.pyc │ │ │ ├── gl.cpython-36.pyc │ │ │ ├── he.cpython-36.pyc │ │ │ ├── it.cpython-36.pyc │ │ │ ├── ja.cpython-36.pyc │ │ │ ├── lt.cpython-36.pyc │ │ │ ├── lv.cpython-36.pyc │ │ │ ├── nl.cpython-36.pyc │ │ │ ├── pl.cpython-36.pyc │ │ │ ├── pt_br.cpython-36.pyc │ │ │ ├── ru.cpython-36.pyc │ │ │ ├── sk.cpython-36.pyc │ │ │ ├── sv.cpython-36.pyc │ │ │ ├── zh_cn.cpython-36.pyc │ │ │ └── zh_tw.cpython-36.pyc │ │ ├── af.py │ │ ├── ca.py │ │ ├── cs.py │ │ ├── da.py │ │ ├── de.py │ │ ├── en.py │ │ ├── eo.py │ │ ├── es.py │ │ ├── fa.py │ │ ├── fi.py │ │ ├── fr.py │ │ ├── gl.py │ │ ├── he.py │ │ ├── it.py │ │ ├── ja.py │ │ ├── lt.py │ │ ├── lv.py │ │ ├── nl.py │ │ ├── pl.py │ │ ├── pt_br.py │ │ ├── ru.py │ │ ├── sk.py │ │ ├── sv.py │ │ ├── zh_cn.py │ │ └── zh_tw.py │ │ ├── roles.py │ │ ├── states.py │ │ └── tableparser.py ├── readers │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── doctree.cpython-36.pyc │ │ ├── pep.cpython-36.pyc │ │ └── standalone.cpython-36.pyc │ ├── doctree.py │ ├── pep.py │ └── standalone.py ├── statemachine.py ├── transforms │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── components.cpython-36.pyc │ │ ├── frontmatter.cpython-36.pyc │ │ ├── misc.cpython-36.pyc │ │ ├── parts.cpython-36.pyc │ │ ├── peps.cpython-36.pyc │ │ ├── references.cpython-36.pyc │ │ ├── universal.cpython-36.pyc │ │ └── writer_aux.cpython-36.pyc │ ├── components.py │ ├── frontmatter.py │ ├── misc.py │ ├── parts.py │ ├── peps.py │ ├── references.py │ ├── universal.py │ └── writer_aux.py ├── utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── code_analyzer.cpython-36.pyc │ │ ├── error_reporting.cpython-36.pyc │ │ ├── punctuation_chars.cpython-36.pyc │ │ ├── roman.cpython-36.pyc │ │ ├── smartquotes.cpython-36.pyc │ │ └── urischemes.cpython-36.pyc │ ├── code_analyzer.py │ ├── error_reporting.py │ ├── math │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── latex2mathml.cpython-36.pyc │ │ │ ├── math2html.cpython-36.pyc │ │ │ ├── tex2mathml_extern.cpython-36.pyc │ │ │ ├── tex2unichar.cpython-36.pyc │ │ │ └── unichar2tex.cpython-36.pyc │ │ ├── latex2mathml.py │ │ ├── math2html.py │ │ ├── tex2mathml_extern.py │ │ ├── tex2unichar.py │ │ └── unichar2tex.py │ ├── punctuation_chars.py │ ├── roman.py │ ├── smartquotes.py │ └── urischemes.py └── writers │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── _html_base.cpython-36.pyc │ ├── docutils_xml.cpython-36.pyc │ ├── manpage.cpython-36.pyc │ ├── null.cpython-36.pyc │ └── pseudoxml.cpython-36.pyc │ ├── _html_base.py │ ├── docutils_xml.py │ ├── html4css1 │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-36.pyc │ ├── html4css1.css │ └── template.txt │ ├── html5_polyglot │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-36.pyc │ ├── math.css │ ├── minimal.css │ ├── plain.css │ └── template.txt │ ├── latex2e │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-36.pyc │ ├── default.tex │ ├── titlepage.tex │ └── xelatex.tex │ ├── manpage.py │ ├── null.py │ ├── odf_odt │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── pygmentsformatter.cpython-36.pyc │ ├── pygmentsformatter.py │ └── styles.odt │ ├── pep_html │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-36.pyc │ ├── pep.css │ └── template.txt │ ├── pseudoxml.py │ ├── s5_html │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-36.pyc │ └── themes │ │ ├── README.txt │ │ ├── big-black │ │ ├── __base__ │ │ ├── framing.css │ │ └── pretty.css │ │ ├── big-white │ │ ├── framing.css │ │ └── pretty.css │ │ ├── default │ │ ├── blank.gif │ │ ├── framing.css │ │ ├── iepngfix.htc │ │ ├── opera.css │ │ ├── outline.css │ │ ├── pretty.css │ │ ├── print.css │ │ ├── s5-core.css │ │ ├── slides.css │ │ └── slides.js │ │ ├── medium-black │ │ ├── __base__ │ │ └── pretty.css │ │ ├── medium-white │ │ ├── framing.css │ │ └── pretty.css │ │ ├── small-black │ │ ├── __base__ │ │ └── pretty.css │ │ └── small-white │ │ ├── framing.css │ │ └── pretty.css │ └── xetex │ ├── __init__.py │ └── __pycache__ │ └── __init__.cpython-36.pyc ├── jmespath-0.9.3.dist-info ├── DESCRIPTION.rst ├── INSTALLER ├── METADATA ├── RECORD ├── WHEEL ├── metadata.json ├── pbr.json └── top_level.txt ├── jmespath ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── ast.cpython-36.pyc │ ├── compat.cpython-36.pyc │ ├── exceptions.cpython-36.pyc │ ├── functions.cpython-36.pyc │ ├── lexer.cpython-36.pyc │ ├── parser.cpython-36.pyc │ └── visitor.cpython-36.pyc ├── ast.py ├── compat.py ├── exceptions.py ├── functions.py ├── lexer.py ├── parser.py └── visitor.py ├── python_dateutil-2.6.1.dist-info ├── DESCRIPTION.rst ├── INSTALLER ├── METADATA ├── RECORD ├── WHEEL ├── metadata.json ├── top_level.txt └── zip-safe ├── s3transfer-0.1.12.dist-info ├── DESCRIPTION.rst ├── INSTALLER ├── METADATA ├── RECORD ├── WHEEL ├── metadata.json └── top_level.txt ├── s3transfer ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── compat.cpython-36.pyc │ ├── copies.cpython-36.pyc │ ├── delete.cpython-36.pyc │ ├── download.cpython-36.pyc │ ├── exceptions.cpython-36.pyc │ ├── futures.cpython-36.pyc │ ├── manager.cpython-36.pyc │ ├── subscribers.cpython-36.pyc │ ├── tasks.cpython-36.pyc │ ├── upload.cpython-36.pyc │ └── utils.cpython-36.pyc ├── bandwidth.py ├── compat.py ├── copies.py ├── delete.py ├── download.py ├── exceptions.py ├── futures.py ├── manager.py ├── subscribers.py ├── tasks.py ├── upload.py └── utils.py ├── six-1.11.0.dist-info ├── DESCRIPTION.rst ├── INSTALLER ├── METADATA ├── RECORD ├── WHEEL ├── metadata.json └── top_level.txt └── six.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Distribution / packaging 2 | .Python 3 | env/ 4 | build/ 5 | develop-eggs/ 6 | dist/ 7 | downloads/ 8 | eggs/ 9 | .eggs/ 10 | lib/ 11 | lib64/ 12 | parts/ 13 | sdist/ 14 | var/ 15 | *.egg-info/ 16 | .installed.cfg 17 | *.egg 18 | __pycache__ 19 | 20 | # Serverless directories 21 | .serverless 22 | node_modules 23 | serverless.yml 24 | 25 | .idea 26 | .vscode 27 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | python: 3 | - "3.6" 4 | 5 | env: 6 | - AWS_DEFAULT_REGION=us-east-1 7 | 8 | install: 9 | - pip install -r requirements.txt 10 | - pip install -r tests/requirements.txt 11 | 12 | script: python -m unittest discover -s tests/ -p "*.py" 13 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "serverless-aws-documentation": "^0.8.0", 4 | "serverless-aws-alerts": "^1.2.4" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto3==1.5.13 2 | -------------------------------------------------------------------------------- /sts.py: -------------------------------------------------------------------------------- 1 | import boto3 2 | import json 3 | from datetime import date, datetime 4 | 5 | class DateTimeEncoder(json.JSONEncoder): 6 | def default(self, o): 7 | if isinstance(o, datetime): 8 | return o.isoformat() 9 | 10 | return json.JSONEncoder.default(self, o) 11 | 12 | def establish_role(acct): 13 | sts_connection = boto3.client('sts') 14 | acct_b = sts_connection.assume_role( 15 | RoleArn="arn:aws:iam::{}:role/role_cidr_house".format(acct), 16 | RoleSessionName="cross_acct_lambda" 17 | ) 18 | d = json.dumps(acct_b, cls=DateTimeEncoder) 19 | 20 | jsonn = json.loads(d) 21 | 22 | ACCESS_KEY = jsonn['Credentials']['AccessKeyId'] 23 | SECRET_KEY = jsonn['Credentials']['SecretAccessKey'] 24 | SESSION_TOKEN = jsonn['Credentials']['SessionToken'] 25 | 26 | return ACCESS_KEY, SECRET_KEY, SESSION_TOKEN 27 | -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | moto==1.3.3 2 | -------------------------------------------------------------------------------- /vendor/__pycache__/six.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/__pycache__/six.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3-1.5.18.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /vendor/boto3-1.5.18.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /vendor/boto3-1.5.18.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | -------------------------------------------------------------------------------- /vendor/boto3/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/__pycache__/session.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/__pycache__/session.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/action.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/action.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/attr.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/attr.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/base.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/client.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/client.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/collection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/collection.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/docstring.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/docstring.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/method.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/method.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/resource.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/resource.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/service.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/service.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/subresource.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/subresource.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/docs/__pycache__/waiter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/docs/__pycache__/waiter.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/dynamodb/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"). You 4 | # may not use this file except in compliance with the License. A copy of 5 | # the License is located at 6 | # 7 | # http://aws.amazon.com/apache2.0/ 8 | # 9 | # or in the "license" file accompanying this file. This file is 10 | # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 11 | # ANY KIND, either express or implied. See the License for the specific 12 | # language governing permissions and limitations under the License. 13 | -------------------------------------------------------------------------------- /vendor/boto3/dynamodb/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/dynamodb/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/dynamodb/__pycache__/conditions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/dynamodb/__pycache__/conditions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/dynamodb/__pycache__/table.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/dynamodb/__pycache__/table.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/dynamodb/__pycache__/transform.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/dynamodb/__pycache__/transform.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/dynamodb/__pycache__/types.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/dynamodb/__pycache__/types.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/ec2/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"). You 4 | # may not use this file except in compliance with the License. A copy of 5 | # the License is located at 6 | # 7 | # http://aws.amazon.com/apache2.0/ 8 | # 9 | # or in the "license" file accompanying this file. This file is 10 | # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 11 | # ANY KIND, either express or implied. See the License for the specific 12 | # language governing permissions and limitations under the License. 13 | -------------------------------------------------------------------------------- /vendor/boto3/ec2/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/ec2/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/ec2/__pycache__/createtags.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/ec2/__pycache__/createtags.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/ec2/__pycache__/deletetags.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/ec2/__pycache__/deletetags.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/resources/__init__.py -------------------------------------------------------------------------------- /vendor/boto3/resources/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/resources/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/resources/__pycache__/action.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/resources/__pycache__/action.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/resources/__pycache__/base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/resources/__pycache__/base.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/resources/__pycache__/collection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/resources/__pycache__/collection.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/resources/__pycache__/factory.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/resources/__pycache__/factory.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/resources/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/resources/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/resources/__pycache__/params.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/resources/__pycache__/params.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/resources/__pycache__/response.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/resources/__pycache__/response.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/s3/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"). You 4 | # may not use this file except in compliance with the License. A copy of 5 | # the License is located at 6 | # 7 | # http://aws.amazon.com/apache2.0/ 8 | # 9 | # or in the "license" file accompanying this file. This file is 10 | # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 11 | # ANY KIND, either express or implied. See the License for the specific 12 | # language governing permissions and limitations under the License. 13 | -------------------------------------------------------------------------------- /vendor/boto3/s3/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/s3/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/s3/__pycache__/inject.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/s3/__pycache__/inject.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/boto3/s3/__pycache__/transfer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/boto3/s3/__pycache__/transfer.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore-1.8.32.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /vendor/botocore-1.8.32.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /vendor/botocore-1.8.32.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | botocore 2 | -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/args.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/args.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/auth.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/auth.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/awsrequest.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/awsrequest.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/client.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/client.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/configloader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/configloader.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/credentials.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/credentials.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/endpoint.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/endpoint.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/errorfactory.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/errorfactory.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/handlers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/handlers.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/hooks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/hooks.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/loaders.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/loaders.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/paginate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/paginate.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/parsers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/parsers.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/regions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/regions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/response.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/response.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/retryhandler.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/retryhandler.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/serialize.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/serialize.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/session.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/session.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/signers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/signers.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/stub.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/stub.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/translate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/translate.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/validate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/validate.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/__pycache__/waiter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/__pycache__/waiter.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/data/acm/2015-12-08/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/acm/2015-12-08/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListCertificates": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxItems", 7 | "result_key": "CertificateSummaryList" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/botocore/data/alexaforbusiness/2017-11-09/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/apigateway/2015-07-09/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/application-autoscaling/2016-02-06/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeScalableTargets": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxResults", 7 | "result_key": "ScalableTargets" 8 | }, 9 | "DescribeScalingActivities": { 10 | "input_token": "NextToken", 11 | "output_token": "NextToken", 12 | "limit_key": "MaxResults", 13 | "result_key": "ScalingActivities" 14 | }, 15 | "DescribeScalingPolicies": { 16 | "input_token": "NextToken", 17 | "output_token": "NextToken", 18 | "limit_key": "MaxResults", 19 | "result_key": "ScalingPolicies" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/botocore/data/appstream/2016-12-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/appstream/2016-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/appsync/2017-07-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/athena/2017-05-18/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListNamedQueries": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxResults", 7 | "result_key": "NamedQueryIds" 8 | }, 9 | "ListQueryExecutions": { 10 | "input_token": "NextToken", 11 | "output_token": "NextToken", 12 | "limit_key": "MaxResults", 13 | "result_key": "QueryExecutionIds" 14 | }, 15 | "GetQueryResults": { 16 | "input_token": "NextToken", 17 | "output_token": "NextToken", 18 | "limit_key": "MaxResults", 19 | "result_key": "ResultSet.Rows", 20 | "non_aggregate_keys": ["ResultSet.ResultSetMetadata"] 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/botocore/data/autoscaling-plans/2018-01-06/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/batch/2016-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/budgets/2016-10-20/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/budgets/2016-10-20/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/ce/2017-10-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloud9/2017-09-23/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/clouddirectory/2016-05-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudformation/2010-05-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeStackEvents": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "result_key": "StackEvents" 7 | }, 8 | "DescribeStacks": { 9 | "input_token": "NextToken", 10 | "output_token": "NextToken", 11 | "result_key": "Stacks" 12 | }, 13 | "ListStackResources": { 14 | "input_token": "NextToken", 15 | "output_token": "NextToken", 16 | "result_key": "StackResourceSummaries" 17 | }, 18 | "ListStacks": { 19 | "input_token": "NextToken", 20 | "output_token": "NextToken", 21 | "result_key": "StackSummaries" 22 | }, 23 | "ListExports": { 24 | "input_token": "NextToken", 25 | "output_token": "NextToken", 26 | "result_key": "Exports" 27 | }, 28 | "ListImports": { 29 | "input_token": "NextToken", 30 | "output_token": "NextToken", 31 | "result_key": "Imports" 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudfront/2016-11-25/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudfront/2017-03-25/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudhsm/2014-05-30/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudhsm/2014-05-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudhsmv2/2017-04-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudsearch/2013-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudsearchdomain/2013-01-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudtrail/2013-11-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudtrail/2013-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "LookupEvents": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxResults", 7 | "result_key": "Events" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudwatch/2010-08-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudwatch/2010-08-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeAlarmHistory": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxRecords", 7 | "result_key": "AlarmHistoryItems" 8 | }, 9 | "DescribeAlarms": { 10 | "input_token": "NextToken", 11 | "output_token": "NextToken", 12 | "limit_key": "MaxRecords", 13 | "result_key": "MetricAlarms" 14 | }, 15 | "ListMetrics": { 16 | "input_token": "NextToken", 17 | "output_token": "NextToken", 18 | "result_key": "Metrics" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/botocore/data/cloudwatch/2010-08-01/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "waiters": { 4 | "AlarmExists": { 5 | "delay": 5, 6 | "maxAttempts": 40, 7 | "operation": "DescribeAlarms", 8 | "acceptors": [ 9 | { 10 | "matcher": "path", 11 | "expected": true, 12 | "argument": "length(MetricAlarms[]) > `0`", 13 | "state": "success" 14 | } 15 | ] 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/botocore/data/codebuild/2016-10-06/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/codebuild/2016-10-06/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListBuilds": { 4 | "output_token": "nextToken", 5 | "input_token": "nextToken", 6 | "result_key": "ids" 7 | }, 8 | "ListProjects": { 9 | "output_token": "nextToken", 10 | "input_token": "nextToken", 11 | "result_key": "projects" 12 | }, 13 | "ListBuildsForProject": { 14 | "output_token": "nextToken", 15 | "input_token": "nextToken", 16 | "result_key": "ids" 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/botocore/data/codecommit/2015-04-13/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/codecommit/2015-04-13/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListBranches": { 4 | "input_token": "nextToken", 5 | "output_token": "nextToken", 6 | "result_key": "branches" 7 | }, 8 | "ListRepositories": { 9 | "input_token": "nextToken", 10 | "output_token": "nextToken", 11 | "result_key": "repositories" 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/botocore/data/codedeploy/2014-10-06/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/codedeploy/2014-10-06/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "waiters": { 4 | "DeploymentSuccessful": { 5 | "delay": 15, 6 | "operation": "GetDeployment", 7 | "maxAttempts": 120, 8 | "acceptors": [ 9 | { 10 | "expected": "Succeeded", 11 | "matcher": "path", 12 | "state": "success", 13 | "argument": "deploymentInfo.status" 14 | }, 15 | { 16 | "expected": "Failed", 17 | "matcher": "path", 18 | "state": "failure", 19 | "argument": "deploymentInfo.status" 20 | }, 21 | { 22 | "expected": "Stopped", 23 | "matcher": "path", 24 | "state": "failure", 25 | "argument": "deploymentInfo.status" 26 | } 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/botocore/data/codepipeline/2015-07-09/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/codepipeline/2015-07-09/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/codestar/2017-04-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/cognito-identity/2014-06-30/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/cognito-identity/2014-06-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/cognito-idp/2016-04-18/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/cognito-idp/2016-04-18/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/comprehend/2017-11-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/config/2014-11-12/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/cur/2017-01-06/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/cur/2017-01-06/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeReportDefinitions": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxResults", 7 | "result_key": "ReportDefinitions" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/botocore/data/datapipeline/2012-10-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListPipelines": { 4 | "input_token": "marker", 5 | "output_token": "marker", 6 | "more_results": "hasMoreResults", 7 | "result_key": "pipelineIdList" 8 | }, 9 | "DescribeObjects": { 10 | "input_token": "marker", 11 | "output_token": "marker", 12 | "more_results": "hasMoreResults", 13 | "result_key": "pipelineObjects" 14 | }, 15 | "QueryObjects": { 16 | "input_token": "marker", 17 | "output_token": "marker", 18 | "more_results": "hasMoreResults", 19 | "limit_key": "limit", 20 | "result_key": "ids" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/botocore/data/dax/2017-04-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/directconnect/2012-10-25/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/directconnect/2012-10-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/discovery/2015-11-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/discovery/2015-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/dms/2016-01-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/dms/2016-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/ds/2015-04-16/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/ds/2015-04-16/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/dynamodb/2012-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListTables": { 4 | "input_token": "ExclusiveStartTableName", 5 | "output_token": "LastEvaluatedTableName", 6 | "limit_key": "Limit", 7 | "result_key": "TableNames" 8 | }, 9 | "Query": { 10 | "input_token": "ExclusiveStartKey", 11 | "output_token": "LastEvaluatedKey", 12 | "limit_key": "Limit", 13 | "result_key": [ 14 | "Items", 15 | "Count", 16 | "ScannedCount" 17 | ], 18 | "non_aggregate_keys": [ 19 | "ConsumedCapacity" 20 | ] 21 | }, 22 | "Scan": { 23 | "input_token": "ExclusiveStartKey", 24 | "output_token": "LastEvaluatedKey", 25 | "limit_key": "Limit", 26 | "result_key": [ 27 | "Items", 28 | "Count", 29 | "ScannedCount" 30 | ], 31 | "non_aggregate_keys": [ 32 | "ConsumedCapacity" 33 | ] 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /vendor/botocore/data/dynamodb/2012-08-10/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "waiters": { 4 | "TableExists": { 5 | "delay": 20, 6 | "operation": "DescribeTable", 7 | "maxAttempts": 25, 8 | "acceptors": [ 9 | { 10 | "expected": "ACTIVE", 11 | "matcher": "path", 12 | "state": "success", 13 | "argument": "Table.TableStatus" 14 | }, 15 | { 16 | "expected": "ResourceNotFoundException", 17 | "matcher": "error", 18 | "state": "retry" 19 | } 20 | ] 21 | }, 22 | "TableNotExists": { 23 | "delay": 20, 24 | "operation": "DescribeTable", 25 | "maxAttempts": 25, 26 | "acceptors": [ 27 | { 28 | "expected": "ResourceNotFoundException", 29 | "matcher": "error", 30 | "state": "success" 31 | } 32 | ] 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/botocore/data/dynamodbstreams/2012-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/ecr/2015-09-21/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListImages": { 4 | "input_token": "nextToken", 5 | "output_token": "nextToken", 6 | "limit_key": "maxResults", 7 | "result_key": "imageIds" 8 | }, 9 | "DescribeImages": { 10 | "input_token": "nextToken", 11 | "output_token": "nextToken", 12 | "limit_key": "maxResults", 13 | "result_key": "imageDetails" 14 | }, 15 | "DescribeRepositories": { 16 | "input_token": "nextToken", 17 | "output_token": "nextToken", 18 | "limit_key": "maxResults", 19 | "result_key": "repositories" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/botocore/data/efs/2015-02-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeFileSystems": { 4 | "input_token": "Marker", 5 | "output_token": "NextMarker", 6 | "limit_key": "MaxItems", 7 | "result_key": "FileSystems" 8 | }, 9 | "DescribeMountTargets": { 10 | "input_token": "Marker", 11 | "output_token": "NextMarker", 12 | "limit_key": "MaxItems", 13 | "result_key": "MountTargets" 14 | }, 15 | "DescribeTags": { 16 | "input_token": "Marker", 17 | "output_token": "NextMarker", 18 | "limit_key": "MaxItems", 19 | "result_key": "Tags" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/botocore/data/elasticbeanstalk/2010-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeEvents": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxRecords", 7 | "result_key": "Events" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/botocore/data/elastictranscoder/2012-09-25/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/elastictranscoder/2012-09-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListJobsByPipeline": { 4 | "input_token": "PageToken", 5 | "output_token": "NextPageToken", 6 | "result_key": "Jobs" 7 | }, 8 | "ListJobsByStatus": { 9 | "input_token": "PageToken", 10 | "output_token": "NextPageToken", 11 | "result_key": "Jobs" 12 | }, 13 | "ListPipelines": { 14 | "input_token": "PageToken", 15 | "output_token": "NextPageToken", 16 | "result_key": "Pipelines" 17 | }, 18 | "ListPresets": { 19 | "input_token": "PageToken", 20 | "output_token": "NextPageToken", 21 | "result_key": "Presets" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/botocore/data/elastictranscoder/2012-09-25/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "waiters": { 4 | "JobComplete": { 5 | "delay": 30, 6 | "operation": "ReadJob", 7 | "maxAttempts": 120, 8 | "acceptors": [ 9 | { 10 | "expected": "Complete", 11 | "matcher": "path", 12 | "state": "success", 13 | "argument": "Job.Status" 14 | }, 15 | { 16 | "expected": "Canceled", 17 | "matcher": "path", 18 | "state": "failure", 19 | "argument": "Job.Status" 20 | }, 21 | { 22 | "expected": "Error", 23 | "matcher": "path", 24 | "state": "failure", 25 | "argument": "Job.Status" 26 | } 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/botocore/data/elb/2012-06-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeLoadBalancers": { 4 | "input_token": "Marker", 5 | "output_token": "NextMarker", 6 | "result_key": "LoadBalancerDescriptions", 7 | "limit_key": "PageSize" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/botocore/data/elb/2012-06-01/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version":2, 3 | "waiters":{ 4 | "AnyInstanceInService":{ 5 | "acceptors":[ 6 | { 7 | "argument":"InstanceStates[].State", 8 | "expected":"InService", 9 | "matcher":"pathAny", 10 | "state":"success" 11 | } 12 | ], 13 | "delay":15, 14 | "maxAttempts":40, 15 | "operation":"DescribeInstanceHealth" 16 | }, 17 | "InstanceInService":{ 18 | "acceptors":[ 19 | { 20 | "argument":"InstanceStates[].State", 21 | "expected":"InService", 22 | "matcher":"pathAll", 23 | "state":"success" 24 | } 25 | ], 26 | "delay":15, 27 | "maxAttempts":40, 28 | "operation":"DescribeInstanceHealth" 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /vendor/botocore/data/elbv2/2015-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeLoadBalancers": { 4 | "input_token": "Marker", 5 | "output_token": "NextMarker", 6 | "limit_key": "PageSize", 7 | "result_key": "LoadBalancers" 8 | }, 9 | "DescribeTargetGroups": { 10 | "input_token": "Marker", 11 | "output_token": "NextMarker", 12 | "limit_key": "PageSize", 13 | "result_key": "TargetGroups" 14 | }, 15 | "DescribeListeners": { 16 | "input_token": "Marker", 17 | "output_token": "NextMarker", 18 | "limit_key": "PageSize", 19 | "result_key": "Listeners" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/botocore/data/emr/2009-03-31/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/emr/2009-03-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListBootstrapActions": { 4 | "input_token": "Marker", 5 | "output_token": "Marker", 6 | "result_key": "BootstrapActions" 7 | }, 8 | "ListClusters": { 9 | "input_token": "Marker", 10 | "output_token": "Marker", 11 | "result_key": "Clusters" 12 | }, 13 | "ListInstanceGroups": { 14 | "input_token": "Marker", 15 | "output_token": "Marker", 16 | "result_key": "InstanceGroups" 17 | }, 18 | "ListInstances": { 19 | "input_token": "Marker", 20 | "output_token": "Marker", 21 | "result_key": "Instances" 22 | }, 23 | "ListSteps": { 24 | "input_token": "Marker", 25 | "output_token": "Marker", 26 | "result_key": "Steps" 27 | }, 28 | "ListInstanceFleets": { 29 | "input_token": "Marker", 30 | "output_token": "Marker", 31 | "result_key": "InstanceFleets" 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /vendor/botocore/data/es/2015-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/events/2015-10-07/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version":"1.0", 3 | "examples":{ 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/events/2015-10-07/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/firehose/2015-08-04/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/firehose/2015-08-04/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/gamelift/2015-10-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/gamelift/2015-10-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/glacier/2012-06-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListJobs": { 4 | "input_token": "marker", 5 | "output_token": "Marker", 6 | "limit_key": "limit", 7 | "result_key": "JobList" 8 | }, 9 | "ListMultipartUploads": { 10 | "input_token": "marker", 11 | "output_token": "Marker", 12 | "limit_key": "limit", 13 | "result_key": "UploadsList" 14 | }, 15 | "ListParts": { 16 | "input_token": "marker", 17 | "output_token": "Marker", 18 | "limit_key": "limit", 19 | "result_key": "Parts" 20 | }, 21 | "ListVaults": { 22 | "input_token": "marker", 23 | "output_token": "Marker", 24 | "limit_key": "limit", 25 | "result_key": "VaultList" 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/botocore/data/glacier/2012-06-01/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "waiters": { 4 | "VaultExists": { 5 | "operation": "DescribeVault", 6 | "delay": 3, 7 | "maxAttempts": 15, 8 | "acceptors": [ 9 | { 10 | "state": "success", 11 | "matcher": "status", 12 | "expected": 200 13 | }, 14 | { 15 | "state": "retry", 16 | "matcher": "error", 17 | "expected": "ResourceNotFoundException" 18 | } 19 | ] 20 | }, 21 | "VaultNotExists": { 22 | "operation": "DescribeVault", 23 | "delay": 3, 24 | "maxAttempts": 15, 25 | "acceptors": [ 26 | { 27 | "state": "retry", 28 | "matcher": "status", 29 | "expected": 200 30 | }, 31 | { 32 | "state": "success", 33 | "matcher": "error", 34 | "expected": "ResourceNotFoundException" 35 | } 36 | ] 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/botocore/data/glue/2017-03-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/health/2016-08-04/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/health/2016-08-04/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeAffectedEntities": { 4 | "input_token": "nextToken", 5 | "output_token": "nextToken", 6 | "limit_key": "maxResults", 7 | "result_key": "entities" 8 | }, 9 | "DescribeEventAggregates": { 10 | "input_token": "nextToken", 11 | "output_token": "nextToken", 12 | "limit_key": "maxResults", 13 | "result_key": "eventAggregates" 14 | }, 15 | "DescribeEvents": { 16 | "input_token": "nextToken", 17 | "output_token": "nextToken", 18 | "limit_key": "maxResults", 19 | "result_key": "events" 20 | }, 21 | "DescribeEventTypes": { 22 | "input_token": "nextToken", 23 | "output_token": "nextToken", 24 | "limit_key": "maxResults", 25 | "result_key": "eventTypes" 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/botocore/data/iam/2010-05-08/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "waiters": { 4 | "InstanceProfileExists": { 5 | "delay": 1, 6 | "operation": "GetInstanceProfile", 7 | "maxAttempts": 40, 8 | "acceptors": [ 9 | { 10 | "expected": 200, 11 | "matcher": "status", 12 | "state": "success" 13 | }, 14 | { 15 | "state": "retry", 16 | "matcher": "status", 17 | "expected": 404 18 | } 19 | ] 20 | }, 21 | "UserExists": { 22 | "delay": 1, 23 | "operation": "GetUser", 24 | "maxAttempts": 20, 25 | "acceptors": [ 26 | { 27 | "state": "success", 28 | "matcher": "status", 29 | "expected": 200 30 | }, 31 | { 32 | "state": "retry", 33 | "matcher": "error", 34 | "expected": "NoSuchEntity" 35 | } 36 | ] 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/botocore/data/importexport/2010-06-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListJobs": { 4 | "input_token": "Marker", 5 | "output_token": "Jobs[-1].JobId", 6 | "more_results": "IsTruncated", 7 | "limit_key": "MaxJobs", 8 | "result_key": "Jobs" 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/botocore/data/inspector/2016-02-16/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/iot-jobs-data/2017-09-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/iot/2015-05-28/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version":"1.0", 3 | "examples":{ 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/kinesis-video-archived-media/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/kinesis-video-media/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/kinesis/2013-12-02/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/kinesis/2013-12-02/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "waiters": { 4 | "StreamExists": { 5 | "delay": 10, 6 | "operation": "DescribeStream", 7 | "maxAttempts": 18, 8 | "acceptors": [ 9 | { 10 | "expected": "ACTIVE", 11 | "matcher": "path", 12 | "state": "success", 13 | "argument": "StreamDescription.StreamStatus" 14 | } 15 | ] 16 | }, 17 | "StreamNotExists": { 18 | "delay": 10, 19 | "operation": "DescribeStream", 20 | "maxAttempts": 18, 21 | "acceptors": [ 22 | { 23 | "expected": "ResourceNotFoundException", 24 | "matcher": "error", 25 | "state": "success" 26 | } 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/botocore/data/kinesisanalytics/2015-08-14/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/kinesisanalytics/2015-08-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/kinesisvideo/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/kms/2014-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListAliases": { 4 | "limit_key": "Limit", 5 | "input_token": "Marker", 6 | "output_token": "NextMarker", 7 | "more_results": "Truncated", 8 | "result_key": "Aliases" 9 | }, 10 | "ListGrants": { 11 | "limit_key": "Limit", 12 | "input_token": "Marker", 13 | "output_token": "NextMarker", 14 | "more_results": "Truncated", 15 | "result_key": "Grants" 16 | }, 17 | "ListKeyPolicies": { 18 | "limit_key": "Limit", 19 | "input_token": "Marker", 20 | "output_token": "NextMarker", 21 | "more_results": "Truncated", 22 | "result_key": "PolicyNames" 23 | }, 24 | "ListKeys": { 25 | "limit_key": "Limit", 26 | "input_token": "Marker", 27 | "output_token": "NextMarker", 28 | "more_results": "Truncated", 29 | "result_key": "Keys" 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/botocore/data/lambda/2015-03-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListEventSourceMappings": { 4 | "input_token": "Marker", 5 | "output_token": "NextMarker", 6 | "limit_key": "MaxItems", 7 | "result_key": "EventSourceMappings" 8 | }, 9 | "ListFunctions": { 10 | "input_token": "Marker", 11 | "output_token": "NextMarker", 12 | "limit_key": "MaxItems", 13 | "result_key": "Functions" 14 | }, 15 | "ListAliases": { 16 | "input_token": "Marker", 17 | "output_token": "NextMarker", 18 | "limit_key": "MaxItems", 19 | "result_key": "Aliases" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/botocore/data/lex-models/2017-04-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/lex-runtime/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/lightsail/2016-11-28/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/logs/2014-03-28/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/machinelearning/2014-12-12/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version":"1.0", 3 | "examples":{ 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/machinelearning/2014-12-12/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeBatchPredictions": { 4 | "limit_key": "Limit", 5 | "output_token": "NextToken", 6 | "input_token": "NextToken", 7 | "result_key": "Results" 8 | }, 9 | "DescribeDataSources": { 10 | "limit_key": "Limit", 11 | "output_token": "NextToken", 12 | "input_token": "NextToken", 13 | "result_key": "Results" 14 | }, 15 | "DescribeEvaluations": { 16 | "limit_key": "Limit", 17 | "output_token": "NextToken", 18 | "input_token": "NextToken", 19 | "result_key": "Results" 20 | }, 21 | "DescribeMLModels": { 22 | "limit_key": "Limit", 23 | "output_token": "NextToken", 24 | "input_token": "NextToken", 25 | "result_key": "Results" 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/botocore/data/marketplace-entitlement/2017-01-11/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/marketplacecommerceanalytics/2015-07-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/medialive/2017-10-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListInputs": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxResults", 7 | "result_key": "Inputs" 8 | }, 9 | "ListChannels": { 10 | "input_token": "NextToken", 11 | "output_token": "NextToken", 12 | "limit_key": "MaxResults", 13 | "result_key": "Channels" 14 | }, 15 | "ListInputSecurityGroups": { 16 | "input_token": "NextToken", 17 | "output_token": "NextToken", 18 | "limit_key": "MaxResults", 19 | "result_key": "InputSecurityGroups" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/botocore/data/mediapackage/2017-10-12/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListChannels": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxResults", 7 | "result_key": "Channels" 8 | }, 9 | "ListOriginEndpoints": { 10 | "input_token": "NextToken", 11 | "output_token": "NextToken", 12 | "limit_key": "MaxResults", 13 | "result_key": "OriginEndpoints" 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/botocore/data/mediastore-data/2017-09-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/mediastore/2017-09-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/meteringmarketplace/2016-01-14/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/mgh/2017-05-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/mobile/2017-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/mturk/2017-01-17/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/opsworks/2013-02-18/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/opsworks/2013-02-18/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeEcsClusters": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxResults", 7 | "result_key": "EcsClusters" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/botocore/data/opsworkscm/2016-11-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/opsworkscm/2016-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/opsworkscm/2016-11-01/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "waiters": { 4 | "NodeAssociated": { 5 | "delay": 15, 6 | "maxAttempts": 15, 7 | "operation": "DescribeNodeAssociationStatus", 8 | "description": "Wait until node is associated or disassociated.", 9 | "acceptors": [ 10 | { 11 | "expected": "SUCCESS", 12 | "state": "success", 13 | "matcher": "path", 14 | "argument": "NodeAssociationStatus" 15 | }, 16 | { 17 | "expected": "FAILED", 18 | "state": "failure", 19 | "matcher": "path", 20 | "argument": "NodeAssociationStatus" 21 | } 22 | ] 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/botocore/data/pinpoint/2016-12-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/polly/2016-06-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeVoices": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "result_key": "Voices" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/botocore/data/pricing/2017-10-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeServices": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxResults", 7 | "result_key": "Services", 8 | "non_aggregate_keys": ["FormatVersion"] 9 | }, 10 | "GetAttributeValues": { 11 | "input_token": "NextToken", 12 | "output_token": "NextToken", 13 | "limit_key": "MaxResults", 14 | "result_key": "AttributeValues" 15 | }, 16 | "GetProducts": { 17 | "input_token": "NextToken", 18 | "output_token": "NextToken", 19 | "limit_key": "MaxResults", 20 | "result_key": "PriceList", 21 | "non_aggregate_keys": ["FormatVersion"] 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/botocore/data/redshift/2012-12-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/rekognition/2016-06-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListCollections": { 4 | "input_token": "NextToken", 5 | "limit_key": "MaxResults", 6 | "output_token": "NextToken", 7 | "result_key": [ 8 | "CollectionIds", 9 | "FaceModelVersions" 10 | ] 11 | }, 12 | "ListFaces": { 13 | "input_token": "NextToken", 14 | "limit_key": "MaxResults", 15 | "output_token": "NextToken", 16 | "result_key": "Faces", 17 | "non_aggregate_keys": [ 18 | "FaceModelVersion" 19 | ] 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/botocore/data/resource-groups/2017-11-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/resourcegroupstaggingapi/2017-01-26/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "GetResources": { 4 | "input_token": "PaginationToken", 5 | "limit_key": "ResourcesPerPage", 6 | "output_token": "PaginationToken", 7 | "result_key": "ResourceTagMappingList" 8 | }, 9 | "GetTagKeys": { 10 | "input_token": "PaginationToken", 11 | "output_token": "PaginationToken", 12 | "result_key": "TagKeys" 13 | }, 14 | "GetTagValues": { 15 | "input_token": "PaginationToken", 16 | "output_token": "PaginationToken", 17 | "result_key": "TagValues" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/botocore/data/route53/2013-04-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/route53/2013-04-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListHealthChecks": { 4 | "input_token": "Marker", 5 | "output_token": "NextMarker", 6 | "more_results": "IsTruncated", 7 | "limit_key": "MaxItems", 8 | "result_key": "HealthChecks" 9 | }, 10 | "ListHostedZones": { 11 | "input_token": "Marker", 12 | "output_token": "NextMarker", 13 | "more_results": "IsTruncated", 14 | "limit_key": "MaxItems", 15 | "result_key": "HostedZones" 16 | }, 17 | "ListResourceRecordSets": { 18 | "more_results": "IsTruncated", 19 | "limit_key": "MaxItems", 20 | "result_key": "ResourceRecordSets", 21 | "input_token": [ 22 | "StartRecordName", 23 | "StartRecordType", 24 | "StartRecordIdentifier" 25 | ], 26 | "output_token": [ 27 | "NextRecordName", 28 | "NextRecordType", 29 | "NextRecordIdentifier" 30 | ] 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /vendor/botocore/data/route53/2013-04-01/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "waiters": { 4 | "ResourceRecordSetsChanged": { 5 | "delay": 30, 6 | "maxAttempts": 60, 7 | "operation": "GetChange", 8 | "acceptors": [ 9 | { 10 | "matcher": "path", 11 | "expected": "INSYNC", 12 | "argument": "ChangeInfo.Status", 13 | "state": "success" 14 | } 15 | ] 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/botocore/data/route53domains/2014-05-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "pagination": { 4 | "ListDomains": { 5 | "limit_key": "MaxItems", 6 | "input_token": "Marker", 7 | "output_token": "NextPageMarker", 8 | "result_key": "Domains" 9 | }, 10 | "ListOperations": { 11 | "limit_key": "MaxItems", 12 | "input_token": "Marker", 13 | "output_token": "NextPageMarker", 14 | "result_key": "Operations" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/botocore/data/s3/2006-03-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/sagemaker-runtime/2017-05-13/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/sagemaker/2017-07-24/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/sdb/2009-04-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListDomains": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxNumberOfDomains", 7 | "result_key": "DomainNames" 8 | }, 9 | "Select": { 10 | "input_token": "NextToken", 11 | "output_token": "NextToken", 12 | "result_key": "Items" 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/botocore/data/servicecatalog/2015-12-10/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/servicecatalog/2015-12-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/servicediscovery/2017-03-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/ses/2010-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListIdentities": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "limit_key": "MaxItems", 7 | "result_key": "Identities" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/botocore/data/ses/2010-12-01/waiters-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "waiters": { 4 | "IdentityExists": { 5 | "delay": 3, 6 | "operation": "GetIdentityVerificationAttributes", 7 | "maxAttempts": 20, 8 | "acceptors": [ 9 | { 10 | "expected": "Success", 11 | "matcher": "pathAll", 12 | "state": "success", 13 | "argument": "VerificationAttributes.*.VerificationStatus" 14 | } 15 | ] 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/botocore/data/shield/2016-06-02/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/shield/2016-06-02/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/sms/2016-10-24/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/sms/2016-10-24/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "GetReplicationJobs": { 4 | "input_token": "nextToken", 5 | "output_token": "nextToken", 6 | "limit_key": "maxResults", 7 | "result_key": "replicationJobList" 8 | }, 9 | "GetReplicationRuns": { 10 | "input_token": "nextToken", 11 | "output_token": "nextToken", 12 | "limit_key": "maxResults", 13 | "result_key": "replicationRunList" 14 | }, 15 | "GetConnectors": { 16 | "input_token": "nextToken", 17 | "output_token": "nextToken", 18 | "limit_key": "maxResults", 19 | "result_key": "connectorList" 20 | }, 21 | "GetServers": { 22 | "input_token": "nextToken", 23 | "output_token": "nextToken", 24 | "limit_key": "maxResults", 25 | "result_key": "serverList" 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/botocore/data/snowball/2016-06-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListJobs": { 4 | "limit_key": "MaxResults", 5 | "output_token": "NextToken", 6 | "input_token": "NextToken", 7 | "result_key": "JobListEntries" 8 | }, 9 | "DescribeAddresses": { 10 | "limit_key": "MaxResults", 11 | "output_token": "NextToken", 12 | "input_token": "NextToken", 13 | "result_key": "Addresses" 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/botocore/data/sns/2010-03-31/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/sns/2010-03-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "ListEndpointsByPlatformApplication": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "result_key": "Endpoints" 7 | }, 8 | "ListPlatformApplications": { 9 | "input_token": "NextToken", 10 | "output_token": "NextToken", 11 | "result_key": "PlatformApplications" 12 | }, 13 | "ListSubscriptions": { 14 | "input_token": "NextToken", 15 | "output_token": "NextToken", 16 | "result_key": "Subscriptions" 17 | }, 18 | "ListSubscriptionsByTopic": { 19 | "input_token": "NextToken", 20 | "output_token": "NextToken", 21 | "result_key": "Subscriptions" 22 | }, 23 | "ListTopics": { 24 | "input_token": "NextToken", 25 | "output_token": "NextToken", 26 | "result_key": "Topics" 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/botocore/data/sqs/2012-11-05/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/ssm/2014-11-06/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/stepfunctions/2016-11-23/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/stepfunctions/2016-11-23/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "GetExecutionHistory": { 4 | "input_token": "nextToken", 5 | "output_token": "nextToken", 6 | "limit_key": "maxResults", 7 | "result_key": "events" 8 | }, 9 | "ListActivities": { 10 | "input_token": "nextToken", 11 | "output_token": "nextToken", 12 | "limit_key": "maxResults", 13 | "result_key": "activities" 14 | }, 15 | "ListExecutions": { 16 | "input_token": "nextToken", 17 | "output_token": "nextToken", 18 | "limit_key": "maxResults", 19 | "result_key": "executions" 20 | }, 21 | "ListStateMachines": { 22 | "input_token": "nextToken", 23 | "output_token": "nextToken", 24 | "limit_key": "maxResults", 25 | "result_key": "stateMachines" 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/botocore/data/sts/2011-06-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/support/2013-04-15/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/support/2013-04-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeCases": { 4 | "input_token": "nextToken", 5 | "output_token": "nextToken", 6 | "limit_key": "maxResults", 7 | "result_key": "cases" 8 | }, 9 | "DescribeCommunications": { 10 | "input_token": "nextToken", 11 | "output_token": "nextToken", 12 | "limit_key": "maxResults", 13 | "result_key": "communications" 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/botocore/data/translate/2017-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/waf-regional/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/workdocs/2016-05-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeDocumentVersions": { 4 | "input_token": "Marker", 5 | "limit_key": "Limit", 6 | "output_token": "Marker", 7 | "result_key": "DocumentVersions" 8 | }, 9 | "DescribeFolderContents": { 10 | "input_token": "Marker", 11 | "limit_key": "Limit", 12 | "output_token": "Marker", 13 | "result_key": [ 14 | "Folders", 15 | "Documents" 16 | ] 17 | }, 18 | "DescribeUsers": { 19 | "input_token": "Marker", 20 | "limit_key": "Limit", 21 | "output_token": "Marker", 22 | "result_key": "Users" 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/botocore/data/workmail/2017-10-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /vendor/botocore/data/workspaces/2015-04-08/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/workspaces/2015-04-08/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "DescribeWorkspaceBundles": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "result_key": "Bundles" 7 | }, 8 | "DescribeWorkspaceDirectories": { 9 | "input_token": "NextToken", 10 | "output_token": "NextToken", 11 | "result_key": "Directories" 12 | }, 13 | "DescribeWorkspaces": { 14 | "limit_key": "Limit", 15 | "input_token": "NextToken", 16 | "output_token": "NextToken", 17 | "result_key": "Workspaces" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/botocore/data/xray/2016-04-12/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/botocore/data/xray/2016-04-12/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | "BatchGetTraces": { 4 | "input_token": "NextToken", 5 | "output_token": "NextToken", 6 | "result_key": "Traces" 7 | }, 8 | "GetServiceGraph": { 9 | "input_token": "NextToken", 10 | "output_token": "NextToken", 11 | "result_key": "Services" 12 | }, 13 | "GetTraceGraph": { 14 | "input_token": "NextToken", 15 | "output_token": "NextToken", 16 | "result_key": "Services" 17 | }, 18 | "GetTraceSummaries": { 19 | "input_token": "NextToken", 20 | "output_token": "NextToken", 21 | "result_key": "TraceSummaries" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/client.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/client.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/docstring.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/docstring.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/example.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/example.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/method.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/method.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/paginator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/paginator.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/params.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/params.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/service.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/service.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/shape.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/shape.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/sharedexample.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/sharedexample.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/__pycache__/waiter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/__pycache__/waiter.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/bcdoc/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2013 Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"). You 4 | # may not use this file except in compliance with the License. A copy of 5 | # the License is located at 6 | # 7 | # http://aws.amazon.com/apache2.0/ 8 | # 9 | # or in the "license" file accompanying this file. This file is 10 | # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 11 | # ANY KIND, either express or implied. See the License for the specific 12 | # language governing permissions and limitations under the License. 13 | __version__ = '0.16.0' 14 | -------------------------------------------------------------------------------- /vendor/botocore/docs/bcdoc/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/bcdoc/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/bcdoc/__pycache__/docevents.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/bcdoc/__pycache__/docevents.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/bcdoc/__pycache__/docstringparser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/bcdoc/__pycache__/docstringparser.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/bcdoc/__pycache__/restdoc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/bcdoc/__pycache__/restdoc.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/bcdoc/__pycache__/style.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/bcdoc/__pycache__/style.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/docs/bcdoc/__pycache__/textwriter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/docs/bcdoc/__pycache__/textwriter.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/__init__.py -------------------------------------------------------------------------------- /vendor/botocore/vendored/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/__pycache__/six.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/__pycache__/six.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/adapters.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/adapters.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/api.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/api.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/auth.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/auth.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/certs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/certs.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/cookies.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/cookies.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/hooks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/hooks.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/sessions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/sessions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/status_codes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/status_codes.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/structures.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/structures.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certs.py 6 | ~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. 9 | 10 | If you are packaging Requests, e.g., for a Linux distribution or a managed 11 | environment, you can change the definition of where() to return a separately 12 | packaged CA bundle. 13 | """ 14 | import os.path 15 | 16 | try: 17 | from certifi import where 18 | except ImportError: 19 | def where(): 20 | """Return the preferred certificate bundle.""" 21 | # vendored bundle inside Requests 22 | return os.path.join(os.path.dirname(__file__), 'cacert.pem') 23 | 24 | if __name__ == '__main__': 25 | print(where()) 26 | -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/hooks.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | requests.hooks 5 | ~~~~~~~~~~~~~~ 6 | 7 | This module provides the capabilities for the Requests hooks system. 8 | 9 | Available hooks: 10 | 11 | ``response``: 12 | The response generated from a Request. 13 | 14 | """ 15 | 16 | 17 | HOOKS = ['response'] 18 | 19 | 20 | def default_hooks(): 21 | hooks = {} 22 | for event in HOOKS: 23 | hooks[event] = [] 24 | return hooks 25 | 26 | # TODO: response is the only one 27 | 28 | 29 | def dispatch_hook(key, hooks, hook_data, **kwargs): 30 | """Dispatches a hook dictionary on a given piece of data.""" 31 | 32 | hooks = hooks or dict() 33 | 34 | if key in hooks: 35 | hooks = hooks.get(key) 36 | 37 | if hasattr(hooks, '__call__'): 38 | hooks = [hooks] 39 | 40 | for hook in hooks: 41 | _hook_data = hook(hook_data, **kwargs) 42 | if _hook_data is not None: 43 | hook_data = _hook_data 44 | 45 | return hook_data 46 | -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import urllib3 4 | -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/big5freq.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/big5freq.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/big5prober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/big5prober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/chardetect.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/chardetect.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/chardistribution.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/chardistribution.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/charsetgroupprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/charsetgroupprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/charsetprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/charsetprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/codingstatemachine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/codingstatemachine.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/constants.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/constants.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/cp949prober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/cp949prober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/escprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/escprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/escsm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/escsm.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/eucjpprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/eucjpprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/euckrfreq.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/euckrfreq.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/euckrprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/euckrprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/euctwfreq.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/euctwfreq.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/euctwprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/euctwprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/gb2312freq.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/gb2312freq.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/gb2312prober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/gb2312prober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/hebrewprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/hebrewprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/jisfreq.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/jisfreq.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/jpcntx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/jpcntx.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/langbulgarianmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/langbulgarianmodel.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/langcyrillicmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/langcyrillicmodel.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/langgreekmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/langgreekmodel.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/langhebrewmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/langhebrewmodel.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/langhungarianmodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/langhungarianmodel.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/langthaimodel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/langthaimodel.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/latin1prober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/latin1prober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/mbcharsetprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/mbcharsetprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/mbcsgroupprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/mbcsgroupprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/mbcssm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/mbcssm.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/sbcharsetprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/sbcharsetprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/sbcsgroupprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/sbcsgroupprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/sjisprober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/sjisprober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/universaldetector.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/universaldetector.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/chardet/__pycache__/utf8prober.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/chardet/__pycache__/utf8prober.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/__pycache__/_collections.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/__pycache__/_collections.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/__pycache__/connection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/__pycache__/connection.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/__pycache__/connectionpool.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/__pycache__/connectionpool.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/__pycache__/fields.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/__pycache__/fields.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/__pycache__/filepost.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/__pycache__/filepost.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/__pycache__/poolmanager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/__pycache__/poolmanager.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/__pycache__/request.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/__pycache__/request.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/__pycache__/response.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/__pycache__/response.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/contrib/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/contrib/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/contrib/__pycache__/ntlmpool.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/contrib/__pycache__/ntlmpool.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/contrib/__pycache__/pyopenssl.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/contrib/__pycache__/pyopenssl.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/packages/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/packages/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/packages/__pycache__/ordered_dict.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/packages/__pycache__/ordered_dict.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/packages/__pycache__/six.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/packages/__pycache__/six.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | # Python 3.2+ 3 | from ssl import CertificateError, match_hostname 4 | except ImportError: 5 | try: 6 | # Backport of the function from a pypi module 7 | from backports.ssl_match_hostname import CertificateError, match_hostname 8 | except ImportError: 9 | # Our vendored copy 10 | from ._implementation import CertificateError, match_hostname 11 | 12 | # Not needed, but documenting what we provide. 13 | __all__ = ('CertificateError', 'match_hostname') 14 | -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- 1 | # For backwards compatibility, provide imports that used to be here. 2 | from .connection import is_connection_dropped 3 | from .request import make_headers 4 | from .response import is_fp_closed 5 | from .ssl_ import ( 6 | SSLContext, 7 | HAS_SNI, 8 | assert_fingerprint, 9 | resolve_cert_reqs, 10 | resolve_ssl_version, 11 | ssl_wrap_socket, 12 | ) 13 | from .timeout import ( 14 | current_time, 15 | Timeout, 16 | ) 17 | 18 | from .retry import Retry 19 | from .url import ( 20 | get_host, 21 | parse_url, 22 | split_first, 23 | Url, 24 | ) 25 | -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/connection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/connection.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/request.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/request.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/response.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/response.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/retry.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/retry.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/ssl_.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/ssl_.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/timeout.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/timeout.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/url.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/botocore/vendored/requests/packages/urllib3/util/__pycache__/url.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/botocore/vendored/requests/packages/urllib3/util/response.py: -------------------------------------------------------------------------------- 1 | def is_fp_closed(obj): 2 | """ 3 | Checks whether a given file-like object is closed. 4 | 5 | :param obj: 6 | The file-like object to check. 7 | """ 8 | 9 | try: 10 | # Check via the official file-like-object way. 11 | return obj.closed 12 | except AttributeError: 13 | pass 14 | 15 | try: 16 | # Check if the object is a container for another file-like object that 17 | # gets released on exhaustion (e.g. HTTPResponse). 18 | return obj.fp is None 19 | except AttributeError: 20 | pass 21 | 22 | raise ValueError("Unable to determine whether fp is closed.") 23 | -------------------------------------------------------------------------------- /vendor/dateutil/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from ._version import VERSION as __version__ 3 | -------------------------------------------------------------------------------- /vendor/dateutil/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/__pycache__/_common.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/__pycache__/_common.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/__pycache__/_version.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/__pycache__/_version.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/__pycache__/easter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/__pycache__/easter.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/__pycache__/parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/__pycache__/parser.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/__pycache__/relativedelta.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/__pycache__/relativedelta.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/__pycache__/rrule.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/__pycache__/rrule.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/__pycache__/tzwin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/__pycache__/tzwin.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/_common.py: -------------------------------------------------------------------------------- 1 | """ 2 | Common code used in multiple modules. 3 | """ 4 | 5 | 6 | class weekday(object): 7 | __slots__ = ["weekday", "n"] 8 | 9 | def __init__(self, weekday, n=None): 10 | self.weekday = weekday 11 | self.n = n 12 | 13 | def __call__(self, n): 14 | if n == self.n: 15 | return self 16 | else: 17 | return self.__class__(self.weekday, n) 18 | 19 | def __eq__(self, other): 20 | try: 21 | if self.weekday != other.weekday or self.n != other.n: 22 | return False 23 | except AttributeError: 24 | return False 25 | return True 26 | 27 | __hash__ = None 28 | 29 | def __repr__(self): 30 | s = ("MO", "TU", "WE", "TH", "FR", "SA", "SU")[self.weekday] 31 | if not self.n: 32 | return s 33 | else: 34 | return "%s(%+d)" % (s, self.n) 35 | -------------------------------------------------------------------------------- /vendor/dateutil/_version.py: -------------------------------------------------------------------------------- 1 | """ 2 | Contains information about the dateutil version. 3 | """ 4 | 5 | VERSION_MAJOR = 2 6 | VERSION_MINOR = 6 7 | VERSION_PATCH = 1 8 | 9 | VERSION_TUPLE = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) 10 | VERSION = '.'.join(map(str, VERSION_TUPLE)) 11 | -------------------------------------------------------------------------------- /vendor/dateutil/tz/__init__.py: -------------------------------------------------------------------------------- 1 | from .tz import * 2 | 3 | __all__ = ["tzutc", "tzoffset", "tzlocal", "tzfile", "tzrange", 4 | "tzstr", "tzical", "tzwin", "tzwinlocal", "gettz", 5 | "enfold", "datetime_ambiguous", "datetime_exists"] 6 | -------------------------------------------------------------------------------- /vendor/dateutil/tz/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/tz/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/tz/__pycache__/_common.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/tz/__pycache__/_common.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/tz/__pycache__/tz.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/tz/__pycache__/tz.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/tz/__pycache__/win.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/tz/__pycache__/win.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/tzwin.py: -------------------------------------------------------------------------------- 1 | # tzwin has moved to dateutil.tz.win 2 | from .tz.win import * 3 | -------------------------------------------------------------------------------- /vendor/dateutil/zoneinfo/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/zoneinfo/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/zoneinfo/__pycache__/rebuild.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/zoneinfo/__pycache__/rebuild.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz -------------------------------------------------------------------------------- /vendor/docutils-0.14.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | Docutils is a modular system for processing documentation 2 | into useful formats, such as HTML, XML, and LaTeX. For 3 | input Docutils supports reStructuredText, an easy-to-read, 4 | what-you-see-is-what-you-get plaintext markup syntax. 5 | 6 | -------------------------------------------------------------------------------- /vendor/docutils-0.14.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /vendor/docutils-0.14.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /vendor/docutils-0.14.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docutils 2 | -------------------------------------------------------------------------------- /vendor/docutils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/__pycache__/_compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/__pycache__/_compat.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/__pycache__/core.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/__pycache__/core.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/__pycache__/examples.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/__pycache__/examples.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/__pycache__/frontend.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/__pycache__/frontend.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/__pycache__/io.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/__pycache__/io.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/__pycache__/nodes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/__pycache__/nodes.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/__pycache__/statemachine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/__pycache__/statemachine.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/af.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/af.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/ca.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/ca.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/cs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/cs.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/da.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/da.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/de.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/de.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/en.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/en.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/eo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/eo.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/es.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/es.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/fa.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/fa.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/fi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/fi.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/fr.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/fr.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/gl.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/gl.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/he.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/he.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/it.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/it.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/ja.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/ja.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/lt.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/lt.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/lv.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/lv.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/nl.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/nl.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/pl.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/pl.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/pt_br.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/pt_br.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/ru.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/ru.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/sk.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/sk.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/sv.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/sv.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/zh_cn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/zh_cn.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/languages/__pycache__/zh_tw.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/languages/__pycache__/zh_tw.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/__pycache__/null.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/__pycache__/null.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/null.py: -------------------------------------------------------------------------------- 1 | # $Id: null.py 4564 2006-05-21 20:44:42Z wiemann $ 2 | # Author: Martin Blais 3 | # Copyright: This module has been placed in the public domain. 4 | 5 | """A do-nothing parser.""" 6 | 7 | from docutils import parsers 8 | 9 | 10 | class Parser(parsers.Parser): 11 | 12 | """A do-nothing parser.""" 13 | 14 | supported = ('null',) 15 | 16 | config_section = 'null parser' 17 | config_section_dependencies = ('parsers',) 18 | 19 | def parse(self, inputstring, document): 20 | pass 21 | -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/__pycache__/roles.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/__pycache__/roles.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/__pycache__/states.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/__pycache__/states.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/__pycache__/tableparser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/__pycache__/tableparser.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/directives/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/directives/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/directives/__pycache__/admonitions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/directives/__pycache__/admonitions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/directives/__pycache__/body.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/directives/__pycache__/body.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/directives/__pycache__/html.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/directives/__pycache__/html.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/directives/__pycache__/images.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/directives/__pycache__/images.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/directives/__pycache__/misc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/directives/__pycache__/misc.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/directives/__pycache__/parts.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/directives/__pycache__/parts.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/directives/__pycache__/references.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/directives/__pycache__/references.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/directives/__pycache__/tables.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/directives/__pycache__/tables.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/directives/references.py: -------------------------------------------------------------------------------- 1 | # $Id: references.py 7062 2011-06-30 22:14:29Z milde $ 2 | # Authors: David Goodger ; Dmitry Jemerov 3 | # Copyright: This module has been placed in the public domain. 4 | 5 | """ 6 | Directives for references and targets. 7 | """ 8 | 9 | __docformat__ = 'reStructuredText' 10 | 11 | from docutils import nodes 12 | from docutils.transforms import references 13 | from docutils.parsers.rst import Directive 14 | from docutils.parsers.rst import directives 15 | 16 | 17 | class TargetNotes(Directive): 18 | 19 | """Target footnote generation.""" 20 | 21 | option_spec = {'class': directives.class_option, 22 | 'name': directives.unchanged} 23 | 24 | def run(self): 25 | pending = nodes.pending(references.TargetNotes) 26 | self.add_name(pending) 27 | pending.details.update(self.options) 28 | self.state_machine.document.note_pending(pending) 29 | return [pending] 30 | -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/include/README.txt: -------------------------------------------------------------------------------- 1 | ============================================ 2 | ``docutils/parsers/rst/include`` Directory 3 | ============================================ 4 | 5 | This directory contains standard data files intended for inclusion in 6 | reStructuredText documents. To access these files, use the "include" 7 | directive with the special syntax for standard "include" data files, 8 | angle brackets around the file name:: 9 | 10 | .. include:: 11 | 12 | See the documentation for the `"include" directive`__ and 13 | `reStructuredText Standard Substitution Definition Sets`__ for 14 | details. 15 | 16 | __ http://docutils.sf.net/docs/ref/rst/directives.html#include 17 | __ http://docutils.sf.net/docs/ref/rst/substitutions.html 18 | -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/include/isodia.txt: -------------------------------------------------------------------------------- 1 | .. This data file has been placed in the public domain. 2 | .. Derived from the Unicode character mappings available from 3 | . 4 | Processed by unicode2rstsubs.py, part of Docutils: 5 | . 6 | 7 | .. |acute| unicode:: U+000B4 .. ACUTE ACCENT 8 | .. |breve| unicode:: U+002D8 .. BREVE 9 | .. |caron| unicode:: U+002C7 .. CARON 10 | .. |cedil| unicode:: U+000B8 .. CEDILLA 11 | .. |circ| unicode:: U+002C6 .. MODIFIER LETTER CIRCUMFLEX ACCENT 12 | .. |dblac| unicode:: U+002DD .. DOUBLE ACUTE ACCENT 13 | .. |die| unicode:: U+000A8 .. DIAERESIS 14 | .. |dot| unicode:: U+002D9 .. DOT ABOVE 15 | .. |grave| unicode:: U+00060 .. GRAVE ACCENT 16 | .. |macr| unicode:: U+000AF .. MACRON 17 | .. |ogon| unicode:: U+002DB .. OGONEK 18 | .. |ring| unicode:: U+002DA .. RING ABOVE 19 | .. |tilde| unicode:: U+002DC .. SMALL TILDE 20 | .. |uml| unicode:: U+000A8 .. DIAERESIS 21 | -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/include/isogrk4.txt: -------------------------------------------------------------------------------- 1 | .. This data file has been placed in the public domain. 2 | .. Derived from the Unicode character mappings available from 3 | . 4 | Processed by unicode2rstsubs.py, part of Docutils: 5 | . 6 | 7 | .. |b.Gammad| unicode:: U+003DC .. GREEK LETTER DIGAMMA 8 | .. |b.gammad| unicode:: U+003DD .. GREEK SMALL LETTER DIGAMMA 9 | -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/include/isomfrk.txt: -------------------------------------------------------------------------------- 1 | .. This data file has been placed in the public domain. 2 | .. Derived from the Unicode character mappings available from 3 | . 4 | Processed by unicode2rstsubs.py, part of Docutils: 5 | . 6 | 7 | .. |Cfr| unicode:: U+0212D .. BLACK-LETTER CAPITAL C 8 | .. |Hfr| unicode:: U+0210C .. BLACK-LETTER CAPITAL H 9 | .. |Ifr| unicode:: U+02111 .. BLACK-LETTER CAPITAL I 10 | .. |Rfr| unicode:: U+0211C .. BLACK-LETTER CAPITAL R 11 | .. |Zfr| unicode:: U+02128 .. BLACK-LETTER CAPITAL Z 12 | -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/include/isomopf.txt: -------------------------------------------------------------------------------- 1 | .. This data file has been placed in the public domain. 2 | .. Derived from the Unicode character mappings available from 3 | . 4 | Processed by unicode2rstsubs.py, part of Docutils: 5 | . 6 | 7 | .. |Copf| unicode:: U+02102 .. DOUBLE-STRUCK CAPITAL C 8 | .. |Hopf| unicode:: U+0210D .. DOUBLE-STRUCK CAPITAL H 9 | .. |Nopf| unicode:: U+02115 .. DOUBLE-STRUCK CAPITAL N 10 | .. |Popf| unicode:: U+02119 .. DOUBLE-STRUCK CAPITAL P 11 | .. |Qopf| unicode:: U+0211A .. DOUBLE-STRUCK CAPITAL Q 12 | .. |Ropf| unicode:: U+0211D .. DOUBLE-STRUCK CAPITAL R 13 | .. |Zopf| unicode:: U+02124 .. DOUBLE-STRUCK CAPITAL Z 14 | -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/include/isomscr.txt: -------------------------------------------------------------------------------- 1 | .. This data file has been placed in the public domain. 2 | .. Derived from the Unicode character mappings available from 3 | . 4 | Processed by unicode2rstsubs.py, part of Docutils: 5 | . 6 | 7 | .. |Bscr| unicode:: U+0212C .. SCRIPT CAPITAL B 8 | .. |Escr| unicode:: U+02130 .. SCRIPT CAPITAL E 9 | .. |escr| unicode:: U+0212F .. SCRIPT SMALL E 10 | .. |Fscr| unicode:: U+02131 .. SCRIPT CAPITAL F 11 | .. |gscr| unicode:: U+0210A .. SCRIPT SMALL G 12 | .. |Hscr| unicode:: U+0210B .. SCRIPT CAPITAL H 13 | .. |Iscr| unicode:: U+02110 .. SCRIPT CAPITAL I 14 | .. |Lscr| unicode:: U+02112 .. SCRIPT CAPITAL L 15 | .. |Mscr| unicode:: U+02133 .. SCRIPT CAPITAL M 16 | .. |oscr| unicode:: U+02134 .. SCRIPT SMALL O 17 | .. |Rscr| unicode:: U+0211B .. SCRIPT CAPITAL R 18 | -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/af.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/af.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/ca.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/ca.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/cs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/cs.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/da.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/da.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/de.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/de.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/en.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/en.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/eo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/eo.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/es.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/es.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/fa.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/fa.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/fi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/fi.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/fr.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/fr.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/gl.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/gl.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/he.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/he.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/it.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/it.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/ja.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/ja.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/lt.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/lt.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/lv.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/lv.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/nl.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/nl.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/pl.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/pl.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/pt_br.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/pt_br.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/ru.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/ru.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/sk.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/sk.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/sv.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/sv.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/zh_cn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/zh_cn.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/parsers/rst/languages/__pycache__/zh_tw.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/parsers/rst/languages/__pycache__/zh_tw.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/readers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/readers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/readers/__pycache__/doctree.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/readers/__pycache__/doctree.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/readers/__pycache__/pep.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/readers/__pycache__/pep.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/readers/__pycache__/standalone.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/readers/__pycache__/standalone.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/transforms/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/transforms/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/transforms/__pycache__/components.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/transforms/__pycache__/components.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/transforms/__pycache__/frontmatter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/transforms/__pycache__/frontmatter.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/transforms/__pycache__/misc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/transforms/__pycache__/misc.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/transforms/__pycache__/parts.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/transforms/__pycache__/parts.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/transforms/__pycache__/peps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/transforms/__pycache__/peps.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/transforms/__pycache__/references.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/transforms/__pycache__/references.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/transforms/__pycache__/universal.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/transforms/__pycache__/universal.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/transforms/__pycache__/writer_aux.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/transforms/__pycache__/writer_aux.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/__pycache__/code_analyzer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/__pycache__/code_analyzer.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/__pycache__/error_reporting.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/__pycache__/error_reporting.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/__pycache__/punctuation_chars.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/__pycache__/punctuation_chars.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/__pycache__/roman.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/__pycache__/roman.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/__pycache__/smartquotes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/__pycache__/smartquotes.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/__pycache__/urischemes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/__pycache__/urischemes.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/math/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/math/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/math/__pycache__/latex2mathml.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/math/__pycache__/latex2mathml.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/math/__pycache__/math2html.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/math/__pycache__/math2html.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/math/__pycache__/tex2mathml_extern.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/math/__pycache__/tex2mathml_extern.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/math/__pycache__/tex2unichar.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/math/__pycache__/tex2unichar.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/utils/math/__pycache__/unichar2tex.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/utils/math/__pycache__/unichar2tex.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/__pycache__/_html_base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/__pycache__/_html_base.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/__pycache__/docutils_xml.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/__pycache__/docutils_xml.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/__pycache__/manpage.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/__pycache__/manpage.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/__pycache__/null.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/__pycache__/null.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/__pycache__/pseudoxml.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/__pycache__/pseudoxml.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/html4css1/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/html4css1/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/html4css1/template.txt: -------------------------------------------------------------------------------- 1 | %(head_prefix)s 2 | %(head)s 3 | %(stylesheet)s 4 | %(body_prefix)s 5 | %(body_pre_docinfo)s 6 | %(docinfo)s 7 | %(body)s 8 | %(body_suffix)s 9 | -------------------------------------------------------------------------------- /vendor/docutils/writers/html5_polyglot/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/html5_polyglot/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/html5_polyglot/template.txt: -------------------------------------------------------------------------------- 1 | %(head_prefix)s 2 | %(head)s 3 | %(stylesheet)s 4 | %(body_prefix)s 5 | %(body_pre_docinfo)s 6 | %(docinfo)s 7 | %(body)s 8 | %(body_suffix)s 9 | -------------------------------------------------------------------------------- /vendor/docutils/writers/latex2e/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/latex2e/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/latex2e/default.tex: -------------------------------------------------------------------------------- 1 | $head_prefix% generated by Docutils 2 | \usepackage{cmap} % fix search and cut-and-paste in Acrobat 3 | $requirements 4 | %%% Custom LaTeX preamble 5 | $latex_preamble 6 | %%% User specified packages and stylesheets 7 | $stylesheet 8 | %%% Fallback definitions for Docutils-specific commands 9 | $fallbacks$pdfsetup 10 | $titledata 11 | %%% Body 12 | \begin{document} 13 | $body_pre_docinfo$docinfo$dedication$abstract$body 14 | \end{document} 15 | -------------------------------------------------------------------------------- /vendor/docutils/writers/latex2e/titlepage.tex: -------------------------------------------------------------------------------- 1 | % generated by Docutils 2 | $head_prefix 3 | \usepackage{fixltx2e} % LaTeX patches, \textsubscript 4 | \usepackage{cmap} % fix search and cut-and-paste in Acrobat 5 | $requirements 6 | %%% Custom LaTeX preamble 7 | $latex_preamble 8 | %%% User specified packages and stylesheets 9 | $stylesheet 10 | %%% Fallback definitions for Docutils-specific commands 11 | $fallbacks$pdfsetup 12 | $titledata 13 | %%% Body 14 | \begin{document} 15 | \begin{titlepage} 16 | $body_pre_docinfo$docinfo$dedication$abstract 17 | \thispagestyle{empty} 18 | \end{titlepage} 19 | $body 20 | \end{document} 21 | -------------------------------------------------------------------------------- /vendor/docutils/writers/latex2e/xelatex.tex: -------------------------------------------------------------------------------- 1 | $head_prefix% generated by Docutils 2 | % rubber: set program xelatex 3 | \usepackage{fontspec} 4 | % \defaultfontfeatures{Scale=MatchLowercase} 5 | % straight double quotes (defined T1 but missing in TU): 6 | \ifdefined \UnicodeEncodingName 7 | \DeclareTextCommand{\textquotedbl}{\UnicodeEncodingName}{% 8 | {\addfontfeatures{RawFeature=-tlig,Mapping=}\char34}}% 9 | \fi 10 | $requirements 11 | %%% Custom LaTeX preamble 12 | $latex_preamble 13 | %%% User specified packages and stylesheets 14 | $stylesheet 15 | %%% Fallback definitions for Docutils-specific commands 16 | $fallbacks$pdfsetup 17 | $titledata 18 | %%% Body 19 | \begin{document} 20 | $body_pre_docinfo$docinfo$dedication$abstract$body 21 | \end{document} 22 | -------------------------------------------------------------------------------- /vendor/docutils/writers/null.py: -------------------------------------------------------------------------------- 1 | # $Id: null.py 4564 2006-05-21 20:44:42Z wiemann $ 2 | # Author: David Goodger 3 | # Copyright: This module has been placed in the public domain. 4 | 5 | """ 6 | A do-nothing Writer. 7 | """ 8 | 9 | from docutils import writers 10 | 11 | 12 | class Writer(writers.UnfilteredWriter): 13 | 14 | supported = ('null',) 15 | """Formats this writer supports.""" 16 | 17 | config_section = 'null writer' 18 | config_section_dependencies = ('writers',) 19 | 20 | def translate(self): 21 | pass 22 | -------------------------------------------------------------------------------- /vendor/docutils/writers/odf_odt/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/odf_odt/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/odf_odt/__pycache__/pygmentsformatter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/odf_odt/__pycache__/pygmentsformatter.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/odf_odt/styles.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/odf_odt/styles.odt -------------------------------------------------------------------------------- /vendor/docutils/writers/pep_html/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/pep_html/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/pseudoxml.py: -------------------------------------------------------------------------------- 1 | # $Id: pseudoxml.py 7320 2012-01-19 22:33:02Z milde $ 2 | # Author: David Goodger 3 | # Copyright: This module has been placed in the public domain. 4 | 5 | """ 6 | Simple internal document tree Writer, writes indented pseudo-XML. 7 | """ 8 | 9 | __docformat__ = 'reStructuredText' 10 | 11 | 12 | from docutils import writers 13 | 14 | 15 | class Writer(writers.Writer): 16 | 17 | supported = ('pprint', 'pformat', 'pseudoxml') 18 | """Formats this writer supports.""" 19 | 20 | config_section = 'pseudoxml writer' 21 | config_section_dependencies = ('writers',) 22 | 23 | output = None 24 | """Final translated form of `document`.""" 25 | 26 | def translate(self): 27 | self.output = self.document.pformat() 28 | 29 | def supports(self, format): 30 | """This writer supports all format-specific elements.""" 31 | return True 32 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/s5_html/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/README.txt: -------------------------------------------------------------------------------- 1 | Except where otherwise noted (default/iepngfix.htc), all files in this 2 | directory have been released into the Public Domain. 3 | 4 | These files are based on files from S5 1.1, released into the Public 5 | Domain by Eric Meyer. For further details, please see 6 | http://www.meyerweb.com/eric/tools/s5/credits.html. 7 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/big-black/__base__: -------------------------------------------------------------------------------- 1 | # base theme of this theme: 2 | big-white 3 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/big-black/framing.css: -------------------------------------------------------------------------------- 1 | /* The following styles size, place, and layer the slide components. 2 | Edit these if you want to change the overall slide layout. 3 | The commented lines can be uncommented (and modified, if necessary) 4 | to help you with the rearrangement process. */ 5 | 6 | /* target = 1024x768 */ 7 | 8 | div#header, div#footer, .slide {width: 100%; top: 0; left: 0;} 9 | div#header {top: 0; z-index: 1;} 10 | div#footer {display:none;} 11 | .slide {top: 0; width: 92%; padding: 0.1em 4% 4%; z-index: 2;} 12 | /* list-style: none;} */ 13 | div#controls {left: 50%; bottom: 0; width: 50%; z-index: 100;} 14 | div#controls form {position: absolute; bottom: 0; right: 0; width: 100%; 15 | margin: 0;} 16 | #currentSlide {position: absolute; width: 10%; left: 45%; bottom: 1em; 17 | z-index: 10;} 18 | html>body #currentSlide {position: fixed;} 19 | 20 | /* 21 | div#header {background: #FCC;} 22 | div#footer {background: #CCF;} 23 | div#controls {background: #BBD;} 24 | div#currentSlide {background: #FFC;} 25 | */ 26 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/big-white/framing.css: -------------------------------------------------------------------------------- 1 | /* This file has been placed in the public domain. */ 2 | /* The following styles size, place, and layer the slide components. 3 | Edit these if you want to change the overall slide layout. 4 | The commented lines can be uncommented (and modified, if necessary) 5 | to help you with the rearrangement process. */ 6 | 7 | /* target = 1024x768 */ 8 | 9 | div#header, div#footer, .slide {width: 100%; top: 0; left: 0;} 10 | div#footer {display:none;} 11 | .slide {top: 0; width: 92%; padding: 0.25em 4% 4%; z-index: 2;} 12 | div#controls {left: 50%; bottom: 0; width: 50%; z-index: 100;} 13 | div#controls form {position: absolute; bottom: 0; right: 0; width: 100%; 14 | margin: 0;} 15 | #currentSlide {position: absolute; width: 10%; left: 45%; bottom: 1em; 16 | z-index: 10;} 17 | html>body #currentSlide {position: fixed;} 18 | 19 | /* 20 | div#header {background: #FCC;} 21 | div#footer {background: #CCF;} 22 | div#controls {background: #BBD;} 23 | div#currentSlide {background: #FFC;} 24 | */ 25 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/default/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/s5_html/themes/default/blank.gif -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/default/opera.css: -------------------------------------------------------------------------------- 1 | /* This file has been placed in the public domain. */ 2 | /* DO NOT CHANGE THESE unless you really want to break Opera Show */ 3 | .slide { 4 | visibility: visible !important; 5 | position: static !important; 6 | page-break-before: always; 7 | } 8 | #slide0 {page-break-before: avoid;} 9 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/default/outline.css: -------------------------------------------------------------------------------- 1 | /* This file has been placed in the public domain. */ 2 | /* Don't change this unless you want the layout stuff to show up in the 3 | outline view! */ 4 | 5 | .layout div, #footer *, #controlForm * {display: none;} 6 | #footer, #controls, #controlForm, #navLinks, #toggle { 7 | display: block; visibility: visible; margin: 0; padding: 0;} 8 | #toggle {float: right; padding: 0.5em;} 9 | html>body #toggle {position: fixed; top: 0; right: 0;} 10 | 11 | /* making the outline look pretty-ish */ 12 | 13 | #slide0 h1, #slide0 h2, #slide0 h3, #slide0 h4 {border: none; margin: 0;} 14 | #toggle {border: 1px solid; border-width: 0 0 1px 1px; background: #FFF;} 15 | 16 | .outline {display: inline ! important;} 17 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/default/print.css: -------------------------------------------------------------------------------- 1 | /* This file has been placed in the public domain. */ 2 | /* The following rule is necessary to have all slides appear in print! 3 | DO NOT REMOVE IT! */ 4 | .slide, ul {page-break-inside: avoid; visibility: visible !important;} 5 | h1 {page-break-after: avoid;} 6 | 7 | body {font-size: 12pt; background: white;} 8 | * {color: black;} 9 | 10 | #slide0 h1 {font-size: 200%; border: none; margin: 0.5em 0 0.25em;} 11 | #slide0 h3 {margin: 0; padding: 0;} 12 | #slide0 h4 {margin: 0 0 0.5em; padding: 0;} 13 | #slide0 {margin-bottom: 3em;} 14 | 15 | #header {display: none;} 16 | #footer h1 {margin: 0; border-bottom: 1px solid; color: gray; 17 | font-style: italic;} 18 | #footer h2, #controls {display: none;} 19 | 20 | .print {display: inline ! important;} 21 | 22 | /* The following rule keeps the layout stuff out of print. 23 | Remove at your own risk! */ 24 | .layout, .layout * {display: none !important;} 25 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/default/s5-core.css: -------------------------------------------------------------------------------- 1 | /* This file has been placed in the public domain. */ 2 | /* Do not edit or override these styles! 3 | The system will likely break if you do. */ 4 | 5 | div#header, div#footer, div#controls, .slide {position: absolute;} 6 | html>body div#header, html>body div#footer, 7 | html>body div#controls, html>body .slide {position: fixed;} 8 | .handout {display: none;} 9 | .layout {display: block;} 10 | .slide, .hideme, .incremental {visibility: hidden;} 11 | #slide0 {visibility: visible;} 12 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/default/slides.css: -------------------------------------------------------------------------------- 1 | /* This file has been placed in the public domain. */ 2 | 3 | /* required to make the slide show run at all */ 4 | @import url(s5-core.css); 5 | 6 | /* sets basic placement and size of slide components */ 7 | @import url(framing.css); 8 | 9 | /* styles that make the slides look good */ 10 | @import url(pretty.css); 11 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/medium-black/__base__: -------------------------------------------------------------------------------- 1 | # base theme of this theme: 2 | medium-white 3 | -------------------------------------------------------------------------------- /vendor/docutils/writers/s5_html/themes/small-black/__base__: -------------------------------------------------------------------------------- 1 | # base theme of this theme: 2 | small-white 3 | -------------------------------------------------------------------------------- /vendor/docutils/writers/xetex/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/docutils/writers/xetex/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/jmespath-0.9.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /vendor/jmespath-0.9.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.26.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /vendor/jmespath-0.9.3.dist-info/metadata.json: -------------------------------------------------------------------------------- 1 | {"generator": "bdist_wheel (0.26.0)", "summary": "JSON Matching Expressions", "classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Natural Language :: English", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy"], "extensions": {"python.details": {"project_urls": {"Home": "https://github.com/jmespath/jmespath.py"}, "contacts": [{"email": "js@jamesls.com", "name": "James Saryerwinnie", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}}}, "license": "MIT", "metadata_version": "2.0", "name": "jmespath", "version": "0.9.3"} -------------------------------------------------------------------------------- /vendor/jmespath-0.9.3.dist-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": true, "git_version": "0466cc1"} -------------------------------------------------------------------------------- /vendor/jmespath-0.9.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jmespath 2 | -------------------------------------------------------------------------------- /vendor/jmespath/__init__.py: -------------------------------------------------------------------------------- 1 | from jmespath import parser 2 | from jmespath.visitor import Options 3 | 4 | __version__ = '0.9.3' 5 | 6 | 7 | def compile(expression): 8 | return parser.Parser().parse(expression) 9 | 10 | 11 | def search(expression, data, options=None): 12 | return parser.Parser().parse(expression).search(data, options=options) 13 | -------------------------------------------------------------------------------- /vendor/jmespath/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/jmespath/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/jmespath/__pycache__/ast.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/jmespath/__pycache__/ast.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/jmespath/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/jmespath/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/jmespath/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/jmespath/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/jmespath/__pycache__/functions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/jmespath/__pycache__/functions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/jmespath/__pycache__/lexer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/jmespath/__pycache__/lexer.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/jmespath/__pycache__/parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/jmespath/__pycache__/parser.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/jmespath/__pycache__/visitor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/jmespath/__pycache__/visitor.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/python_dateutil-2.6.1.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | 2 | The dateutil module provides powerful extensions to the 3 | datetime module available in the Python standard library. 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/python_dateutil-2.6.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /vendor/python_dateutil-2.6.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /vendor/python_dateutil-2.6.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dateutil 2 | -------------------------------------------------------------------------------- /vendor/python_dateutil-2.6.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/s3transfer-0.1.12.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | ===================================================== 2 | s3transfer - An Amazon S3 Transfer Manager for Python 3 | ===================================================== 4 | 5 | S3transfer is a Python library for managing Amazon S3 transfers. 6 | 7 | .. note:: 8 | 9 | This project is not currently GA. If you are planning to use this code in 10 | production, make sure to lock to a minor version as interfaces may break 11 | from minor version to minor version. For a basic, stable interface of 12 | s3transfer, try the interfaces exposed in `boto3 `__ 13 | 14 | 15 | -------------------------------------------------------------------------------- /vendor/s3transfer-0.1.12.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /vendor/s3transfer-0.1.12.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /vendor/s3transfer-0.1.12.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | s3transfer 2 | -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/copies.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/copies.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/delete.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/delete.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/download.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/download.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/futures.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/futures.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/manager.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/subscribers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/subscribers.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/tasks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/tasks.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/upload.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/upload.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/s3transfer/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trulia/cidr-house-rules/fcc8afe390457bafdae8f5b221cf31a3359e5f23/vendor/s3transfer/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /vendor/six-1.11.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /vendor/six-1.11.0.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | six.py,sha256=A08MPb-Gi9FfInI3IW7HimXFmEH2T2IPzHgDvdhZPRA,30888 2 | six-1.11.0.dist-info/DESCRIPTION.rst,sha256=gPBoq1Ruc1QDWyLeXPlieL3F-XZz1_WXB-5gctCfg-A,1098 3 | six-1.11.0.dist-info/METADATA,sha256=06nZXaDYN3vnC-pmUjhkECYFH_a--ywvcPIpUdNeH1o,1607 4 | six-1.11.0.dist-info/RECORD,, 5 | six-1.11.0.dist-info/WHEEL,sha256=o2k-Qa-RMNIJmUdIc7KU6VWR_ErNRbWNlxDIpl7lm34,110 6 | six-1.11.0.dist-info/metadata.json,sha256=ac3f4f7MpSHSnZ1SqhHCwsL7FGWMG0gBEb0hhS2eSSM,703 7 | six-1.11.0.dist-info/top_level.txt,sha256=_iVH_iYEtEXnD8nYGQYpYFUvkUW9sEO1GYbkeKSAais,4 8 | six-1.11.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 9 | __pycache__/six.cpython-36.pyc,, 10 | -------------------------------------------------------------------------------- /vendor/six-1.11.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /vendor/six-1.11.0.dist-info/metadata.json: -------------------------------------------------------------------------------- 1 | {"classifiers": ["Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Libraries", "Topic :: Utilities"], "extensions": {"python.details": {"contacts": [{"email": "benjamin@python.org", "name": "Benjamin Peterson", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "http://pypi.python.org/pypi/six/"}}}, "generator": "bdist_wheel (0.29.0)", "license": "MIT", "metadata_version": "2.0", "name": "six", "summary": "Python 2 and 3 compatibility utilities", "test_requires": [{"requires": ["pytest"]}], "version": "1.11.0"} -------------------------------------------------------------------------------- /vendor/six-1.11.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | --------------------------------------------------------------------------------