Skip to content

dang3r/aws-manifest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aws-manifest

A python package for retrieving information about aws's api manifest consisting of resources and their actions.

Getting Started

pip3 install aws-manifest

Usage

from awsmanifest import manifest, AwsManifest

# Retrieve the latest set of aws resources
m = manifest()
print(m["serviceMap"]["Amazon Ec2]["Actions])

# Retrieve the bundled local copy of aws resources
m = manifest(local=True)
...

# For helper functions, use the `AwsManifest` class
a = AwsManifest()
print(a.service_prefixes())
print(a.actions("Amazon Ec2))
print(a.actions("s3))
...

Licensing

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published