├── lib └── __init__.py ├── report └── .gitignore ├── targets └── .gitignore ├── crawler_logs └── .gitignore ├── scripts ├── __init__.py ├── disabled │ └── __init__.py ├── tools │ └── __init__.py └── readme.txt ├── rules ├── disabled │ └── .gitignore ├── java_server_faces2.txt └── graphite_ssrf.txt ├── venv ├── Lib │ ├── no-global-site-packages.txt │ ├── orig-prefix.txt │ ├── site-packages │ │ ├── botocore │ │ │ ├── crt │ │ │ │ └── __init__.py │ │ │ ├── vendored │ │ │ │ ├── __init__.py │ │ │ │ └── requests │ │ │ │ │ └── packages │ │ │ │ │ └── __init__.py │ │ │ ├── data │ │ │ │ ├── ce │ │ │ │ │ └── 2017-10-25 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── pi │ │ │ │ │ └── 2018-02-27 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── appflow │ │ │ │ │ └── 2020-08-23 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── backup │ │ │ │ │ └── 2018-11-15 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── dlm │ │ │ │ │ └── 2018-01-12 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── ebs │ │ │ │ │ └── 2019-11-02 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── fis │ │ │ │ │ └── 2020-12-01 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── kendra │ │ │ │ │ └── 2019-02-03 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── qldb │ │ │ │ │ └── 2019-01-02 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── sesv2 │ │ │ │ │ └── 2019-09-27 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── sts │ │ │ │ │ └── 2011-06-15 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── wafv2 │ │ │ │ │ └── 2019-07-29 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── appconfig │ │ │ │ │ └── 2019-10-09 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── apprunner │ │ │ │ │ └── 2020-05-15 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── auditmanager │ │ │ │ │ └── 2017-07-25 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── cloudsearch │ │ │ │ │ └── 2013-01-01 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── cognito-sync │ │ │ │ │ └── 2014-06-30 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── detective │ │ │ │ │ └── 2018-10-26 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── finspace │ │ │ │ │ └── 2021-03-12 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── firehose │ │ │ │ │ └── 2015-08-04 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── healthlake │ │ │ │ │ └── 2017-07-01 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── imagebuilder │ │ │ │ │ └── 2019-12-02 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── iot-data │ │ │ │ │ └── 2015-05-28 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── iotevents │ │ │ │ │ └── 2018-07-27 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── iotwireless │ │ │ │ │ └── 2020-11-22 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── lex-runtime │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── lexv2-models │ │ │ │ │ └── 2020-08-07 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── outposts │ │ │ │ │ └── 2019-12-03 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── qldb-session │ │ │ │ │ └── 2019-07-11 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── rds-data │ │ │ │ │ └── 2018-08-01 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── savingsplans │ │ │ │ │ └── 2019-06-28 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── sso-oidc │ │ │ │ │ └── 2019-06-10 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── synthetics │ │ │ │ │ └── 2017-10-11 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── textract │ │ │ │ │ └── 2018-06-27 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── transcribe │ │ │ │ │ └── 2017-10-26 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── waf-regional │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── worklink │ │ │ │ │ └── 2018-09-25 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── appintegrations │ │ │ │ │ └── 2020-07-29 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── comprehendmedical │ │ │ │ │ └── 2018-10-30 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── compute-optimizer │ │ │ │ │ └── 2019-11-01 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── customer-profiles │ │ │ │ │ └── 2020-08-15 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── dynamodbstreams │ │ │ │ │ └── 2012-08-10 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── finspace-data │ │ │ │ │ └── 2020-07-13 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── forecastquery │ │ │ │ │ └── 2018-06-26 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── frauddetector │ │ │ │ │ └── 2019-11-15 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── identitystore │ │ │ │ │ └── 2020-06-15 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── iot-jobs-data │ │ │ │ │ └── 2017-09-29 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── iotdeviceadvisor │ │ │ │ │ └── 2020-09-18 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── iotevents-data │ │ │ │ │ └── 2018-10-23 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── kinesisanalytics │ │ │ │ │ └── 2015-08-14 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── lakeformation │ │ │ │ │ └── 2017-03-31 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── lexv2-runtime │ │ │ │ │ └── 2020-08-07 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── lookoutequipment │ │ │ │ │ └── 2020-12-15 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── lookoutmetrics │ │ │ │ │ └── 2017-07-25 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── managedblockchain │ │ │ │ │ └── 2018-09-24 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── sagemaker-edge │ │ │ │ │ └── 2020-09-23 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── sagemaker-runtime │ │ │ │ │ └── 2017-05-13 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── timestream-write │ │ │ │ │ └── 2018-11-01 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── wellarchitected │ │ │ │ │ └── 2020-03-31 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── application-insights │ │ │ │ │ └── 2018-11-25 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── codestar-connections │ │ │ │ │ └── 2019-12-01 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── connect-contact-lens │ │ │ │ │ └── 2020-08-21 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── connectparticipant │ │ │ │ │ └── 2018-09-07 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── ec2-instance-connect │ │ │ │ │ └── 2018-04-02 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── iotsecuretunneling │ │ │ │ │ └── 2018-10-05 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── kinesis-video-media │ │ │ │ │ └── 2017-09-30 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── marketplace-catalog │ │ │ │ │ └── 2018-09-17 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── meteringmarketplace │ │ │ │ │ └── 2016-01-14 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── migrationhub-config │ │ │ │ │ └── 2019-06-30 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── personalize-events │ │ │ │ │ └── 2018-03-22 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── personalize-runtime │ │ │ │ │ └── 2018-05-22 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── workmailmessageflow │ │ │ │ │ └── 2019-05-01 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── apigatewaymanagementapi │ │ │ │ │ └── 2018-11-29 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── kinesis-video-signaling │ │ │ │ │ └── 2019-12-04 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── acm-pca │ │ │ │ │ └── 2017-08-22 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── acm │ │ │ │ │ └── 2015-12-08 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── cur │ │ │ │ │ └── 2017-01-06 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── dax │ │ │ │ │ └── 2017-04-19 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── ds │ │ │ │ │ └── 2015-04-16 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── emr │ │ │ │ │ └── 2009-03-31 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── es │ │ │ │ │ └── 2015-01-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── fms │ │ │ │ │ └── 2018-01-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── glue │ │ │ │ │ └── 2017-03-31 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── iot │ │ │ │ │ └── 2015-05-28 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── logs │ │ │ │ │ └── 2014-03-28 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── macie │ │ │ │ │ └── 2017-12-19 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── marketplacecommerceanalytics │ │ │ │ │ └── 2015-07-01 │ │ │ │ │ │ ├── paginators-1.json │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── mgh │ │ │ │ │ └── 2017-05-31 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── mturk │ │ │ │ │ └── 2017-01-17 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── neptune │ │ │ │ │ └── 2014-10-31 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── sagemaker-featurestore-runtime │ │ │ │ │ └── 2020-07-01 │ │ │ │ │ │ └── paginators-1.json │ │ │ │ ├── sms │ │ │ │ │ └── 2016-10-24 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── sns │ │ │ │ │ └── 2010-03-31 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── sqs │ │ │ │ │ └── 2012-11-05 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── ssm │ │ │ │ │ └── 2014-11-06 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── swf │ │ │ │ │ └── 2012-01-25 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── xray │ │ │ │ │ └── 2016-04-12 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── apigateway │ │ │ │ │ └── 2015-07-09 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── appstream │ │ │ │ │ └── 2016-12-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── appsync │ │ │ │ │ └── 2017-07-25 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── athena │ │ │ │ │ └── 2017-05-18 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── budgets │ │ │ │ │ └── 2016-10-20 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── cloudfront │ │ │ │ │ ├── 2016-11-25 │ │ │ │ │ │ └── examples-1.json │ │ │ │ │ ├── 2017-03-25 │ │ │ │ │ │ └── examples-1.json │ │ │ │ │ ├── 2017-10-30 │ │ │ │ │ │ └── examples-1.json │ │ │ │ │ ├── 2018-06-18 │ │ │ │ │ │ └── examples-1.json │ │ │ │ │ ├── 2018-11-05 │ │ │ │ │ │ └── examples-1.json │ │ │ │ │ ├── 2019-03-26 │ │ │ │ │ │ └── examples-1.json │ │ │ │ │ └── 2020-05-31 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── cloudhsm │ │ │ │ │ └── 2014-05-30 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── cloudhsmv2 │ │ │ │ │ └── 2017-04-28 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── cloudtrail │ │ │ │ │ └── 2013-11-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── cloudwatch │ │ │ │ │ └── 2010-08-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── codecommit │ │ │ │ │ └── 2015-04-13 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── codedeploy │ │ │ │ │ └── 2014-10-06 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── codestar │ │ │ │ │ └── 2017-04-19 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── comprehend │ │ │ │ │ └── 2017-11-27 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── config │ │ │ │ │ └── 2014-11-12 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── connect │ │ │ │ │ └── 2017-08-08 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── discovery │ │ │ │ │ └── 2015-11-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── events │ │ │ │ │ └── 2015-10-07 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── gamelift │ │ │ │ │ └── 2015-10-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── health │ │ │ │ │ └── 2016-08-04 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── kinesis │ │ │ │ │ └── 2013-12-02 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── lightsail │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── mediastore │ │ │ │ │ └── 2017-09-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── mobile │ │ │ │ │ └── 2017-07-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── opsworks │ │ │ │ │ └── 2013-02-18 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── opsworkscm │ │ │ │ │ └── 2016-11-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── pinpoint │ │ │ │ │ └── 2016-12-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── redshift │ │ │ │ │ └── 2012-12-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── sagemaker │ │ │ │ │ └── 2017-07-24 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── shield │ │ │ │ │ └── 2016-06-02 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── signer │ │ │ │ │ └── 2017-08-25 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── support │ │ │ │ │ └── 2013-04-15 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── translate │ │ │ │ │ └── 2017-07-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── workdocs │ │ │ │ │ └── 2016-05-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── workmail │ │ │ │ │ └── 2017-10-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── workspaces │ │ │ │ │ └── 2015-04-08 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── clouddirectory │ │ │ │ │ └── 2017-01-11 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── cloudformation │ │ │ │ │ └── 2010-05-15 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── codepipeline │ │ │ │ │ └── 2015-07-09 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── cognito-idp │ │ │ │ │ └── 2016-04-18 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── directconnect │ │ │ │ │ └── 2012-10-25 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── iotanalytics │ │ │ │ │ └── 2017-11-27 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── kinesisvideo │ │ │ │ │ └── 2017-09-30 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── machinelearning │ │ │ │ │ └── 2014-12-12 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── mediastore-data │ │ │ │ │ └── 2017-09-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── resource-groups │ │ │ │ │ └── 2017-11-27 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── route53domains │ │ │ │ │ └── 2014-05-15 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── servicecatalog │ │ │ │ │ └── 2015-12-10 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── stepfunctions │ │ │ │ │ └── 2016-11-23 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── alexaforbusiness │ │ │ │ │ └── 2017-11-09 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── autoscaling-plans │ │ │ │ │ └── 2018-01-06 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── cloudsearchdomain │ │ │ │ │ └── 2013-01-01 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── cognito-identity │ │ │ │ │ └── 2014-06-30 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── elastictranscoder │ │ │ │ │ └── 2012-09-25 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── iot1click-projects │ │ │ │ │ └── 2018-05-14 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── servicediscovery │ │ │ │ │ └── 2017-03-14 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── marketplace-entitlement │ │ │ │ │ └── 2017-01-11 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── resourcegroupstaggingapi │ │ │ │ │ └── 2017-01-26 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── kinesis-video-archived-media │ │ │ │ │ └── 2017-09-30 │ │ │ │ │ │ └── examples-1.json │ │ │ │ ├── eks │ │ │ │ │ └── 2017-11-01 │ │ │ │ │ │ └── service-2.sdk-extras.json │ │ │ │ └── secretsmanager │ │ │ │ │ └── 2017-10-17 │ │ │ │ │ └── service-2.sdk-extras.json │ │ │ └── retries │ │ │ │ └── __init__.py │ │ ├── chardet │ │ │ ├── cli │ │ │ │ └── __init__.py │ │ │ └── metadata │ │ │ │ └── __init__.py │ │ ├── setuptools │ │ │ ├── _vendor │ │ │ │ └── __init__.py │ │ │ ├── cli.exe │ │ │ ├── gui.exe │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── script.tmpl │ │ │ └── version.py │ │ ├── six-1.16.0.dist-info │ │ │ ├── REQUESTED │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── urllib3 │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ └── _securetransport │ │ │ │ │ └── __init__.py │ │ │ ├── packages │ │ │ │ ├── backports │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ └── _version.py │ │ ├── wheel │ │ │ ├── vendored │ │ │ │ ├── __init__.py │ │ │ │ └── packaging │ │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── awscli-1.19.112.dist-info │ │ │ ├── REQUESTED │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── gevent-21.12.0.dist-info │ │ │ ├── REQUESTED │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── entry_points.txt │ │ │ └── WHEEL │ │ ├── grequests-0.6.0.dist-info │ │ │ ├── REQUESTED │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── pip │ │ │ ├── _internal │ │ │ │ ├── utils │ │ │ │ │ └── __init__.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── install │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── resolution │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── legacy │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── resolvelib │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── index │ │ │ │ │ └── __init__.py │ │ │ │ ├── network │ │ │ │ │ └── __init__.py │ │ │ │ ├── models │ │ │ │ │ └── __init__.py │ │ │ │ └── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── status_codes.py │ │ │ └── _vendor │ │ │ │ ├── chardet │ │ │ │ └── cli │ │ │ │ │ └── __init__.py │ │ │ │ ├── html5lib │ │ │ │ ├── filters │ │ │ │ │ └── __init__.py │ │ │ │ └── _trie │ │ │ │ │ └── __init__.py │ │ │ │ ├── urllib3 │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _securetransport │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── packages │ │ │ │ │ ├── backports │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── __init__.py │ │ │ │ └── _version.py │ │ │ │ ├── resolvelib │ │ │ │ └── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── collections_abc.py │ │ │ │ ├── msgpack │ │ │ │ └── _version.py │ │ │ │ ├── idna │ │ │ │ ├── package_data.py │ │ │ │ └── __init__.py │ │ │ │ ├── certifi │ │ │ │ └── __init__.py │ │ │ │ ├── distlib │ │ │ │ ├── t32.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── w32.exe │ │ │ │ └── w64.exe │ │ │ │ ├── cachecontrol │ │ │ │ └── caches │ │ │ │ │ └── __init__.py │ │ │ │ └── pep517 │ │ │ │ └── __init__.py │ │ ├── pkg_resources │ │ │ └── _vendor │ │ │ │ └── __init__.py │ │ ├── pymongo-3.12.3.dist-info │ │ │ ├── REQUESTED │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── requests-2.27.1.dist-info │ │ │ ├── REQUESTED │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── rsa-4.5.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── urllib3-1.26.7.dist-info │ │ │ ├── REQUESTED │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── PyYAML-5.4.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── beautifulsoup4-4.9.3.dist-info │ │ │ ├── REQUESTED │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── WHEEL │ │ │ └── AUTHORS │ │ ├── cffi-1.15.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── entry_points.txt │ │ │ └── WHEEL │ │ ├── idna-2.10.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── pip-20.3.4.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── WHEEL │ │ │ └── entry_points.txt │ │ ├── py2_ipaddress-3.4.2.dist-info │ │ │ ├── REQUESTED │ │ │ ├── zip-safe │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── pyasn1-0.4.8.dist-info │ │ │ ├── INSTALLER │ │ │ ├── zip-safe │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── wheel-0.37.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── WHEEL │ │ │ └── entry_points.txt │ │ ├── botocore-1.20.112.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── certifi-2021.10.8.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── chardet-4.0.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── entry_points.txt │ │ │ └── WHEEL │ │ ├── colorama-0.4.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── docutils-0.15.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── futures-3.3.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── greenlet-1.1.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── jmespath-0.10.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── pycparser-2.21.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── python_dateutil-2.8.2.dist-info │ │ │ ├── zip-safe │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── s3transfer-0.4.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── NOTICE.txt │ │ │ └── WHEEL │ │ ├── setuptools-44.1.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── zip-safe │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── soupsieve-1.9.6.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── zope.event-4.5.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── namespace_packages.txt │ │ │ └── WHEEL │ │ ├── idna │ │ │ ├── package_data.py │ │ │ └── __init__.py │ │ ├── zope.interface-5.4.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── namespace_packages.txt │ │ │ └── WHEEL │ │ ├── backports.functools_lru_cache-1.6.4.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ ├── dateutil │ │ │ ├── tzwin.py │ │ │ ├── zoneinfo │ │ │ │ └── dateutil-zoneinfo.tar.gz │ │ │ └── _version.py │ │ ├── pyasn1 │ │ │ ├── codec │ │ │ │ ├── __init__.py │ │ │ │ ├── ber │ │ │ │ │ └── __init__.py │ │ │ │ ├── cer │ │ │ │ │ └── __init__.py │ │ │ │ ├── der │ │ │ │ │ └── __init__.py │ │ │ │ └── native │ │ │ │ │ └── __init__.py │ │ │ ├── compat │ │ │ │ └── __init__.py │ │ │ ├── type │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── certifi │ │ │ └── __init__.py │ │ ├── docutils │ │ │ └── writers │ │ │ │ ├── s5_html │ │ │ │ └── themes │ │ │ │ │ ├── big-black │ │ │ │ │ └── __base__ │ │ │ │ │ ├── small-black │ │ │ │ │ └── __base__ │ │ │ │ │ ├── medium-black │ │ │ │ │ └── __base__ │ │ │ │ │ └── default │ │ │ │ │ └── blank.gif │ │ │ │ ├── odf_odt │ │ │ │ └── styles.odt │ │ │ │ ├── html4css1 │ │ │ │ └── template.txt │ │ │ │ └── html5_polyglot │ │ │ │ └── template.txt │ │ ├── backports │ │ │ └── __init__.py │ │ ├── concurrent │ │ │ └── __init__.py │ │ ├── pycparser │ │ │ └── ply │ │ │ │ └── __init__.py │ │ ├── awscli │ │ │ └── examples │ │ │ │ ├── apigateway │ │ │ │ ├── get-usage-plans.rst │ │ │ │ ├── delete-rest-api.rst │ │ │ │ ├── delete-usage-plan.rst │ │ │ │ ├── get-usage-plan.rst │ │ │ │ ├── delete-api-key.rst │ │ │ │ ├── delete-domain-name.rst │ │ │ │ ├── delete-stage.rst │ │ │ │ ├── get-client-certificate.rst │ │ │ │ ├── delete-resource.rst │ │ │ │ ├── delete-client-certificate.rst │ │ │ │ ├── delete-deployment.rst │ │ │ │ ├── delete-model.rst │ │ │ │ ├── flush-stage-cache.rst │ │ │ │ ├── get-usage-plan-keys.rst │ │ │ │ ├── delete-authorizer.rst │ │ │ │ ├── import-rest-api.rst │ │ │ │ ├── create-resource.rst │ │ │ │ ├── get-usage.rst │ │ │ │ ├── generate-client-certificate.rst │ │ │ │ ├── delete-method.rst │ │ │ │ └── flush-stage-authorizers-cache.rst │ │ │ │ ├── logs │ │ │ │ ├── create-log-group.rst │ │ │ │ ├── delete-log-group.rst │ │ │ │ ├── put-retention-policy.rst │ │ │ │ ├── create-log-stream.rst │ │ │ │ └── delete-log-stream.rst │ │ │ │ ├── s3api │ │ │ │ ├── delete-bucket.rst │ │ │ │ ├── delete-bucket-policy.rst │ │ │ │ ├── delete-bucket-tagging.rst │ │ │ │ ├── delete-bucket-website.rst │ │ │ │ ├── delete-bucket-lifecycle.rst │ │ │ │ ├── delete-bucket-replication.rst │ │ │ │ └── delete-bucket-cors.rst │ │ │ │ ├── ec2 │ │ │ │ ├── describe-elastic-gpus.rst │ │ │ │ └── delete-vpc.rst │ │ │ │ ├── batch │ │ │ │ └── delete-job-queue.rst │ │ │ │ ├── cognito-idp │ │ │ │ ├── delete-user.rst │ │ │ │ └── forget-device.rst │ │ │ │ ├── emr │ │ │ │ ├── list-steps.rst │ │ │ │ ├── wait.rst │ │ │ │ └── remove-tags.rst │ │ │ │ ├── cloudtrail │ │ │ │ ├── delete-trail.rst │ │ │ │ ├── stop-logging.rst │ │ │ │ └── start-logging.rst │ │ │ │ ├── datapipeline │ │ │ │ └── delete-pipeline.rst │ │ │ │ ├── eks │ │ │ │ └── delete-cluster.rst │ │ │ │ └── events │ │ │ │ └── delete-rule.rst │ │ ├── greenlet │ │ │ └── platform │ │ │ │ ├── switch_x64_masm.obj │ │ │ │ └── setup_switch_x64_masm.cmd │ │ ├── easy_install.py │ │ └── gevent │ │ │ ├── libev │ │ │ └── __init__.py │ │ │ └── libuv │ │ │ └── __init__.py │ └── encodings │ │ ├── punycode.py │ │ └── string_escape.py ├── Scripts │ ├── pip.exe │ ├── pip2.7.exe │ ├── pip2.exe │ ├── python.exe │ ├── wheel.exe │ ├── python27.dll │ ├── pythonw.exe │ ├── chardetect.exe │ ├── pyrsa-sign.exe │ ├── easy_install.exe │ ├── pyrsa-decrypt.exe │ ├── pyrsa-encrypt.exe │ ├── pyrsa-keygen.exe │ ├── pyrsa-verify.exe │ ├── easy_install-2.7.exe │ └── pyrsa-priv2pub.exe └── tcl │ ├── tk8.5 │ ├── msgs │ │ └── en_gb.msg │ ├── images │ │ ├── logo100.gif │ │ ├── logo64.gif │ │ ├── logoMed.gif │ │ ├── tai-ku.gif │ │ ├── logoLarge.gif │ │ ├── pwrdLogo100.gif │ │ ├── pwrdLogo150.gif │ │ ├── pwrdLogo175.gif │ │ ├── pwrdLogo200.gif │ │ └── pwrdLogo75.gif │ └── demos │ │ └── images │ │ ├── earth.gif │ │ ├── teapot.ppm │ │ ├── earthris.gif │ │ └── tcllogo.gif │ └── tcl8.5 │ ├── tzdata │ ├── EST │ ├── HST │ ├── MST │ ├── Etc │ │ ├── GMT │ │ ├── UCT │ │ ├── UTC │ │ ├── GMT+1 │ │ ├── GMT+2 │ │ ├── GMT+3 │ │ ├── GMT+4 │ │ ├── GMT+5 │ │ ├── GMT+6 │ │ ├── GMT+7 │ │ ├── GMT+8 │ │ ├── GMT+9 │ │ ├── GMT-1 │ │ ├── GMT-10 │ │ ├── GMT-11 │ │ ├── GMT-12 │ │ ├── GMT-13 │ │ ├── GMT-14 │ │ ├── GMT-2 │ │ ├── GMT-3 │ │ ├── GMT-4 │ │ ├── GMT-5 │ │ ├── GMT-6 │ │ ├── GMT-7 │ │ ├── GMT-8 │ │ ├── GMT-9 │ │ ├── GMT+10 │ │ ├── GMT+11 │ │ ├── GMT+12 │ │ ├── GMT+0 │ │ ├── GMT-0 │ │ ├── GMT0 │ │ ├── Zulu │ │ ├── Greenwich │ │ └── Universal │ ├── GMT │ ├── GMT+0 │ ├── GMT-0 │ ├── GMT0 │ ├── UCT │ ├── UTC │ ├── Zulu │ ├── Africa │ │ ├── Abidjan │ │ ├── Lagos │ │ ├── Maputo │ │ ├── Bangui │ │ ├── Bissau │ │ ├── Dakar │ │ ├── Douala │ │ ├── Harare │ │ ├── Kigali │ │ ├── Kinshasa │ │ ├── Lome │ │ ├── Luanda │ │ ├── Lusaka │ │ ├── Malabo │ │ ├── Niamey │ │ ├── Asmara │ │ ├── Asmera │ │ ├── Bamako │ │ ├── Banjul │ │ ├── Blantyre │ │ ├── Bujumbura │ │ ├── Conakry │ │ ├── Gaborone │ │ ├── Juba │ │ ├── Kampala │ │ ├── Libreville │ │ ├── Porto-Novo │ │ ├── Brazzaville │ │ ├── Djibouti │ │ ├── Freetown │ │ ├── Lubumbashi │ │ ├── Mogadishu │ │ ├── Nouakchott │ │ ├── Sao_Tome │ │ ├── Timbuktu │ │ ├── Addis_Ababa │ │ ├── Ouagadougou │ │ ├── Dar_es_Salaam │ │ ├── Maseru │ │ └── Mbabane │ ├── Asia │ │ ├── Dubai │ │ ├── Riyadh │ │ ├── Urumqi │ │ ├── Aden │ │ ├── Dacca │ │ ├── Macao │ │ ├── Bahrain │ │ ├── Kuwait │ │ ├── Muscat │ │ ├── Harbin │ │ ├── Kashgar │ │ ├── Thimbu │ │ ├── Calcutta │ │ ├── Kabul │ │ ├── Phnom_Penh │ │ ├── Qatar │ │ ├── Vientiane │ │ ├── Ashkhabad │ │ ├── Bangkok │ │ ├── Brunei │ │ ├── Chongqing │ │ ├── Chungking │ │ ├── Istanbul │ │ ├── Katmandu │ │ ├── Saigon │ │ ├── Tel_Aviv │ │ ├── Thimphu │ │ ├── Kathmandu │ │ ├── Ujung_Pandang │ │ └── Ulan_Bator │ ├── Indian │ │ ├── Cocos │ │ ├── Mahe │ │ ├── Kerguelen │ │ ├── Reunion │ │ ├── Christmas │ │ ├── Chagos │ │ ├── Comoro │ │ ├── Mayotte │ │ ├── Maldives │ │ └── Antananarivo │ ├── ROK │ ├── Antarctica │ │ ├── Syowa │ │ ├── Rothera │ │ ├── Vostok │ │ ├── Mawson │ │ ├── McMurdo │ │ └── South_Pole │ ├── Greenwich │ ├── Iran │ ├── Japan │ ├── Pacific │ │ ├── Chuuk │ │ ├── Palau │ │ ├── Tarawa │ │ ├── Wake │ │ ├── Wallis │ │ ├── Funafuti │ │ ├── Gambier │ │ ├── Pohnpei │ │ ├── Tahiti │ │ ├── Guadalcanal │ │ ├── Marquesas │ │ ├── Yap │ │ ├── Saipan │ │ ├── Truk │ │ ├── Majuro │ │ ├── Ponape │ │ ├── Fakaofo │ │ ├── Johnston │ │ ├── Midway │ │ ├── Pitcairn │ │ ├── Samoa │ │ ├── Galapagos │ │ └── Port_Moresby │ ├── ROC │ ├── Universal │ ├── Egypt │ ├── GB │ ├── PRC │ ├── Cuba │ ├── Eire │ ├── Poland │ ├── W-SU │ ├── America │ │ ├── Port_of_Spain │ │ ├── Atka │ │ ├── Aruba │ │ ├── Shiprock │ │ ├── Cayenne │ │ ├── Curacao │ │ ├── Ensenada │ │ ├── Kralendijk │ │ ├── Montreal │ │ ├── Panama │ │ ├── Guayaquil │ │ ├── Coral_Harbour │ │ ├── Knox_IN │ │ ├── Lower_Princes │ │ ├── Porto_Acre │ │ └── Virgin │ ├── Atlantic │ │ ├── South_Georgia │ │ ├── Jan_Mayen │ │ ├── Faeroe │ │ └── St_Helena │ ├── GB-Eire │ ├── Israel │ ├── Libya │ ├── NZ │ ├── Navajo │ ├── Portugal │ ├── Europe │ │ ├── Vatican │ │ ├── Jersey │ │ ├── Nicosia │ │ ├── Vaduz │ │ ├── Belfast │ │ ├── Busingen │ │ ├── Guernsey │ │ ├── San_Marino │ │ ├── Skopje │ │ ├── Zagreb │ │ ├── Bratislava │ │ ├── Isle_of_Man │ │ ├── Sarajevo │ │ ├── Tiraspol │ │ ├── Ljubljana │ │ ├── Mariehamn │ │ └── Podgorica │ ├── Hongkong │ ├── Jamaica │ ├── NZ-CHAT │ ├── Singapore │ ├── Turkey │ ├── US │ │ ├── Aleutian │ │ ├── Arizona │ │ ├── Central │ │ ├── Hawaii │ │ ├── Mountain │ │ ├── Alaska │ │ ├── Eastern │ │ ├── Michigan │ │ ├── Samoa │ │ ├── Pacific │ │ └── Pacific-New │ ├── Brazil │ │ ├── West │ │ ├── Acre │ │ ├── East │ │ └── DeNoronha │ ├── Arctic │ │ └── Longyearbyen │ ├── Iceland │ ├── Kwajalein │ ├── SystemV │ │ ├── CST6 │ │ ├── MST7 │ │ ├── MST7MDT │ │ ├── PST8 │ │ ├── YST9 │ │ ├── AST4ADT │ │ ├── CST6CDT │ │ ├── EST5EDT │ │ ├── HST10 │ │ ├── AST4 │ │ ├── YST9YDT │ │ └── EST5 │ ├── Australia │ │ ├── ACT │ │ ├── NSW │ │ ├── West │ │ ├── North │ │ ├── Canberra │ │ ├── LHI │ │ ├── South │ │ └── Tasmania │ ├── Canada │ │ ├── Atlantic │ │ ├── Central │ │ ├── Eastern │ │ ├── Mountain │ │ ├── Pacific │ │ ├── Saskatchewan │ │ ├── Yukon │ │ ├── Newfoundland │ │ └── East-Saskatchewan │ ├── Mexico │ │ ├── BajaSur │ │ ├── BajaNorte │ │ └── General │ └── Chile │ │ ├── EasterIsland │ │ └── Continental │ └── encoding │ └── iso2022-kr.enc └── requirements.txt /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /targets/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler_logs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rules/disabled/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/disabled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/no-global-site-packages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/orig-prefix.txt: -------------------------------------------------------------------------------- 1 | D:\ProgramData\Anaconda2 -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/crt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/six-1.16.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/wheel/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli-1.19.112.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/gevent-21.12.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/grequests-0.6.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pymongo-3.12.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests-2.27.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/rsa-4.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3-1.26.7.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyYAML-5.4.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/beautifulsoup4-4.9.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/cffi-1.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna-2.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-20.3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/py2_ipaddress-3.4.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1-0.4.8.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1-0.4.8.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/rsa-4.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | rsa 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/six-1.16.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/wheel-0.37.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/wheel/vendored/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli-1.19.112.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore-1.20.112.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi-2021.10.8.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet-4.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama-0.4.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/docutils-0.15.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/futures-3.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/gevent-21.12.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/greenlet-1.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/grequests-0.6.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna-2.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/jmespath-0.10.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-20.3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/py2_ipaddress-3.4.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pycparser-2.21.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pymongo-3.12.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/python_dateutil-2.8.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests-2.27.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/s3transfer-0.4.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-44.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-44.1.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/six-1.16.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/soupsieve-1.9.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3-1.26.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/wheel/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.37.1' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/zope.event-4.5.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli-1.19.112.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | awscli 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/beautifulsoup4-4.9.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet-4.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/gevent-21.12.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | gevent 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/py2_ipaddress-3.4.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1-0.4.8.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyasn1 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/python_dateutil-2.8.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3-1.26.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/wheel-0.37.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/zope.event-4.5.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | zope 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/zope.interface-5.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyYAML-5.4.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _yaml 2 | yaml 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/beautifulsoup4-4.9.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | bs4 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore-1.20.112.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | botocore 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi-2021.10.8.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama-0.4.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | colorama 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/docutils-0.15.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docutils 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/futures-3.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | concurrent 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/greenlet-1.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | greenlet 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/grequests-0.6.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | grequests 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/jmespath-0.10.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jmespath 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pycparser-2.21.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pycparser 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests-2.27.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/s3transfer-0.4.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | s3transfer 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/soupsieve-1.9.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | soupsieve 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/zope.interface-5.4.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | zope 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/py2_ipaddress-3.4.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ipaddress 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/python_dateutil-2.8.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dateutil 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/zope.event-4.5.0.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | zope 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/backports.functools_lru_cache-1.6.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/cffi-1.15.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _cffi_backend 2 | cffi 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/zope.interface-5.4.0.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | zope 2 | -------------------------------------------------------------------------------- /scripts/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | 请将你编写的脚本置于这个文件夹中 3 | 4 | Place your scripts in this folder 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pymongo-3.12.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | bson 2 | gridfs 3 | pymongo 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/backports.functools_lru_cache-1.6.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | backports 2 | -------------------------------------------------------------------------------- /venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/ce/2017-10-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/pi/2018-02-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Scripts/pip2.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/pip2.7.exe -------------------------------------------------------------------------------- /venv/Scripts/pip2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/pip2.exe -------------------------------------------------------------------------------- /venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/python.exe -------------------------------------------------------------------------------- /venv/Scripts/wheel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/wheel.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/appflow/2020-08-23/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/backup/2018-11-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/dlm/2018-01-12/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/ebs/2019-11-02/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/fis/2020-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/kendra/2019-02-03/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/qldb/2019-01-02/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/sesv2/2019-09-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/sts/2011-06-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/wafv2/2019-07-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/dateutil/tzwin.py: -------------------------------------------------------------------------------- 1 | # tzwin has moved to dateutil.tz.win 2 | from .tz.win import * 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /venv/Scripts/python27.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/python27.dll -------------------------------------------------------------------------------- /venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /venv/tcl/tk8.5/msgs/en_gb.msg: -------------------------------------------------------------------------------- 1 | namespace eval ::tk { 2 | ::msgcat::mcset en_gb Color Colour 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/appconfig/2019-10-09/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/apprunner/2020-05-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/auditmanager/2017-07-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/cloudsearch/2013-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/cognito-sync/2014-06-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/detective/2018-10-26/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/finspace/2021-03-12/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/firehose/2015-08-04/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/healthlake/2017-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/imagebuilder/2019-12-02/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/iot-data/2015-05-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/iotevents/2018-07-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/iotwireless/2020-11-22/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/lex-runtime/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/lexv2-models/2020-08-07/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/outposts/2019-12-03/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/qldb-session/2019-07-11/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/rds-data/2018-08-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/savingsplans/2019-06-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/sso-oidc/2019-06-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/synthetics/2017-10-11/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/textract/2018-06-27/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/transcribe/2017-10-26/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/waf-regional/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/worklink/2018-09-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1/codec/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is necessary to make this directory a package. 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1/compat/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is necessary to make this directory a package. 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1/type/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is necessary to make this directory a package. 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.7" 3 | -------------------------------------------------------------------------------- /venv/Scripts/chardetect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/chardetect.exe -------------------------------------------------------------------------------- /venv/Scripts/pyrsa-sign.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/pyrsa-sign.exe -------------------------------------------------------------------------------- /venv/Lib/encodings/punycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Lib/encodings/punycode.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/appintegrations/2020-07-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/comprehendmedical/2018-10-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/compute-optimizer/2019-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/customer-profiles/2020-08-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/dynamodbstreams/2012-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/finspace-data/2020-07-13/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/forecastquery/2018-06-26/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/frauddetector/2019-11-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/identitystore/2020-06-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/iot-jobs-data/2017-09-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/iotdeviceadvisor/2020-09-18/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/iotevents-data/2018-10-23/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/kinesisanalytics/2015-08-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/lakeformation/2017-03-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/lexv2-runtime/2020-08-07/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/lookoutequipment/2020-12-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/lookoutmetrics/2017-07-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/managedblockchain/2018-09-24/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/sagemaker-edge/2020-09-23/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/sagemaker-runtime/2017-05-13/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/timestream-write/2018-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/wellarchitected/2020-03-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.10.08" 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1/codec/ber/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is necessary to make this directory a package. 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1/codec/cer/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is necessary to make this directory a package. 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1/codec/der/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is necessary to make this directory a package. 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1/codec/native/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is necessary to make this directory a package. 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-44.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /venv/Scripts/pyrsa-decrypt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/pyrsa-decrypt.exe -------------------------------------------------------------------------------- /venv/Scripts/pyrsa-encrypt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/pyrsa-encrypt.exe -------------------------------------------------------------------------------- /venv/Scripts/pyrsa-keygen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/pyrsa-keygen.exe -------------------------------------------------------------------------------- /venv/Scripts/pyrsa-verify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/pyrsa-verify.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/application-insights/2018-11-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/codestar-connections/2019-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/connect-contact-lens/2020-08-21/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/connectparticipant/2018-09-07/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/ec2-instance-connect/2018-04-02/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/iotsecuretunneling/2018-10-05/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/kinesis-video-media/2017-09-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/marketplace-catalog/2018-09-17/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/meteringmarketplace/2016-01-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/migrationhub-config/2019-06-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/personalize-events/2018-03-22/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/personalize-runtime/2018-05-22/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/workmailmessageflow/2019-05-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/docutils/writers/s5_html/themes/big-black/__base__: -------------------------------------------------------------------------------- 1 | # base theme of this theme: 2 | big-white 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/docutils/writers/s5_html/themes/small-black/__base__: -------------------------------------------------------------------------------- 1 | # base theme of this theme: 2 | small-white 3 | -------------------------------------------------------------------------------- /venv/Scripts/easy_install-2.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/easy_install-2.7.exe -------------------------------------------------------------------------------- /venv/Scripts/pyrsa-priv2pub.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Scripts/pyrsa-priv2pub.exe -------------------------------------------------------------------------------- /venv/tcl/tk8.5/images/logo100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/images/logo100.gif -------------------------------------------------------------------------------- /venv/tcl/tk8.5/images/logo64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/images/logo64.gif -------------------------------------------------------------------------------- /venv/tcl/tk8.5/images/logoMed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/images/logoMed.gif -------------------------------------------------------------------------------- /venv/tcl/tk8.5/images/tai-ku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/images/tai-ku.gif -------------------------------------------------------------------------------- /venv/Lib/encodings/string_escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Lib/encodings/string_escape.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/apigatewaymanagementapi/2018-11-29/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/kinesis-video-signaling/2019-12-04/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/docutils/writers/s5_html/themes/medium-black/__base__: -------------------------------------------------------------------------------- 1 | # base theme of this theme: 2 | medium-white 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.11.08" 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.2" 3 | -------------------------------------------------------------------------------- /venv/tcl/tk8.5/images/logoLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/images/logoLarge.gif -------------------------------------------------------------------------------- /venv/Lib/site-packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | __path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/acm-pca/2017-08-22/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version":"1.0", 3 | "examples":{ 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/acm/2015-12-08/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/ce/2017-10-25/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/cur/2017-01-06/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/dax/2017-04-19/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/dlm/2018-01-12/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/ds/2015-04-16/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/emr/2009-03-31/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/es/2015-01-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/fms/2018-01-01/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/glue/2017-03-31/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/iot/2015-05-28/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/logs/2014-03-28/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/macie/2017-12-19/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version":"1.0", 3 | "examples":{ 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/mgh/2017-05-31/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/mturk/2017-01-17/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/neptune/2014-10-31/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version":"1.0", 3 | "examples":{ 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/pi/2018-02-27/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/sagemaker-featurestore-runtime/2020-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/sms/2016-10-24/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/sns/2010-03-31/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/sqs/2012-11-05/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/ssm/2014-11-06/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/swf/2012-01-25/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/xray/2016-04-12/examples-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "examples": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | from pkgutil import extend_path 2 | 3 | __path__ = extend_path(__path__, __name__) 4 | -------------------------------------------------------------------------------- /venv/tcl/tk8.5/demos/images/earth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/demos/images/earth.gif -------------------------------------------------------------------------------- /venv/tcl/tk8.5/demos/images/teapot.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/demos/images/teapot.ppm -------------------------------------------------------------------------------- /venv/tcl/tk8.5/images/pwrdLogo100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/images/pwrdLogo100.gif -------------------------------------------------------------------------------- /venv/tcl/tk8.5/images/pwrdLogo150.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/images/pwrdLogo150.gif -------------------------------------------------------------------------------- /venv/tcl/tk8.5/images/pwrdLogo175.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/images/pwrdLogo175.gif -------------------------------------------------------------------------------- /venv/tcl/tk8.5/images/pwrdLogo200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/images/pwrdLogo200.gif -------------------------------------------------------------------------------- /venv/tcl/tk8.5/images/pwrdLogo75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/tcl/tk8.5/images/pwrdLogo75.gif -------------------------------------------------------------------------------- /rules/java_server_faces2.txt: -------------------------------------------------------------------------------- 1 | /javax.faces.resource.../WEB-INF/web.xml.jsf {status=200} {type="xml"} {tag="=4.3.2 2 | ipaddress~=1.0.23 3 | pymongo~=4.0.1 4 | requests~=2.26.0 5 | urllib3~=1.25.8 6 | gevent~=21.1.2 7 | grequests 8 | argparse~=1.4.0 9 | six~=1.15.0 -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli-1.19.112.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/delete-usage-plan.rst: -------------------------------------------------------------------------------- 1 | **To delete a Usage Plan** 2 | 3 | Command:: 4 | 5 | aws apigateway delete-usage-plan --usage-plan-id a1b2c3 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet-4.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.35.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/colorama-0.4.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Lib/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz -------------------------------------------------------------------------------- /venv/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- 1 | """Run the EasyInstall command""" 2 | 3 | if __name__ == '__main__': 4 | from setuptools.command.easy_install import main 5 | main() 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/jmespath-0.10.0.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 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1-0.4.8.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pycparser-2.21.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests-2.27.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/soupsieve-1.9.6.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3-1.26.7.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/wheel-0.37.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/logs/create-log-group.rst: -------------------------------------------------------------------------------- 1 | The following command creates a log group named ``my-logs``:: 2 | 3 | aws logs create-log-group --log-group-name my-logs 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/logs/delete-log-group.rst: -------------------------------------------------------------------------------- 1 | The following command deletes a log group named ``my-logs``:: 2 | 3 | aws logs delete-log-group --log-group-name my-logs 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore-1.20.112.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi-2021.10.8.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.35.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie 4 | 5 | __all__ = ["Trie"] 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ("ssl_match_hostname",) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/s3transfer-0.4.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-44.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/zope.event-4.5.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.35.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/get-usage-plan.rst: -------------------------------------------------------------------------------- 1 | **To get the details of a Usage Plan** 2 | 3 | Command:: 4 | 5 | aws apigateway get-usage-plan --usage-plan-id a1b2c3 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/retries/__init__.py: -------------------------------------------------------------------------------- 1 | """New retry v2 handlers. 2 | 3 | This package obsoletes the botocore/retryhandler.py module and contains 4 | new retry logic. 5 | 6 | """ 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/python_dateutil-2.8.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/wheel-0.37.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | wheel = wheel.cli:main 3 | 4 | [distutils.commands] 5 | bdist_wheel = wheel.bdist_wheel:bdist_wheel 6 | 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/GMT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/GMT+0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT+0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/GMT-0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT-0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/GMT0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/UCT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UCT)]} { 3 | LoadTimeZoneFile Etc/UCT 4 | } 5 | set TZData(:UCT) $TZData(:Etc/UCT) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/UTC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:UTC) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Zulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Zulu) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/s3api/delete-bucket.rst: -------------------------------------------------------------------------------- 1 | The following command deletes a bucket named ``my-bucket``:: 2 | 3 | aws s3api delete-bucket --bucket my-bucket --region us-east-1 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/docutils/writers/s5_html/themes/default/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiuluo-oss/BBScan_py3/HEAD/venv/Lib/site-packages/docutils/writers/s5_html/themes/default/blank.gif -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Abidjan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Abidjan) { 4 | {-9223372036854775808 -968 0 LMT} 5 | {-1830383032 0 0 GMT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Lagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Lagos) { 4 | {-9223372036854775808 816 0 LMT} 5 | {-1588464816 3600 0 WAT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Maputo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Maputo) { 4 | {-9223372036854775808 7820 0 LMT} 5 | {-2109291020 7200 0 CAT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Dubai: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Dubai) { 4 | {-9223372036854775808 13272 0 LMT} 5 | {-1577936472 14400 0 GST} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Riyadh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Riyadh) { 4 | {-9223372036854775808 11212 0 LMT} 5 | {-719636812 10800 0 AST} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Urumqi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Urumqi) { 4 | {-9223372036854775808 21020 0 LMT} 5 | {-1325483420 21600 0 XJT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Indian/Cocos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Cocos) { 4 | {-9223372036854775808 23260 0 LMT} 5 | {-2209012060 23400 0 CCT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Indian/Mahe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Mahe) { 4 | {-9223372036854775808 13308 0 LMT} 5 | {-2006653308 14400 0 SCT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/ROK: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Seoul)]} { 3 | LoadTimeZoneFile Asia/Seoul 4 | } 5 | set TZData(:ROK) $TZData(:Asia/Seoul) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/delete-api-key.rst: -------------------------------------------------------------------------------- 1 | **To delete an API key** 2 | 3 | Command:: 4 | 5 | aws apigateway delete-api-key --api-key 8bklk8bl1k3sB38D9B3l0enyWT8c09B30lkq0blk 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/delete-domain-name.rst: -------------------------------------------------------------------------------- 1 | **To delete a custom domain name** 2 | 3 | Command:: 4 | 5 | aws apigateway delete-domain-name --domain-name 'api.domain.tld' 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/delete-stage.rst: -------------------------------------------------------------------------------- 1 | **To delete a stage in an API** 2 | 3 | Command:: 4 | 5 | aws apigateway delete-stage --rest-api-id 1234123412 --stage-name 'dev' 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/backports.functools_lru_cache-1.6.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/dateutil/_version.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | # file generated by setuptools_scm 3 | # don't change, don't track in version control 4 | version = '2.8.2' 5 | version_tuple = (2, 8, 2) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/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 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-20.3.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal.cli.main:main 3 | pip3 = pip._internal.cli.main:main 4 | pip3.8 = pip._internal.cli.main:main 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.9.1' 5 | 6 | from .wrappers import * # noqa: F401, F403 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Antarctica/Syowa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Syowa) { 4 | {-9223372036854775808 0 0 zzz} 5 | {-407808000 10800 0 SYOT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT+0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT-0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Etc/GMT0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Etc/Zulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/Zulu) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Greenwich: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Greenwich) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Indian/Kerguelen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Kerguelen) { 4 | {-9223372036854775808 0 0 zzz} 5 | {-631152000 18000 0 TFT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Indian/Reunion: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Reunion) { 4 | {-9223372036854775808 13312 0 LMT} 5 | {-1848886912 14400 0 RET} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Iran: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Tehran)]} { 3 | LoadTimeZoneFile Asia/Tehran 4 | } 5 | set TZData(:Iran) $TZData(:Asia/Tehran) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Japan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Tokyo)]} { 3 | LoadTimeZoneFile Asia/Tokyo 4 | } 5 | set TZData(:Japan) $TZData(:Asia/Tokyo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Chuuk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Chuuk) { 4 | {-9223372036854775808 36428 0 LMT} 5 | {-2177489228 36000 0 CHUT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Palau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Palau) { 4 | {-9223372036854775808 32276 0 LMT} 5 | {-2177485076 32400 0 PWT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Tarawa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tarawa) { 4 | {-9223372036854775808 41524 0 LMT} 5 | {-2177494324 43200 0 GILT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Wake: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Wake) { 4 | {-9223372036854775808 39988 0 LMT} 5 | {-2177492788 43200 0 WAKT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Wallis: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Wallis) { 4 | {-9223372036854775808 44120 0 LMT} 5 | {-2177496920 43200 0 WFT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/ROC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Taipei)]} { 3 | LoadTimeZoneFile Asia/Taipei 4 | } 5 | set TZData(:ROC) $TZData(:Asia/Taipei) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Universal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Universal) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/get-client-certificate.rst: -------------------------------------------------------------------------------- 1 | **To get a client certificate** 2 | 3 | Command:: 4 | 5 | aws apigateway get-client-certificate --client-certificate-id a1b2c3 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/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 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | 3 | try: 4 | __version__ = pkg_resources.get_distribution('setuptools').version 5 | except Exception: 6 | __version__ = 'unknown' 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Antarctica/Rothera: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Rothera) { 4 | {-9223372036854775808 0 0 zzz} 5 | {218246400 -10800 0 ROTT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Antarctica/Vostok: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Vostok) { 4 | {-9223372036854775808 0 0 zzz} 5 | {-380073600 21600 0 VOST} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Egypt: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Cairo)]} { 3 | LoadTimeZoneFile Africa/Cairo 4 | } 5 | set TZData(:Egypt) $TZData(:Africa/Cairo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/GB: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:GB) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Indian/Christmas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Christmas) { 4 | {-9223372036854775808 25372 0 LMT} 5 | {-2364102172 25200 0 CXT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/PRC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:PRC) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Funafuti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Funafuti) { 4 | {-9223372036854775808 43012 0 LMT} 5 | {-2177495812 43200 0 TVT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Gambier: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Gambier) { 4 | {-9223372036854775808 -32388 0 LMT} 5 | {-1806678012 -32400 0 GAMT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Pohnpei: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pohnpei) { 4 | {-9223372036854775808 37972 0 LMT} 5 | {-2177490772 39600 0 PONT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Tahiti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tahiti) { 4 | {-9223372036854775808 -35896 0 LMT} 5 | {-1806674504 -36000 0 TAHT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/delete-resource.rst: -------------------------------------------------------------------------------- 1 | **To delete a resource in an API** 2 | 3 | Command:: 4 | 5 | aws apigateway delete-resource --rest-api-id 1234123412 --resource-id a1b2c3 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/ec2/describe-elastic-gpus.rst: -------------------------------------------------------------------------------- 1 | **To describe an Elastic GPU** 2 | 3 | Command:: 4 | 5 | aws ec2 describe-elastic-gpus --elastic-gpu-ids egpu-12345678901234567890abcdefghijkl -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/s3api/delete-bucket-policy.rst: -------------------------------------------------------------------------------- 1 | The following command deletes a bucket policy from a bucket named ``my-bucket``:: 2 | 3 | aws s3api delete-bucket-policy --bucket my-bucket 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/eks/2017-11-01/service-2.sdk-extras.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1.0, 3 | "merge": { 4 | "metadata": { 5 | "serviceId":"EKS" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/greenlet/platform/setup_switch_x64_masm.cmd: -------------------------------------------------------------------------------- 1 | call "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" amd64 2 | ml64 /nologo /c /Fo switch_x64_masm.obj switch_x64_masm.asm 3 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Aden: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Asia/Aden) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Dacca: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Dhaka)]} { 3 | LoadTimeZoneFile Asia/Dhaka 4 | } 5 | set TZData(:Asia/Dacca) $TZData(:Asia/Dhaka) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Macao: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Macau)]} { 3 | LoadTimeZoneFile Asia/Macau 4 | } 5 | set TZData(:Asia/Macao) $TZData(:Asia/Macau) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Cuba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Havana)]} { 3 | LoadTimeZoneFile America/Havana 4 | } 5 | set TZData(:Cuba) $TZData(:America/Havana) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Eire: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Dublin)]} { 3 | LoadTimeZoneFile Europe/Dublin 4 | } 5 | set TZData(:Eire) $TZData(:Europe/Dublin) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Etc/Greenwich: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/Greenwich) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Etc/Universal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/Universal) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Guadalcanal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Guadalcanal) { 4 | {-9223372036854775808 38388 0 LMT} 5 | {-1806748788 39600 0 SBT} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Marquesas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Marquesas) { 4 | {-9223372036854775808 -33480 0 LMT} 5 | {-1806676920 -34200 0 MART} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Poland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Warsaw)]} { 3 | LoadTimeZoneFile Europe/Warsaw 4 | } 5 | set TZData(:Poland) $TZData(:Europe/Warsaw) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/W-SU: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Moscow)]} { 3 | LoadTimeZoneFile Europe/Moscow 4 | } 5 | set TZData(:W-SU) $TZData(:Europe/Moscow) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/delete-client-certificate.rst: -------------------------------------------------------------------------------- 1 | **To delete a client certificate** 2 | 3 | Command:: 4 | 5 | aws apigateway delete-client-certificate --client-certificate-id a1b2c3 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/delete-deployment.rst: -------------------------------------------------------------------------------- 1 | **To delete a deployment in an API** 2 | 3 | Command:: 4 | 5 | aws apigateway delete-deployment --rest-api-id 1234123412 --deployment-id a1b2c3 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/delete-model.rst: -------------------------------------------------------------------------------- 1 | **To delete a model in the given API** 2 | 3 | Command:: 4 | 5 | aws apigateway delete-model --rest-api-id 1234123412 --model-name 'customModel' 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/flush-stage-cache.rst: -------------------------------------------------------------------------------- 1 | **To flush the cache for an API's stage** 2 | 3 | Command:: 4 | 5 | aws apigateway flush-stage-cache --rest-api-id 1234123412 --stage-name dev 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/batch/delete-job-queue.rst: -------------------------------------------------------------------------------- 1 | **To delete a job queue** 2 | 3 | This example deletes the GPGPU job queue. 4 | 5 | Command:: 6 | 7 | aws batch delete-job-queue --job-queue GPGPU 8 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/cognito-idp/delete-user.rst: -------------------------------------------------------------------------------- 1 | **To delete a user** 2 | 3 | This example deletes a user. 4 | 5 | Command:: 6 | 7 | aws cognito-idp delete-user --access-token ACCESS_TOKEN 8 | 9 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/emr/list-steps.rst: -------------------------------------------------------------------------------- 1 | The following command lists all of the steps in a cluster with the cluster ID ``j-3SD91U2E1L2QX``:: 2 | 3 | aws emr list-steps --cluster-id j-3SD91U2E1L2QX 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py: -------------------------------------------------------------------------------- 1 | __all__ = ["Sequence"] 2 | 3 | try: 4 | from collections.abc import Sequence 5 | except ImportError: 6 | from collections import Sequence 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Port_of_Spain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Port_of_Spain) { 4 | {-9223372036854775808 -14764 0 LMT} 5 | {-1825098836 -14400 0 AST} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Bahrain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Qatar)]} { 3 | LoadTimeZoneFile Asia/Qatar 4 | } 5 | set TZData(:Asia/Bahrain) $TZData(:Asia/Qatar) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Kuwait: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Asia/Kuwait) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Muscat: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Dubai)]} { 3 | LoadTimeZoneFile Asia/Dubai 4 | } 5 | set TZData(:Asia/Muscat) $TZData(:Asia/Dubai) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Atlantic/South_Georgia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Atlantic/South_Georgia) { 4 | {-9223372036854775808 -8768 0 LMT} 5 | {-2524512832 -7200 0 GST} 6 | } 7 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/GB-Eire: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:GB-Eire) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Israel: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Jerusalem)]} { 3 | LoadTimeZoneFile Asia/Jerusalem 4 | } 5 | set TZData(:Israel) $TZData(:Asia/Jerusalem) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Libya: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Tripoli)]} { 3 | LoadTimeZoneFile Africa/Tripoli 4 | } 5 | set TZData(:Libya) $TZData(:Africa/Tripoli) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/NZ: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:NZ) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Navajo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:Navajo) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Portugal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Lisbon)]} { 3 | LoadTimeZoneFile Europe/Lisbon 4 | } 5 | set TZData(:Portugal) $TZData(:Europe/Lisbon) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/get-usage-plan-keys.rst: -------------------------------------------------------------------------------- 1 | **To get the list of API keys associated with a Usage Plan** 2 | 3 | Command:: 4 | 5 | aws apigateway get-usage-plan-keys --usage-plan-id a1b2c3 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/emr/wait.rst: -------------------------------------------------------------------------------- 1 | The following command waits until a cluster with the cluster ID ``j-3SD91U2E1L2QX`` is up and running:: 2 | 3 | aws emr wait cluster-running --cluster-id j-3SD91U2E1L2QX 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/s3api/delete-bucket-tagging.rst: -------------------------------------------------------------------------------- 1 | The following command deletes a tagging configuration from a bucket named ``my-bucket``:: 2 | 3 | aws s3api delete-bucket-tagging --bucket my-bucket 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/s3api/delete-bucket-website.rst: -------------------------------------------------------------------------------- 1 | The following command deletes a website configuration from a bucket named ``my-bucket``:: 2 | 3 | aws s3api delete-bucket-website --bucket my-bucket 4 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Atka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Adak)]} { 3 | LoadTimeZoneFile America/Adak 4 | } 5 | set TZData(:America/Atka) $TZData(:America/Adak) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Harbin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Harbin) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Kashgar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Urumqi)]} { 3 | LoadTimeZoneFile Asia/Urumqi 4 | } 5 | set TZData(:Asia/Kashgar) $TZData(:Asia/Urumqi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Thimbu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Thimphu)]} { 3 | LoadTimeZoneFile Asia/Thimphu 4 | } 5 | set TZData(:Asia/Thimbu) $TZData(:Asia/Thimphu) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Vatican: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Rome)]} { 3 | LoadTimeZoneFile Europe/Rome 4 | } 5 | set TZData(:Europe/Vatican) $TZData(:Europe/Rome) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Hongkong: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Hong_Kong)]} { 3 | LoadTimeZoneFile Asia/Hong_Kong 4 | } 5 | set TZData(:Hongkong) $TZData(:Asia/Hong_Kong) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Jamaica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Jamaica)]} { 3 | LoadTimeZoneFile America/Jamaica 4 | } 5 | set TZData(:Jamaica) $TZData(:America/Jamaica) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/NZ-CHAT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chatham)]} { 3 | LoadTimeZoneFile Pacific/Chatham 4 | } 5 | set TZData(:NZ-CHAT) $TZData(:Pacific/Chatham) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Yap: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chuuk)]} { 3 | LoadTimeZoneFile Pacific/Chuuk 4 | } 5 | set TZData(:Pacific/Yap) $TZData(:Pacific/Chuuk) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Singapore: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Singapore)]} { 3 | LoadTimeZoneFile Asia/Singapore 4 | } 5 | set TZData(:Singapore) $TZData(:Asia/Singapore) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Turkey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Istanbul)]} { 3 | LoadTimeZoneFile Europe/Istanbul 4 | } 5 | set TZData(:Turkey) $TZData(:Europe/Istanbul) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Aleutian: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Adak)]} { 3 | LoadTimeZoneFile America/Adak 4 | } 5 | set TZData(:US/Aleutian) $TZData(:America/Adak) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/delete-authorizer.rst: -------------------------------------------------------------------------------- 1 | **To delete a Custom Authorizer in an API** 2 | 3 | Command:: 4 | 5 | aws apigateway delete-authorizer --rest-api-id 1234123412 --authorizer-id 7gkfbo 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/cloudtrail/delete-trail.rst: -------------------------------------------------------------------------------- 1 | **To delete a trail** 2 | 3 | The following ``delete-trail`` command deletes a trail named ``Trail1``:: 4 | 5 | aws cloudtrail delete-trail --name Trail1 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/s3api/delete-bucket-lifecycle.rst: -------------------------------------------------------------------------------- 1 | The following command deletes a lifecycle configuration from a bucket named ``my-bucket``:: 2 | 3 | aws s3api delete-bucket-lifecycle --bucket my-bucket 4 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Bangui: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Bangui) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Bissau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Bissau) { 4 | {-9223372036854775808 -3740 0 LMT} 5 | {-1830380260 -3600 0 WAT} 6 | {157770000 0 0 GMT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Dakar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Dakar) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Douala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Douala) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Harare: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Harare) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Kigali: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Kigali) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Kinshasa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Kinshasa) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Lome: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Lome) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Luanda: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Luanda) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Lusaka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Lusaka) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Malabo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Malabo) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Niamey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Niamey) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Calcutta: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Kolkata)]} { 3 | LoadTimeZoneFile Asia/Kolkata 4 | } 5 | set TZData(:Asia/Calcutta) $TZData(:Asia/Kolkata) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Kabul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kabul) { 4 | {-9223372036854775808 16608 0 LMT} 5 | {-2524538208 14400 0 AFT} 6 | {-788932800 16200 0 AFT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Phnom_Penh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Bangkok)]} { 3 | LoadTimeZoneFile Asia/Bangkok 4 | } 5 | set TZData(:Asia/Phnom_Penh) $TZData(:Asia/Bangkok) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Qatar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Qatar) { 4 | {-9223372036854775808 12368 0 LMT} 5 | {-1577935568 14400 0 GST} 6 | {76190400 10800 0 AST} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Vientiane: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Bangkok)]} { 3 | LoadTimeZoneFile Asia/Bangkok 4 | } 5 | set TZData(:Asia/Vientiane) $TZData(:Asia/Bangkok) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Brazil/West: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Manaus)]} { 3 | LoadTimeZoneFile America/Manaus 4 | } 5 | set TZData(:Brazil/West) $TZData(:America/Manaus) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Jersey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Jersey) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Nicosia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Nicosia)]} { 3 | LoadTimeZoneFile Asia/Nicosia 4 | } 5 | set TZData(:Europe/Nicosia) $TZData(:Asia/Nicosia) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Vaduz: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Zurich)]} { 3 | LoadTimeZoneFile Europe/Zurich 4 | } 5 | set TZData(:Europe/Vaduz) $TZData(:Europe/Zurich) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Saipan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Guam)]} { 3 | LoadTimeZoneFile Pacific/Guam 4 | } 5 | set TZData(:Pacific/Saipan) $TZData(:Pacific/Guam) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Truk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chuuk)]} { 3 | LoadTimeZoneFile Pacific/Chuuk 4 | } 5 | set TZData(:Pacific/Truk) $TZData(:Pacific/Chuuk) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Arizona: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:US/Arizona) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Central: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Chicago)]} { 3 | LoadTimeZoneFile America/Chicago 4 | } 5 | set TZData(:US/Central) $TZData(:America/Chicago) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Hawaii: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:US/Hawaii) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Mountain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:US/Mountain) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/import-rest-api.rst: -------------------------------------------------------------------------------- 1 | **To import a Swagger template and create an API** 2 | 3 | Command:: 4 | 5 | aws apigateway import-rest-api --body 'file:///path/to/API_Swagger_template.json' 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/cloudtrail/stop-logging.rst: -------------------------------------------------------------------------------- 1 | **To stop logging a trail** 2 | 3 | The following ``stop-logging`` command turns off logging for ``Trail1``:: 4 | 5 | aws cloudtrail stop-logging --name Trail1 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/datapipeline/delete-pipeline.rst: -------------------------------------------------------------------------------- 1 | **To delete a pipeline** 2 | 3 | This example deletes the specified pipeline:: 4 | 5 | aws datapipeline delete-pipeline --pipeline-id df-00627471SOVYZEXAMPLE 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/s3api/delete-bucket-replication.rst: -------------------------------------------------------------------------------- 1 | The following command deletes a replication configuration from a bucket named ``my-bucket``:: 2 | 3 | aws s3api delete-bucket-replication --bucket my-bucket 4 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Asmara: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Asmara) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Asmera: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Asmera) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Bamako: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Bamako) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Banjul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Banjul) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Blantyre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Blantyre) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Bujumbura: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Bujumbura) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Conakry: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Conakry) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Gaborone: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Gaborone) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Juba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Khartoum)]} { 3 | LoadTimeZoneFile Africa/Khartoum 4 | } 5 | set TZData(:Africa/Juba) $TZData(:Africa/Khartoum) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Kampala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Kampala) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Libreville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Libreville) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Porto-Novo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Porto-Novo) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Aruba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Aruba) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Arctic/Longyearbyen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Oslo)]} { 3 | LoadTimeZoneFile Europe/Oslo 4 | } 5 | set TZData(:Arctic/Longyearbyen) $TZData(:Europe/Oslo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Ashkhabad: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ashgabat)]} { 3 | LoadTimeZoneFile Asia/Ashgabat 4 | } 5 | set TZData(:Asia/Ashkhabad) $TZData(:Asia/Ashgabat) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Bangkok: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Bangkok) { 4 | {-9223372036854775808 24124 0 LMT} 5 | {-2840164924 24124 0 BMT} 6 | {-1570084924 25200 0 ICT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Brunei: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Brunei) { 4 | {-9223372036854775808 27580 0 LMT} 5 | {-1383464380 27000 0 BNT} 6 | {-1167636600 28800 0 BNT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Chongqing: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Chongqing) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Chungking: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Chungking) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Istanbul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Istanbul)]} { 3 | LoadTimeZoneFile Europe/Istanbul 4 | } 5 | set TZData(:Asia/Istanbul) $TZData(:Europe/Istanbul) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Katmandu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Kathmandu)]} { 3 | LoadTimeZoneFile Asia/Kathmandu 4 | } 5 | set TZData(:Asia/Katmandu) $TZData(:Asia/Kathmandu) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Saigon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ho_Chi_Minh)]} { 3 | LoadTimeZoneFile Asia/Ho_Chi_Minh 4 | } 5 | set TZData(:Asia/Saigon) $TZData(:Asia/Ho_Chi_Minh) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Tel_Aviv: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Jerusalem)]} { 3 | LoadTimeZoneFile Asia/Jerusalem 4 | } 5 | set TZData(:Asia/Tel_Aviv) $TZData(:Asia/Jerusalem) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Thimphu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Thimphu) { 4 | {-9223372036854775808 21516 0 LMT} 5 | {-706341516 19800 0 IST} 6 | {560025000 21600 0 BTT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Atlantic/Jan_Mayen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Oslo)]} { 3 | LoadTimeZoneFile Europe/Oslo 4 | } 5 | set TZData(:Atlantic/Jan_Mayen) $TZData(:Europe/Oslo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Belfast: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Belfast) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Busingen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Zurich)]} { 3 | LoadTimeZoneFile Europe/Zurich 4 | } 5 | set TZData(:Europe/Busingen) $TZData(:Europe/Zurich) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Guernsey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Guernsey) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/San_Marino: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Rome)]} { 3 | LoadTimeZoneFile Europe/Rome 4 | } 5 | set TZData(:Europe/San_Marino) $TZData(:Europe/Rome) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Skopje: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Skopje) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Zagreb: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Zagreb) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Iceland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Atlantic/Reykjavik)]} { 3 | LoadTimeZoneFile Atlantic/Reykjavik 4 | } 5 | set TZData(:Iceland) $TZData(:Atlantic/Reykjavik) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Indian/Chagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Chagos) { 4 | {-9223372036854775808 17380 0 LMT} 5 | {-1988167780 18000 0 IOT} 6 | {820436400 21600 0 IOT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Indian/Comoro: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Comoro) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Indian/Mayotte: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Mayotte) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Kwajalein: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Kwajalein)]} { 3 | LoadTimeZoneFile Pacific/Kwajalein 4 | } 5 | set TZData(:Kwajalein) $TZData(:Pacific/Kwajalein) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Majuro: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Majuro) { 4 | {-9223372036854775808 41088 0 LMT} 5 | {-2177493888 39600 0 MHT} 6 | {-7988400 43200 0 MHT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/CST6: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:SystemV/CST6) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Alaska: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Anchorage)]} { 3 | LoadTimeZoneFile America/Anchorage 4 | } 5 | set TZData(:US/Alaska) $TZData(:America/Anchorage) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Eastern: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/New_York)]} { 3 | LoadTimeZoneFile America/New_York 4 | } 5 | set TZData(:US/Eastern) $TZData(:America/New_York) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Michigan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Detroit)]} { 3 | LoadTimeZoneFile America/Detroit 4 | } 5 | set TZData(:US/Michigan) $TZData(:America/Detroit) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Samoa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:US/Samoa) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/create-resource.rst: -------------------------------------------------------------------------------- 1 | **To create a resource in an API** 2 | 3 | Command:: 4 | 5 | aws apigateway create-resource --rest-api-id 1234123412 --parent-id a1b2c3 --path-part 'new-resource' 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/get-usage.rst: -------------------------------------------------------------------------------- 1 | **To get the usage details for a Usage Plan** 2 | 3 | Command:: 4 | 5 | aws apigateway get-usage --usage-plan-id a1b2c3 --start-date "2016-08-16" --end-date "2016-08-17" 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/cloudtrail/start-logging.rst: -------------------------------------------------------------------------------- 1 | **To start logging for a trail** 2 | 3 | The following ``start-logging`` command turns on logging for ``Trail1``:: 4 | 5 | aws cloudtrail start-logging --name Trail1 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/eks/delete-cluster.rst: -------------------------------------------------------------------------------- 1 | **To delete a cluster** 2 | 3 | This example command deletes a cluster named ``devel`` in your default region. 4 | 5 | Command:: 6 | 7 | aws eks delete-cluster --name devel 8 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/events/delete-rule.rst: -------------------------------------------------------------------------------- 1 | **To delete a CloudWatch Events rule** 2 | 3 | This example deletes the rule named EC2InstanceStateChanges:: 4 | 5 | aws events delete-rule --name "EC2InstanceStateChanges" 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/s3api/delete-bucket-cors.rst: -------------------------------------------------------------------------------- 1 | The following command deletes a Cross-Origin Resource Sharing configuration from a bucket named ``my-bucket``:: 2 | 3 | aws s3api delete-bucket-cors --bucket my-bucket 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/botocore/data/secretsmanager/2017-10-17/service-2.sdk-extras.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1.0, 3 | "merge": { 4 | "metadata": { 5 | "serviceId": "Secrets Manager" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Brazzaville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Brazzaville) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Djibouti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Djibouti) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Freetown: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Freetown) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Lubumbashi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Lubumbashi) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Mogadishu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Mogadishu) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Nouakchott: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Nouakchott) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Sao_Tome: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Sao_Tome) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Timbuktu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Timbuktu) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Shiprock: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:America/Shiprock) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Antarctica/Mawson: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Mawson) { 4 | {-9223372036854775808 0 0 zzz} 5 | {-501206400 21600 0 MAWT} 6 | {1255809600 18000 0 MAWT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Kathmandu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kathmandu) { 4 | {-9223372036854775808 20476 0 LMT} 5 | {-1577943676 19800 0 IST} 6 | {504901800 20700 0 NPT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Ujung_Pandang: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Makassar)]} { 3 | LoadTimeZoneFile Asia/Makassar 4 | } 5 | set TZData(:Asia/Ujung_Pandang) $TZData(:Asia/Makassar) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Atlantic/Faeroe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Atlantic/Faroe)]} { 3 | LoadTimeZoneFile Atlantic/Faroe 4 | } 5 | set TZData(:Atlantic/Faeroe) $TZData(:Atlantic/Faroe) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Australia/ACT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/ACT) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Australia/NSW: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/NSW) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Australia/West: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Perth)]} { 3 | LoadTimeZoneFile Australia/Perth 4 | } 5 | set TZData(:Australia/West) $TZData(:Australia/Perth) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Brazil/Acre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Rio_Branco)]} { 3 | LoadTimeZoneFile America/Rio_Branco 4 | } 5 | set TZData(:Brazil/Acre) $TZData(:America/Rio_Branco) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Brazil/East: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Sao_Paulo)]} { 3 | LoadTimeZoneFile America/Sao_Paulo 4 | } 5 | set TZData(:Brazil/East) $TZData(:America/Sao_Paulo) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Canada/Atlantic: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Halifax)]} { 3 | LoadTimeZoneFile America/Halifax 4 | } 5 | set TZData(:Canada/Atlantic) $TZData(:America/Halifax) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Canada/Central: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Winnipeg)]} { 3 | LoadTimeZoneFile America/Winnipeg 4 | } 5 | set TZData(:Canada/Central) $TZData(:America/Winnipeg) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Canada/Eastern: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:Canada/Eastern) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Bratislava: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Prague)]} { 3 | LoadTimeZoneFile Europe/Prague 4 | } 5 | set TZData(:Europe/Bratislava) $TZData(:Europe/Prague) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Isle_of_Man: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Isle_of_Man) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Sarajevo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Sarajevo) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Tiraspol: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Chisinau)]} { 3 | LoadTimeZoneFile Europe/Chisinau 4 | } 5 | set TZData(:Europe/Tiraspol) $TZData(:Europe/Chisinau) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Indian/Maldives: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Maldives) { 4 | {-9223372036854775808 17640 0 LMT} 5 | {-2840158440 17640 0 MMT} 6 | {-315636840 18000 0 MVT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Mexico/BajaSur: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Mazatlan)]} { 3 | LoadTimeZoneFile America/Mazatlan 4 | } 5 | set TZData(:Mexico/BajaSur) $TZData(:America/Mazatlan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Ponape: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pohnpei)]} { 3 | LoadTimeZoneFile Pacific/Pohnpei 4 | } 5 | set TZData(:Pacific/Ponape) $TZData(:Pacific/Pohnpei) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/MST7: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:SystemV/MST7) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/MST7MDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:SystemV/MST7MDT) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/PST8: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pitcairn)]} { 3 | LoadTimeZoneFile Pacific/Pitcairn 4 | } 5 | set TZData(:SystemV/PST8) $TZData(:Pacific/Pitcairn) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/YST9: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Gambier)]} { 3 | LoadTimeZoneFile Pacific/Gambier 4 | } 5 | set TZData(:SystemV/YST9) $TZData(:Pacific/Gambier) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/generate-client-certificate.rst: -------------------------------------------------------------------------------- 1 | **To create a Client-Side SSL Certificate** 2 | 3 | Command:: 4 | 5 | aws apigateway generate-client-certificate --description 'My First Client Certificate' 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/cognito-idp/forget-device.rst: -------------------------------------------------------------------------------- 1 | **To forget a device** 2 | 3 | This example forgets device a device. 4 | 5 | Command:: 6 | 7 | aws cognito-idp forget-device --device-key us-west-2_abcd_1234-5678 8 | 9 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/logs/put-retention-policy.rst: -------------------------------------------------------------------------------- 1 | The following command adds a 5 day retention policy to a log group named ``my-logs``:: 2 | 3 | aws logs put-retention-policy --log-group-name my-logs --retention-in-days 5 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/gevent/libev/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import absolute_import 3 | from __future__ import division 4 | from __future__ import print_function 5 | 6 | # Nothing public here 7 | __all__ = [] 8 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/gevent/libuv/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import absolute_import 3 | from __future__ import division 4 | from __future__ import print_function 5 | 6 | # Nothing public here 7 | __all__ = [] 8 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyasn1/__init__.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | # https://www.python.org/dev/peps/pep-0396/ 4 | __version__ = '0.4.8' 5 | 6 | if sys.version_info[:2] < (2, 4): 7 | raise RuntimeError('PyASN1 requires Python 2.4 or later') 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Addis_Ababa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Addis_Ababa) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Ouagadougou: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Ouagadougou) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Cayenne: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Cayenne) { 4 | {-9223372036854775808 -12560 0 LMT} 5 | {-1846269040 -14400 0 GFT} 6 | {-71092800 -10800 0 GFT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Curacao: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Curacao) { 4 | {-9223372036854775808 -16547 0 LMT} 5 | {-1826738653 -16200 0 ANT} 6 | {-157750200 -14400 0 AST} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Ensenada: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:America/Ensenada) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Kralendijk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Kralendijk) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Montreal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:America/Montreal) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Panama: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Panama) { 4 | {-9223372036854775808 -19088 0 LMT} 5 | {-2524502512 -19176 0 CMT} 6 | {-1946918424 -18000 0 EST} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Asia/Ulan_Bator: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ulaanbaatar)]} { 3 | LoadTimeZoneFile Asia/Ulaanbaatar 4 | } 5 | set TZData(:Asia/Ulan_Bator) $TZData(:Asia/Ulaanbaatar) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Atlantic/St_Helena: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Atlantic/St_Helena) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Australia/North: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Darwin)]} { 3 | LoadTimeZoneFile Australia/Darwin 4 | } 5 | set TZData(:Australia/North) $TZData(:Australia/Darwin) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Brazil/DeNoronha: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Noronha)]} { 3 | LoadTimeZoneFile America/Noronha 4 | } 5 | set TZData(:Brazil/DeNoronha) $TZData(:America/Noronha) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Canada/Mountain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Edmonton)]} { 3 | LoadTimeZoneFile America/Edmonton 4 | } 5 | set TZData(:Canada/Mountain) $TZData(:America/Edmonton) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Canada/Pacific: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Vancouver)]} { 3 | LoadTimeZoneFile America/Vancouver 4 | } 5 | set TZData(:Canada/Pacific) $TZData(:America/Vancouver) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Canada/Saskatchewan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:Canada/Saskatchewan) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Canada/Yukon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Whitehorse)]} { 3 | LoadTimeZoneFile America/Whitehorse 4 | } 5 | set TZData(:Canada/Yukon) $TZData(:America/Whitehorse) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Chile/EasterIsland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Easter)]} { 3 | LoadTimeZoneFile Pacific/Easter 4 | } 5 | set TZData(:Chile/EasterIsland) $TZData(:Pacific/Easter) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Ljubljana: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Ljubljana) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Mariehamn: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Helsinki)]} { 3 | LoadTimeZoneFile Europe/Helsinki 4 | } 5 | set TZData(:Europe/Mariehamn) $TZData(:Europe/Helsinki) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Europe/Podgorica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Podgorica) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Indian/Antananarivo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Antananarivo) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Mexico/BajaNorte: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:Mexico/BajaNorte) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Fakaofo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Fakaofo) { 4 | {-9223372036854775808 -41096 0 LMT} 5 | {-2177411704 -39600 0 TKT} 6 | {1325242800 46800 0 TKT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Johnston: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:Pacific/Johnston) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Midway: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:Pacific/Midway) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Pitcairn: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pitcairn) { 4 | {-9223372036854775808 -31220 0 LMT} 5 | {-2177421580 -30600 0 PNT} 6 | {893665800 -28800 0 PST} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Samoa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:Pacific/Samoa) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/AST4ADT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Halifax)]} { 3 | LoadTimeZoneFile America/Halifax 4 | } 5 | set TZData(:SystemV/AST4ADT) $TZData(:America/Halifax) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/CST6CDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Chicago)]} { 3 | LoadTimeZoneFile America/Chicago 4 | } 5 | set TZData(:SystemV/CST6CDT) $TZData(:America/Chicago) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/EST5EDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/New_York)]} { 3 | LoadTimeZoneFile America/New_York 4 | } 5 | set TZData(:SystemV/EST5EDT) $TZData(:America/New_York) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/HST10: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:SystemV/HST10) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Pacific: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:US/Pacific) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/delete-method.rst: -------------------------------------------------------------------------------- 1 | **To delete a method for the given resource in an API** 2 | 3 | Command:: 4 | 5 | aws apigateway delete-method --rest-api-id 1234123412 --resource-id a1b2c3 --http-method GET 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/ec2/delete-vpc.rst: -------------------------------------------------------------------------------- 1 | **To delete a VPC** 2 | 3 | This example deletes the specified VPC. If the command succeeds, no output is returned. 4 | 5 | Command:: 6 | 7 | aws ec2 delete-vpc --vpc-id vpc-a01106c2 8 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/logs/create-log-stream.rst: -------------------------------------------------------------------------------- 1 | The following command creates a log stream named ``20150601`` in the log group ``my-logs``:: 2 | 3 | aws logs create-log-stream --log-group-name my-logs --log-stream-name 20150601 4 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Dar_es_Salaam: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Dar_es_Salaam) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Maseru: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Johannesburg)]} { 3 | LoadTimeZoneFile Africa/Johannesburg 4 | } 5 | set TZData(:Africa/Maseru) $TZData(:Africa/Johannesburg) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Africa/Mbabane: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Johannesburg)]} { 3 | LoadTimeZoneFile Africa/Johannesburg 4 | } 5 | set TZData(:Africa/Mbabane) $TZData(:Africa/Johannesburg) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Guayaquil: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Guayaquil) { 4 | {-9223372036854775808 -19160 0 LMT} 5 | {-2524502440 -18840 0 QMT} 6 | {-1230749160 -18000 0 ECT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Antarctica/McMurdo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:Antarctica/McMurdo) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Australia/Canberra: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/Canberra) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Australia/LHI: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Lord_Howe)]} { 3 | LoadTimeZoneFile Australia/Lord_Howe 4 | } 5 | set TZData(:Australia/LHI) $TZData(:Australia/Lord_Howe) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Australia/South: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Adelaide)]} { 3 | LoadTimeZoneFile Australia/Adelaide 4 | } 5 | set TZData(:Australia/South) $TZData(:Australia/Adelaide) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Australia/Tasmania: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Hobart)]} { 3 | LoadTimeZoneFile Australia/Hobart 4 | } 5 | set TZData(:Australia/Tasmania) $TZData(:Australia/Hobart) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Canada/Newfoundland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/St_Johns)]} { 3 | LoadTimeZoneFile America/St_Johns 4 | } 5 | set TZData(:Canada/Newfoundland) $TZData(:America/St_Johns) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Chile/Continental: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Santiago)]} { 3 | LoadTimeZoneFile America/Santiago 4 | } 5 | set TZData(:Chile/Continental) $TZData(:America/Santiago) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Mexico/General: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Mexico_City)]} { 3 | LoadTimeZoneFile America/Mexico_City 4 | } 5 | set TZData(:Mexico/General) $TZData(:America/Mexico_City) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Galapagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Galapagos) { 4 | {-9223372036854775808 -21504 0 LMT} 5 | {-1230746496 -18000 0 ECT} 6 | {504939600 -21600 0 GALT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/AST4: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:SystemV/AST4) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/YST9YDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Anchorage)]} { 3 | LoadTimeZoneFile America/Anchorage 4 | } 5 | set TZData(:SystemV/YST9YDT) $TZData(:America/Anchorage) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/US/Pacific-New: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:US/Pacific-New) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/apigateway/flush-stage-authorizers-cache.rst: -------------------------------------------------------------------------------- 1 | **To flush all authorizer cache entries on a stage** 2 | 3 | Command:: 4 | 5 | aws apigateway flush-stage-authorizers-cache --rest-api-id 1234123412 --stage-name dev 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/emr/remove-tags.rst: -------------------------------------------------------------------------------- 1 | The following command removes a tag with the key ``prod`` from a cluster with the cluster ID ``j-3SD91U2E1L2QX``:: 2 | 3 | aws emr remove-tags --resource-id j-3SD91U2E1L2QX --tag-keys prod 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/awscli/examples/logs/delete-log-stream.rst: -------------------------------------------------------------------------------- 1 | The following command deletes a log stream named ``20150531`` from a log group named ``my-logs``:: 2 | 3 | aws logs delete-log-stream --log-group-name my-logs --log-stream-name 20150531 4 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Coral_Harbour: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Atikokan)]} { 3 | LoadTimeZoneFile America/Atikokan 4 | } 5 | set TZData(:America/Coral_Harbour) $TZData(:America/Atikokan) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Knox_IN: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Knox)]} { 3 | LoadTimeZoneFile America/Indiana/Knox 4 | } 5 | set TZData(:America/Knox_IN) $TZData(:America/Indiana/Knox) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Lower_Princes: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Lower_Princes) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Porto_Acre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Rio_Branco)]} { 3 | LoadTimeZoneFile America/Rio_Branco 4 | } 5 | set TZData(:America/Porto_Acre) $TZData(:America/Rio_Branco) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/America/Virgin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Virgin) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Antarctica/South_Pole: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:Antarctica/South_Pole) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Canada/East-Saskatchewan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:Canada/East-Saskatchewan) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/Pacific/Port_Moresby: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Port_Moresby) { 4 | {-9223372036854775808 35320 0 LMT} 5 | {-2840176120 35312 0 PMMT} 6 | {-2366790512 36000 0 PGT} 7 | } 8 | -------------------------------------------------------------------------------- /venv/tcl/tcl8.5/tzdata/SystemV/EST5: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indianapolis 4 | } 5 | set TZData(:SystemV/EST5) $TZData(:America/Indianapolis) 6 | --------------------------------------------------------------------------------