Skip to content

Asynchronous generic dependency resolver. Uses a simple file name convention on an S3 bucket to download files, and is configured by feeding it a JSON file. Support authenticated access.

License

Notifications You must be signed in to change notification settings

Signiant/umpire

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Umpire: A Dependency Manager

Umpire is a Python-based generic dependency resolver which aims to be platform agnostic, extensible, and simple to use.

Umpire was developed as an easy to install command line tool, with it's flexibility being derived from the JSON file options.

Umpire reads a JSON file to retrieve, cache, and link files to their appropriate destination from an Amazon S3 backed repository of compressed packages.

Installation

Umpire requires Python 3.11.6 or above

Umpire is available as a pip package.

To install Umpire:

  1. Download get-pip.py from PyPA.
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
  1. Run the Python script to complete the install.
$ python get-pip.py
  1. Use latest python3 pip to install Umpire.
$ pip3 install umpire

Development

To run a local version of the Umpire

you clone the repo. and then do a

pip3 install -e <path to the repo> 

now the umpire will be from your local development repo

You can check by running

pip3 freeze | grep umpire

Examples

Below is an example deployment JSON file. The URL is composed of the identifier (s3://) and the bucket name. When using an authenticated bucket, the user must have either the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY variables set or a properly configured credentials file for your platform.

The items array contains the list of dependencies. Each one requires a platform, name and version. In the s3 bucket they need to be stored with the prefix: $PLATFORM/$NAME/$VERSION. Umpire does a case insensitive match against this naming convention to find the appropriate dependency. It will download all files matching the prefix in the bucket, and will attempt to unpack them for future deployment.

There's also a couple of other options that you can specify. They are:

link: [true/false] -- Specifies whether Umpire should link the dependency files to the destination or copy them. Default true.

keep_updated: [true/false] -- Specifies whether Umpire should check with the remote S3 bucket when run to see if the dependency has been changed. Default false.

[
     {
         "url":"s3://umpire-test/",
         "items":[
             {
                 "name":"test",
                 "version":"test_tgz",
                 "platform":"test",
                 "keep_updated":true,
                 "link":false,
                 "destination":"$ENVIRONMENT_VARIABLE/destination"
             },
             {
                 "name":"test",
                 "version":"test_zip",
                 "platform":"test",
                 "keep_updated":true,
                 "destination":"./destination"
             }
         ]
     }
 ]

Contributing

Want to help out? Awesome!

We'll gladly take any help in bug fixes, or feature updates if it fits within our whole vision of Umpire. Feel free to create a fork of the repository, and submit a pull request if you do anything cool.

Todos

  • Publishing support
  • Bzip support
  • Optional unpacking
  • File exclusion

License


Umpire is licensed under the MIT license

About

Asynchronous generic dependency resolver. Uses a simple file name convention on an S3 bucket to download files, and is configured by feeding it a JSON file. Support authenticated access.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages