aboutsummaryrefslogtreecommitdiffstats
path: root/obfuscator/utils.py
blob: f0174f85951329b2b073dedf3c8a29f92da87a8f (plain)
1
2
3
4
5
6
7
8
# Utility functions


def get_s3_path(uri):
    parts = uri.replace("s3://", "").split("/")
    bucket = parts.pop(0)
    key = "/".join(parts)
    return bucket, key
git.ajschof.me — hosted by ajschofield — powered by cgit