Andrey Kislyuk
Andrey Kislyuk
Hi, I noticed that DendroPy disables SSL certificate verification globally in setup.py: ``` import ssl if hasattr(ssl, '_create_unverified_context'): ssl._create_default_https_context = ssl._create_unverified_context ``` It seems this workaround should no longer be...
https://pypi.org/project/ec2instanceconnectcli/
https://aws.amazon.com/blogs/compute/identifying-optimal-locations-for-flexible-workloads-with-spot-placement-score/ I tried this but it yielded identical scores for all AZs, regions, and instance types: ``` aws ec2 get-spot-placement-scores --target-capacity 1 --instance-types m5d.8xlarge --single-availability-zone ```
`git grep 169.254` `python3 -c 'import sys, botocore.utils as b; i=b.IMDSFetcher(); i._get_request(sys.argv[1], None, i._fetch_metadata_token()).text' latest/meta-data/hostname` `aegea_imds(){ python3 -c 'import sys, botocore.utils as b; i=b.IMDSFetcher(); print(i._get_request(sys.argv[1], None, i._fetch_metadata_token()).text)' $@; }`
Consider deprecating "aegea-ssh" entry point after this is in place.
Argparse parameters that are split on the first = should be specifiable as mappings in YAML. Add a uniform handler helper for these parameters. Also eliminate hardcoded defaults wherever possible.
If aws is not found, give instructions for both v1 and v2
Currently, the following works: ``` import aegea aegea.initialize() from aegea.batch import submit, submit_parser submit(submit_parser.parse_args([...])) ``` While the following does not: ``` import aegea from aegea.batch import submit, submit_parser aegea.initialize() submit(submit_parser.parse_args([...]))...