pipper


Namepipper JSON
Version 0.10.3 PyPI version JSON
download
home_pagehttps://gitlab.com/rocket-boosters/pipper
SummaryA serverless Python package manager for private packages that runs on S3.
upload_time2023-02-02 18:20:58
maintainer
docs_urlNone
authorScott Ernst
requires_python>=3.8,<4.0.0
licenseMIT
keywords aws python package manager s3 serverless
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Pipper

[![PyPI version](https://badge.fury.io/py/pipper.svg)](https://pypi.org/project/pipper/)
[![build status](https://gitlab.com/rocket-boosters/pipper/badges/main/pipeline.svg)](https://gitlab.com/rocket-boosters/pipper/commits/main)
[![coverage report](https://gitlab.com/rocket-boosters/pipper/badges/main/coverage.svg)](https://gitlab.com/rocket-boosters/pipper/commits/main)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Code style: flake8](https://img.shields.io/badge/code%20style-flake8-white)](https://gitlab.com/pycqa/flake8)
[![Code style: mypy](https://img.shields.io/badge/code%20style-mypy-white)](http://mypy-lang.org/)
[![PyPI - License](https://img.shields.io/pypi/l/pipper)](https://pypi.org/project/pipper/)

__Private Python package manager on an S3 bucket__

A Python package manager wrapped around pip and poetry for lightweight
management of non-public packages with an AWS S3 static backend. Requires no
server or database resources, only a private S3 bucket that stores the pipper
packages. Authentication is handled using standard AWS Identity and Access
Management (IAM) users, roles and policies.


## Installing pipper

The pipper package can be installed using pip:

    $ pip install pipper

or with poetry:

    $ poetry add pipper --dev

## Basic Usage

Pipper is primarily used from the command line and consists of multiple 
sub-command actions. The general format of a pipper command is:

    $ pipper <ACTION> <REQUIRED_ARGS> --flag=<VALUE> --other-flag ...

The available actions are:

 * [install](#install-action): add or update new packages
 * [download](#download-action): save remote packages locally
 * [info](#info-action): information on a specific package
 * [bundle](#bundle-action): bundle a package for publishing
 * [publish](#publish-action): release a new or updated package
 * [authorize](#authorize-action): create a pre-authorized url for download
 * [repository](#repository-action): Modify pre-defined pipper repositories

    
## AWS Credentials

Pipper uses AWS credentials for authentication. To maximize flexibility, the 
AWS credentials can be specified in a myriad of ways. Pipper will try to
identify credentials in the following order:

__1. Explicit Credentials:__ You can specify the AWS credentials directly on
the command line with the `--credentials` flag:

* `-c --credentials <AWS_ACCESS_KEY_ID> <AWS_SECRET> <AWS_SESSION_TOKEN>`

This can be useful for situations where profiles are not initialized or 
undesirable. If your credentials do not require a session token, which is
usually the case, that argument can be omitted. It's also possible to specify
a missing token using a `0` value for the `<AWS_SESSION_TOKEN>` argument for
simplicity in cases where omitting the value is more difficult than including
it with an explicit ignore value.


__2. Pipper Configuration:__ Using pipper's _repository_ command action, you can store
credentials and remote information in a pipper config file. If you do create a pipper
repository configuration, which stores AWS credentials, you can reference
that repository configuration by name to provide credentials to the 
various commands with the `--repository` command flag:

* `-r --repository <PIPPER_REPOSITORY_NAME>`

For more information on how to specify repository configurations for use with
this flag, see the [repository](#repository-action). This is the recommended
way to specify credentials for persistent environments like your local computer.

__3. AWS Profiles:__ Standard AWS profile-based credentials can be used as 
well. Use the `--profile` flag to specify the name of the profile you wish
to use:

* `-p --profile <AWS_PROFILE_NAME>`
 
__4. Pipper Environmental Variables:__ If none of the previous forms of 
credentials are provided, pipper will try to use pipper-specific environmental 
variables:

`PIPPER_AWS_ACCESS_KEY_ID`
     
`PIPPER_AWS_SECRET_ACCESS_KEY`  

`PIPPER_AWS_SESSION_TOKEN`

__5. AWS Environmental Variables:__ If none of the previous forms of credentials
are provided, pipper will attempt to use the standard AWS environmental 
variables:

`AWS_ACCESS_KEY_ID` 

`AWS_SECRET_ACCESS_KEY`

`AWS_SESSION_TOKEN`

If neither set of environmental variables exist, pipper
will fallback to using the _default_ profile credentials if they exist.

__6. Default Pipper Repository Configuration:__ If none of the other 
credentials are specified, pipper will try to use the default repository
configuration if one exists.

__7. System-level credentials:__ In the end, pipper will try to use the 
default system-level credentials, which is useful in situations like EC2
instances where the credentials are baked into the instance. However, on
remote systems the lack of specified credentials will likely result in 
authorization exceptions.


## Install Action

The pipper command can be used to install packages directly from the command
lin in much the same way you install packages with pip. The command is
followed by one or more packages to install. Specific package versions can be
downloaded by appending the version to package names with a colon separator.

    $ pipper install <PACKAGE_NAME[:VERSION]> <PACKAGE_NAME[:VERSION]>

There are a number of flags available to modify how the install command
functions:

* `-b --bucket <BUCKET_NAME>`

    Name of the S3 bucket where the remote pipper files are stored.

* `-i --input <INPUT_FILE>`

    Allows you to load one or more packages from a pipper-formatted
    JSON file. Use this in place of specifying the packages directly
    in the command when convenient.
    
* `-u --upgrade`

    When specified currently installed packages will be updated to the latest
    version. If this flag is not specified the installation process will
    ignore already installed packages, even if a newer version is available.

When installing pipper packages, pipper dependencies are handled recursively as
long as the dependency packages have a properly configured pipper.json file
located at the top-level of the repository.

### Installation Examples

    $ pipper install foo --bucket my_bucket --profile my_profile

Installs the `foo` package using the default AWS credentials associated with
the _my_profile_ AWS profile from the _my_bucket_ S3 bucket.


## Download Action

The download action can be used to download pipper packages for later use. This
can be helpful if you want to make packages available while offline or when
AWS credentials are unavailable.

    $ pipper download <PACKAGE_NAME[:VERSION]>

* `-b --bucket <BUCKET_NAME>`

    Name of the S3 bucket where the remote pipper files are stored.

* `-d --directory <DIRECTORY_NAME>`

    The directory where the pipper bundle file for the package should be
    saved to when downloaded.

* `-i --input <INPUT_FILE>`

    Allows you to download one or more packages from a pipper-formatted
    JSON file. Use this in place of specifying the packages directly
    in the command when convenient.

* `-e --extract`

    When specified, the downloaded pipper files will be immediately extracted
    into their consituent wheel and metadata files. Useful if you want to 
    install directly with pip using advanced options such as installing to
    a specific directly.


## Repository Action

The repository action allows you to create and managed named repositories, 
which can be used to simplify the management of credentials within the 
command line. The repository command action has a number of sub-actions:


### Repository: add

    $ pipper repository add <REPOSITORY_NAME>

Adds a new repository configuration with the specified name. Use the 
`-p --profile` or `-c --credentials` flag to specify the AWS credentials to
be used by this repository. The _add_ sub-action has other flags:

* `-b --bucket <BUCKET_NAME>`

    Name of the S3 bucket where the remote pipper files are stored for this
    configuration. If the bucket is set in the repository configuration, it
    will automatically be used by pipper.

* `-d --default`

    If this flag is set, this repository configuration will be the default one
    used when no credentials or other information is specified.


### Repository: modify

    $ pipper repostory modify <EXISTING_REPOSITORY_NAME>

Modifies an existing repository configuration with new values. This sub-action
has the same flags as the _add_ sub-action. Any flags that you set will be
used to replace existing values. Any omitted flags will retain their existing
values.


### Repository: remove

    $ pipper repository remove <EXISTING_REPOSITORY_NAME>
    
Removes an existing repository configuration from the configuration storage.


### Repository: list

    $ pipper repository list

Use this command to list the currently stored repository configurations. It
also lets you know which of the configurations is set to the default value.


### Repository: exists

    $ pipper repository exists

Displays information on whether or not a repository configuration currently 
exists.


## Authorize Action

There are times when having AWS credentials available isn't practical. To get
around those you can create pre-authorized URLs for downloading and installing
packages that can be used where credentials are not available.

    $ pipper authorize <PACKAGE_NAME[:VERSION]> ...
    
* `-b --bucket <BUCKET_NAME>`

    Name of the S3 bucket where the remote pipper files are stored.

* `-i --input <INPUT_FILE>`

    Allows you to load one or more packages from a pipper-formatted
    JSON file. Use this in place of specifying the packages directly
    in the command when convenient.

* `-o --ouput <OUTPUT_FILE>`

    If specified, a pre-authorized pipper config file will be written that
    can be used later by download and installation commands.

* `-e --expires <EXPIRES_IN>`

    How long the authorized URL is valid before it expires. The format
    should be `<NUMBER><UNIT>`, where the number is a positive integer and
    the unit can be hours, minutes or seconds. Units can be abbreviated, e.g.:
    
    * _12mins_: 12 minutes
    * _130m_: 130 minutes
    * _18s_: 18 seconds
    * _3hr_: 3 hours


## Info Action

Prints information on the locally installed and remote versions of the 
specified package. Also, informs you if there is a newer version of the package
available for upgrade.

    $ pipper info <PACKAGE_NAME>

* `-l --local`

    Only display local package information, which can be useful if you're
    just looking for what is installed locally and don't want to provide
    AWS credential information as well.

* `-b --bucket <BUCKET_NAME>`

    Name of the S3 bucket where the remote pipper files are stored. This
    flag is needed unless the local flag is used, which does not communicate
    with the remote S3 files.


## Bundle Action

Creates a pipper package distribution file that can be installed directly or
published to a remote S3 bucket for distribution.

    $ pipper bundle <PACKAGE_DIRECTORY>
    
* `-o --output <OUTPUT_DIRECTORY>`

    The directory where the pipper bundle should be saved. Defaults to the 
    current working directory.
    
    
## Publish Action

Deploys a pipper bundle file to a remote S3 bucket for distribution.

    $ pipper publish <PIPPER_FILENAME>
    
If you specify a directory instead of a filename, pipper will search for a
pipper file in that directory and upload it. If multiple pipper files are
found, the most recently created one will be uploaded.
    
    $ pipper publish <DIRECTORY_CONTAINING_PIPPER_FILE>

* `-b --bucket <BUCKET_NAME>`
    
    Name of the S3 bucket where the package will be published.

* `-f --force`
    
    Unless this flag is specified, publishing a package will be skipped if an
    identical version of the package has already been published.


## Version Locking

Pipper supports version matching/locking in a similar fashion to pip. However,
the syntax is a little bit stricter. Values must conform to semantic
versions. Consider a library `foo`. A specific version can be installed using
any of the following statements:

- `foo` no version will install latest
- `foo:1.2.3` that specific version
- `foo:=1.2.3` that specific version
- `foo:==1.2.3` that specific version
- `foo:1.2.*` the latest revision of `1.2.x`
- `foo:1.*.*` the latest minor version and revision of `1.x.x`
- `foo:<1.2.3` any version below the specified one
- `foo:<=1.2.3` any version equal to or below the specified one
- `foo:>1.2.3` any version above the specified one
- `foo:>=1.2.3` any version equal to or above the specified one

            

Raw data

            {
    "_id": null,
    "home_page": "https://gitlab.com/rocket-boosters/pipper",
    "name": "pipper",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0.0",
    "maintainer_email": "",
    "keywords": "aws,python,package manager,s3,serverless",
    "author": "Scott Ernst",
    "author_email": "swernst@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/99/e4/1a2f9e0b1a581d07a0cc62b42a170f288bfdf02da0bbddf6baea60835c4a/pipper-0.10.3.tar.gz",
    "platform": null,
    "description": "# Pipper\n\n[![PyPI version](https://badge.fury.io/py/pipper.svg)](https://pypi.org/project/pipper/)\n[![build status](https://gitlab.com/rocket-boosters/pipper/badges/main/pipeline.svg)](https://gitlab.com/rocket-boosters/pipper/commits/main)\n[![coverage report](https://gitlab.com/rocket-boosters/pipper/badges/main/coverage.svg)](https://gitlab.com/rocket-boosters/pipper/commits/main)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![Code style: flake8](https://img.shields.io/badge/code%20style-flake8-white)](https://gitlab.com/pycqa/flake8)\n[![Code style: mypy](https://img.shields.io/badge/code%20style-mypy-white)](http://mypy-lang.org/)\n[![PyPI - License](https://img.shields.io/pypi/l/pipper)](https://pypi.org/project/pipper/)\n\n__Private Python package manager on an S3 bucket__\n\nA Python package manager wrapped around pip and poetry for lightweight\nmanagement of non-public packages with an AWS S3 static backend. Requires no\nserver or database resources, only a private S3 bucket that stores the pipper\npackages. Authentication is handled using standard AWS Identity and Access\nManagement (IAM) users, roles and policies.\n\n\n## Installing pipper\n\nThe pipper package can be installed using pip:\n\n    $ pip install pipper\n\nor with poetry:\n\n    $ poetry add pipper --dev\n\n## Basic Usage\n\nPipper is primarily used from the command line and consists of multiple \nsub-command actions. The general format of a pipper command is:\n\n    $ pipper <ACTION> <REQUIRED_ARGS> --flag=<VALUE> --other-flag ...\n\nThe available actions are:\n\n * [install](#install-action): add or update new packages\n * [download](#download-action): save remote packages locally\n * [info](#info-action): information on a specific package\n * [bundle](#bundle-action): bundle a package for publishing\n * [publish](#publish-action): release a new or updated package\n * [authorize](#authorize-action): create a pre-authorized url for download\n * [repository](#repository-action): Modify pre-defined pipper repositories\n\n    \n## AWS Credentials\n\nPipper uses AWS credentials for authentication. To maximize flexibility, the \nAWS credentials can be specified in a myriad of ways. Pipper will try to\nidentify credentials in the following order:\n\n__1. Explicit Credentials:__ You can specify the AWS credentials directly on\nthe command line with the `--credentials` flag:\n\n* `-c --credentials <AWS_ACCESS_KEY_ID> <AWS_SECRET> <AWS_SESSION_TOKEN>`\n\nThis can be useful for situations where profiles are not initialized or \nundesirable. If your credentials do not require a session token, which is\nusually the case, that argument can be omitted. It's also possible to specify\na missing token using a `0` value for the `<AWS_SESSION_TOKEN>` argument for\nsimplicity in cases where omitting the value is more difficult than including\nit with an explicit ignore value.\n\n\n__2. Pipper Configuration:__ Using pipper's _repository_ command action, you can store\ncredentials and remote information in a pipper config file. If you do create a pipper\nrepository configuration, which stores AWS credentials, you can reference\nthat repository configuration by name to provide credentials to the \nvarious commands with the `--repository` command flag:\n\n* `-r --repository <PIPPER_REPOSITORY_NAME>`\n\nFor more information on how to specify repository configurations for use with\nthis flag, see the [repository](#repository-action). This is the recommended\nway to specify credentials for persistent environments like your local computer.\n\n__3. AWS Profiles:__ Standard AWS profile-based credentials can be used as \nwell. Use the `--profile` flag to specify the name of the profile you wish\nto use:\n\n* `-p --profile <AWS_PROFILE_NAME>`\n \n__4. Pipper Environmental Variables:__ If none of the previous forms of \ncredentials are provided, pipper will try to use pipper-specific environmental \nvariables:\n\n`PIPPER_AWS_ACCESS_KEY_ID`\n     \n`PIPPER_AWS_SECRET_ACCESS_KEY`  \n\n`PIPPER_AWS_SESSION_TOKEN`\n\n__5. AWS Environmental Variables:__ If none of the previous forms of credentials\nare provided, pipper will attempt to use the standard AWS environmental \nvariables:\n\n`AWS_ACCESS_KEY_ID` \n\n`AWS_SECRET_ACCESS_KEY`\n\n`AWS_SESSION_TOKEN`\n\nIf neither set of environmental variables exist, pipper\nwill fallback to using the _default_ profile credentials if they exist.\n\n__6. Default Pipper Repository Configuration:__ If none of the other \ncredentials are specified, pipper will try to use the default repository\nconfiguration if one exists.\n\n__7. System-level credentials:__ In the end, pipper will try to use the \ndefault system-level credentials, which is useful in situations like EC2\ninstances where the credentials are baked into the instance. However, on\nremote systems the lack of specified credentials will likely result in \nauthorization exceptions.\n\n\n## Install Action\n\nThe pipper command can be used to install packages directly from the command\nlin in much the same way you install packages with pip. The command is\nfollowed by one or more packages to install. Specific package versions can be\ndownloaded by appending the version to package names with a colon separator.\n\n    $ pipper install <PACKAGE_NAME[:VERSION]> <PACKAGE_NAME[:VERSION]>\n\nThere are a number of flags available to modify how the install command\nfunctions:\n\n* `-b --bucket <BUCKET_NAME>`\n\n    Name of the S3 bucket where the remote pipper files are stored.\n\n* `-i --input <INPUT_FILE>`\n\n    Allows you to load one or more packages from a pipper-formatted\n    JSON file. Use this in place of specifying the packages directly\n    in the command when convenient.\n    \n* `-u --upgrade`\n\n    When specified currently installed packages will be updated to the latest\n    version. If this flag is not specified the installation process will\n    ignore already installed packages, even if a newer version is available.\n\nWhen installing pipper packages, pipper dependencies are handled recursively as\nlong as the dependency packages have a properly configured pipper.json file\nlocated at the top-level of the repository.\n\n### Installation Examples\n\n    $ pipper install foo --bucket my_bucket --profile my_profile\n\nInstalls the `foo` package using the default AWS credentials associated with\nthe _my_profile_ AWS profile from the _my_bucket_ S3 bucket.\n\n\n## Download Action\n\nThe download action can be used to download pipper packages for later use. This\ncan be helpful if you want to make packages available while offline or when\nAWS credentials are unavailable.\n\n    $ pipper download <PACKAGE_NAME[:VERSION]>\n\n* `-b --bucket <BUCKET_NAME>`\n\n    Name of the S3 bucket where the remote pipper files are stored.\n\n* `-d --directory <DIRECTORY_NAME>`\n\n    The directory where the pipper bundle file for the package should be\n    saved to when downloaded.\n\n* `-i --input <INPUT_FILE>`\n\n    Allows you to download one or more packages from a pipper-formatted\n    JSON file. Use this in place of specifying the packages directly\n    in the command when convenient.\n\n* `-e --extract`\n\n    When specified, the downloaded pipper files will be immediately extracted\n    into their consituent wheel and metadata files. Useful if you want to \n    install directly with pip using advanced options such as installing to\n    a specific directly.\n\n\n## Repository Action\n\nThe repository action allows you to create and managed named repositories, \nwhich can be used to simplify the management of credentials within the \ncommand line. The repository command action has a number of sub-actions:\n\n\n### Repository: add\n\n    $ pipper repository add <REPOSITORY_NAME>\n\nAdds a new repository configuration with the specified name. Use the \n`-p --profile` or `-c --credentials` flag to specify the AWS credentials to\nbe used by this repository. The _add_ sub-action has other flags:\n\n* `-b --bucket <BUCKET_NAME>`\n\n    Name of the S3 bucket where the remote pipper files are stored for this\n    configuration. If the bucket is set in the repository configuration, it\n    will automatically be used by pipper.\n\n* `-d --default`\n\n    If this flag is set, this repository configuration will be the default one\n    used when no credentials or other information is specified.\n\n\n### Repository: modify\n\n    $ pipper repostory modify <EXISTING_REPOSITORY_NAME>\n\nModifies an existing repository configuration with new values. This sub-action\nhas the same flags as the _add_ sub-action. Any flags that you set will be\nused to replace existing values. Any omitted flags will retain their existing\nvalues.\n\n\n### Repository: remove\n\n    $ pipper repository remove <EXISTING_REPOSITORY_NAME>\n    \nRemoves an existing repository configuration from the configuration storage.\n\n\n### Repository: list\n\n    $ pipper repository list\n\nUse this command to list the currently stored repository configurations. It\nalso lets you know which of the configurations is set to the default value.\n\n\n### Repository: exists\n\n    $ pipper repository exists\n\nDisplays information on whether or not a repository configuration currently \nexists.\n\n\n## Authorize Action\n\nThere are times when having AWS credentials available isn't practical. To get\naround those you can create pre-authorized URLs for downloading and installing\npackages that can be used where credentials are not available.\n\n    $ pipper authorize <PACKAGE_NAME[:VERSION]> ...\n    \n* `-b --bucket <BUCKET_NAME>`\n\n    Name of the S3 bucket where the remote pipper files are stored.\n\n* `-i --input <INPUT_FILE>`\n\n    Allows you to load one or more packages from a pipper-formatted\n    JSON file. Use this in place of specifying the packages directly\n    in the command when convenient.\n\n* `-o --ouput <OUTPUT_FILE>`\n\n    If specified, a pre-authorized pipper config file will be written that\n    can be used later by download and installation commands.\n\n* `-e --expires <EXPIRES_IN>`\n\n    How long the authorized URL is valid before it expires. The format\n    should be `<NUMBER><UNIT>`, where the number is a positive integer and\n    the unit can be hours, minutes or seconds. Units can be abbreviated, e.g.:\n    \n    * _12mins_: 12 minutes\n    * _130m_: 130 minutes\n    * _18s_: 18 seconds\n    * _3hr_: 3 hours\n\n\n## Info Action\n\nPrints information on the locally installed and remote versions of the \nspecified package. Also, informs you if there is a newer version of the package\navailable for upgrade.\n\n    $ pipper info <PACKAGE_NAME>\n\n* `-l --local`\n\n    Only display local package information, which can be useful if you're\n    just looking for what is installed locally and don't want to provide\n    AWS credential information as well.\n\n* `-b --bucket <BUCKET_NAME>`\n\n    Name of the S3 bucket where the remote pipper files are stored. This\n    flag is needed unless the local flag is used, which does not communicate\n    with the remote S3 files.\n\n\n## Bundle Action\n\nCreates a pipper package distribution file that can be installed directly or\npublished to a remote S3 bucket for distribution.\n\n    $ pipper bundle <PACKAGE_DIRECTORY>\n    \n* `-o --output <OUTPUT_DIRECTORY>`\n\n    The directory where the pipper bundle should be saved. Defaults to the \n    current working directory.\n    \n    \n## Publish Action\n\nDeploys a pipper bundle file to a remote S3 bucket for distribution.\n\n    $ pipper publish <PIPPER_FILENAME>\n    \nIf you specify a directory instead of a filename, pipper will search for a\npipper file in that directory and upload it. If multiple pipper files are\nfound, the most recently created one will be uploaded.\n    \n    $ pipper publish <DIRECTORY_CONTAINING_PIPPER_FILE>\n\n* `-b --bucket <BUCKET_NAME>`\n    \n    Name of the S3 bucket where the package will be published.\n\n* `-f --force`\n    \n    Unless this flag is specified, publishing a package will be skipped if an\n    identical version of the package has already been published.\n\n\n## Version Locking\n\nPipper supports version matching/locking in a similar fashion to pip. However,\nthe syntax is a little bit stricter. Values must conform to semantic\nversions. Consider a library `foo`. A specific version can be installed using\nany of the following statements:\n\n- `foo` no version will install latest\n- `foo:1.2.3` that specific version\n- `foo:=1.2.3` that specific version\n- `foo:==1.2.3` that specific version\n- `foo:1.2.*` the latest revision of `1.2.x`\n- `foo:1.*.*` the latest minor version and revision of `1.x.x`\n- `foo:<1.2.3` any version below the specified one\n- `foo:<=1.2.3` any version equal to or below the specified one\n- `foo:>1.2.3` any version above the specified one\n- `foo:>=1.2.3` any version equal to or above the specified one\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A serverless Python package manager for private packages that runs on S3.",
    "version": "0.10.3",
    "split_keywords": [
        "aws",
        "python",
        "package manager",
        "s3",
        "serverless"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "533640d8fc147ca5f95593c0bd98694c4e5aa7bc76b691a4959fb2896d766aa6",
                "md5": "533d2cb4c7e3149a724b75f8a42b6622",
                "sha256": "f4fd86a29bf59c6f4ddbcbad318dd401cf93c53b714add481e0ee9d03f15afc4"
            },
            "downloads": -1,
            "filename": "pipper-0.10.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "533d2cb4c7e3149a724b75f8a42b6622",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0.0",
            "size": 31501,
            "upload_time": "2023-02-02T18:20:56",
            "upload_time_iso_8601": "2023-02-02T18:20:56.403875Z",
            "url": "https://files.pythonhosted.org/packages/53/36/40d8fc147ca5f95593c0bd98694c4e5aa7bc76b691a4959fb2896d766aa6/pipper-0.10.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99e41a2f9e0b1a581d07a0cc62b42a170f288bfdf02da0bbddf6baea60835c4a",
                "md5": "3effc7209f9c4696edcab2ee0d3a33fd",
                "sha256": "2aedd373e9ac27db339cef2950682837a8be5f443bf9ac361a26f91dde927328"
            },
            "downloads": -1,
            "filename": "pipper-0.10.3.tar.gz",
            "has_sig": false,
            "md5_digest": "3effc7209f9c4696edcab2ee0d3a33fd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0.0",
            "size": 28862,
            "upload_time": "2023-02-02T18:20:58",
            "upload_time_iso_8601": "2023-02-02T18:20:58.161436Z",
            "url": "https://files.pythonhosted.org/packages/99/e4/1a2f9e0b1a581d07a0cc62b42a170f288bfdf02da0bbddf6baea60835c4a/pipper-0.10.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-02 18:20:58",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "gitlab_user": "rocket-boosters",
    "gitlab_project": "pipper",
    "lcname": "pipper"
}
        
Elapsed time: 0.04162s