This is a simple code using boto3.
To generate the key pair for EC2 here’s the simple code.
import boto3 from pprint import pprint ec2 = boto3.client('ec2') """:type : pyboto3.ec2""" keyname = input('enter a key name:') key_pair_creation_response = ec2.create_key_pair(KeyName=keyname) pprint(keyname)