ltd-conveyor


Nameltd-conveyor JSON
Version 0.8.3 PyPI version JSON
download
home_pagehttps://ltd-conveyor.lsst.io
SummaryLSST the Docs admin client.
upload_time2024-02-22 20:47:45
maintainer
docs_urlNone
authorAssociation of Universities for Research in Astronomy, Inc. (AURA)
requires_python>=3.7
licenseMIT
keywords lsst
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            #######################
LSST the Docs: Conveyor
#######################

.. image:: https://img.shields.io/pypi/v/ltd-conveyor.svg
   :target: https://pypi.python.org/pypi/ltd-conveyor
   :alt: Python Package Index
.. image:: https://github.com/lsst-sqre/ltd-conveyor/workflows/Python%20CI/badge.svg
   :target: https://github.com/lsst-sqre/ltd-conveyor/actions?query=workflow%3A%22Python+CI%22
   :alt: GitHub Actions
.. image:: https://img.shields.io/badge/ltd--conveyor-lsst.io-brightgreen.svg
   :target: https://ltd-conveyor.lsst.io
   :alt: Documentation

**Conveyor** is a common Python library and command-line app for LSST the Docs (LTD) services and clients.

Key features:

- ``ltd`` command-line app.

  The ``ltd upload`` subcommand makes it easy to integrate documentation uploads with continuous integration jobs, particularly Travis CI.

- The ``ltdconveyor`` Python package provides APIs for working with LSST the Docs.

  ``ltdconveyor.s3`` subpackage provides S3 object management services.
  All documentation hosted by LTD is served through the `Fastly CDN <https://www.fastly.com>`_, which uses S3 object metadata to purge caches.
  Conveyor ensures that this metadata is properly set by all clients and microservices that upload, copy, or delete objects from S3.

  ``ltdconveyor.fastly`` provides Fastly cache management APIs.

  ``ltdconveyor.keeper`` provides APIs for working with LTD Keeper's REST API.

You can learn more about LTD in our `SQR-006 <https://sqr-006.lsst.io>`_ technote.

**Read the docs:** https://ltd-conveyor.lsst.io

##########
Change log
##########

0.8.3 (2024-02-22)
==================

- Improved error reporting from LTD Keeper API responses for common scenarios and direct the user to contact dm-docs-support on the LSSTC Slack.

0.8.2 (2024-02-22)
==================

- Removed usage of ``pkg_resources`` for better compatibility with Python 3.12 environments.
- Fixed internal typing issues.
- Updated the GitHub Actions workflows.

0.8.1 (2021-09-27)
==================

Fix parsing of the ``GITHUB_HEAD_REF`` environment variable in GitHub Actions.

0.8.0 (2021-09-15)
==================

The ``ltd upload`` command now works in pull request workflows on GitHub Actions.

0.7.0 (2020-09-01)
==================

This release focuses on infrastructure improvements, and should not have a significant impact on users.

Infrastructure
--------------

- This tool is officially tested and supported on Python 3.7 and 3.8.
  Python 3.6 is no longer officially supported.

- Removed pins on third-party dependencies, including boto3, requests, uritemplate, and click.
  In doing so, LTD Conveyor is easier to integrate into your existing Python environment.

- We have migrated from Travis CI to GitHub Actions for testing, linting, documentation builds and deployment, and deployments to PyPI.
  In addition to on-demand testing, GitHub Actions tests the package on a daily basis to ensure compatibility with third-party dependencies.

- Internally, we use tox for running tests, linters, and to build documentation.
  tox makes it possible for local test runs to use the same set up as CI.

- The codebase is now automatically formatted with black and isort.
  By using pre-commit, we ensure that formatting is always applied.

- The codebase now has type annotations, which are tested with mypy.
  Type annotations help ensure that APIs are explicitly defined and correctly used.

0.6.1 (2020-02-23)
==================

Fixed
-----

- The ``--gh`` option for ``ltd upload`` now supports tag and PR events, in addition to branches.

0.6.0 (2020-02-20)
==================

Added
-----

- Added a ``--gh`` option to the ``ltd upload`` command to support usage in `GitHub Actions <https://help.github.com/en/actions>`__.

0.5.0 (2020-02-05)
==================

Added
-----

- LTD Conveyor can now upload new builds to S3 using Amazon's S3's presigned POST URL feature.
  This means that clients no longer need credentials for S3 — the LTD Keeper API server generates presigned POST URLs as part of the ``POST /products/<product>/builds/`` build registration step.
- The ``ltd`` command now uses the presigned POST-based URLs.
  The ``--aws-id`` and ``--aws-secret`` options have been removed, but the ``--user`` and ``--password`` options remain.

  If you use environment variables, there should be no change in how you use ``ltd upload`` (aside from not needing the ``$LTD_AWS_ID`` and ``$LTD_AWS_SECRET`` environment variables).

Fixed
-----

- In INFO-level and higher logging, the module path isn't displayed.
  Module paths are only shown in DEBUG-level logging where it's most useful.

Infrastructure
--------------

- Packaging is now done through a ``setup.cfg`` file and a ``pyproject.toml`` file (PEP 518).
- Updated Travis CI configuration to test with Python 3.8; also refactored the CI Pipeline with Travis CI stages.

0.4.2 (2018-10-09)
==================

Fixed
-----

- Fixed a bug where ``ltdconveyor.s3.delete_dir``, since 0.4.1, would raise a ``TypeError`` while deleting an empty directory (no objects in the S3 prefix).

0.4.1 (2018-10-08)
==================

Fixed
-----

- Fixed a bug where ``ltdconveyor.s3.delete_dir`` would fail if there are more than 1000 objects under a path prefix that is being deleted.
- Fixed title of the project in the documentation by updating to use a `Documenteer`_\ -based Sphinx set up.

0.4.0 (2018-04-17)
==================

Added
-----

- Added a new command-line app, ``ltd``, that provides subcommands for clients to work with the LSST the Docs API.
  This app is implemented with Click_, and its documentation is automatically generated from the command-line help with `sphinx-click`_.

  The first subcommand is ``ltd upload``, which lets a client upload a site to LTD as a new build.
  This command includes special features for using the client from Travis CI (``ltd upload --travis`` option) to populate the version information from the Travis environment.
  Other flags allow ``ltd upload`` to become a no-op under certain circumstances (for example, skip uploads on pull requests) or arbitrarily (set ``ltd upload --skip`` or ``export LTD_SKIP_UPLOAD=true``).

  .. note::

     With this feature, LTD Conveyor effectively deprecates `LTD Mason`_.
     LTD Mason was the original uploader for LSST the Docs, but it was also designed around the idea of building the `LSST Science Pipelines` documentation as well (hence the term "mason").
     Over time, we realized it is better to have a general purpose client and uploader for LSST the Docs (LTD Conveyor) and a dedicated tool for assembling the multi-package Sphinx documentation site (`Documenteer`_).

- Added the `ltdconveyor.keeper` subpackage that widens the scope of LTD Conveyor to be a full-service library for building LTD clients, not just an S3 upload client.

  - The `ltdconveyor.keeper.login.get_keeper_token` function lets you obtain a temporary auth token for the LTD Keeper API.

  - The `ltdconveyor.keeper.build` module includes functions for performing the build upload handshake with the LTD Keeper API.

Changed
-------

- Removed Python 2.7 and 3.4 compatibility.
  Now the codebase is entirely Python 3 (3.5, 3.6)-oriented.

- Completely reorganized Python namespace.
  Now all S3 APIs are in ``ltdconveyor.s3``.
  Fastly APIs are available from ``ltdconveyor.fastly``.

- Switched to using ``setuptools_scm`` to generate version strings for releases.

- Switched to using ``extras_require`` for development dependencies (``pip install -e ".[dev]"``).
  This lets us exclusively coordinate dependencies in ``setup.py``.

- Enable testing via ``python setup.py test``.
  Also upgrade the testing stack to ``pytest`` 3.5 and ``pytest-flake8`` 1.0.

- Compatibility updates to the Sphinx documentation infrastructure.

- Default to ``acl=None`` to support more AWS IAM users.
  It turns out that not all IAM users with ``PutObject`` permissions also have permissions to set the ``ACL`` for an object.
  We want to make it possible for many lightweight IAM users to upload to restricted sub-directories of the ``lsst-the-docs`` bucket, but it seems hard to make these users ACL grantees too.
  We now seek an alternative:

  - The ``lsst-the-docs`` bucket now has a PublicRead *bucket* policy
  - No ACL is set on individual objects.

Fixed
-----

- Changed assertions to ``RuntimeErrors``.
  Assertions shouldn't be used to raise exceptions in production code.

0.3.1 (2017-03-27)
==================

Added
-----

- Add ``open_bucket`` function.
  This provides a convenient API for getting a boto3 bucket resource, particularly for clients that use the upload_object and upload_file APIs directly that take a bucket only.

0.3.0 (2017-02-20)
==================

Added
-----

- Added ``content_type`` parameter to ``upload_object`` so that a user can specify ``text/html`` for an HTML upload.
  The ``upload_file``/``upload_dir`` functions avoid this problem by using Python's ``mimetypes`` library to guess the encoding, but ``upload_object`` is lower-level and warrants having the user explicitly provide the content type.
- Refactored new function ``create_dir_redirect_object``.
  This code used to be inside ``upload_dir``, but in `LTD Dasher`_ it seems necessary to upload files one at a time, and thus it's necessary to directly create these directory redirect objects.

Fixed
-----

- Fix issue where ``'..'`` shows up in directory names (seen when doing ``upload_dir`` with `LTD Dasher`_ asset directories).

0.2.0 (2017-02-02)
==================

Added
-----

- Ported Fastly ``purge_key`` function from `LTD Keeper`_.
  Any LTD application that uploads objects to S3 might also need to purge Fastly CDN caches.
  This purge capability is presented as a simple function.

0.1.0 (2017-01-25)
==================

Added
-----

- Port S3 codebase from `LTD Mason`_.
  The purpose of LTD Conveyor is to provide a set of common S3 APIs that can be used from both client (uploading docs from CI) and server (`LTD Keeper`_) settings.

.. _LTD Keeper: https://ltd-keeper.lsst.io
.. _LTD Mason: https://ltd-mason.lsst.io
.. _LTD Dasher: https://github.com/lsst-sqre/ltd-dasher
.. _Documenteer: https://documenteer.lsst.io
.. _Click: http://click.pocoo.org/
.. _sphinx-click: https://sphinx-click.readthedocs.io/en/latest/
.. _LSST Science Pipelines: https://pipelines.lsst.io

MIT License

Copyright 2016-2020 Association of Universities for Research in Astronomy, Inc. (AURA)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

            

Raw data

            {
    "_id": null,
    "home_page": "https://ltd-conveyor.lsst.io",
    "name": "ltd-conveyor",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "lsst",
    "author": "Association of Universities for Research in Astronomy, Inc. (AURA)",
    "author_email": "sqre-admin@lists.lsst.org",
    "download_url": "https://files.pythonhosted.org/packages/ad/05/c0bdf2e16fd3371683eb0c1c23f0915af4eb66cfa0e40f5b2009c1cf44ed/ltd-conveyor-0.8.3.tar.gz",
    "platform": null,
    "description": "#######################\nLSST the Docs: Conveyor\n#######################\n\n.. image:: https://img.shields.io/pypi/v/ltd-conveyor.svg\n   :target: https://pypi.python.org/pypi/ltd-conveyor\n   :alt: Python Package Index\n.. image:: https://github.com/lsst-sqre/ltd-conveyor/workflows/Python%20CI/badge.svg\n   :target: https://github.com/lsst-sqre/ltd-conveyor/actions?query=workflow%3A%22Python+CI%22\n   :alt: GitHub Actions\n.. image:: https://img.shields.io/badge/ltd--conveyor-lsst.io-brightgreen.svg\n   :target: https://ltd-conveyor.lsst.io\n   :alt: Documentation\n\n**Conveyor** is a common Python library and command-line app for LSST the Docs (LTD) services and clients.\n\nKey features:\n\n- ``ltd`` command-line app.\n\n  The ``ltd upload`` subcommand makes it easy to integrate documentation uploads with continuous integration jobs, particularly Travis CI.\n\n- The ``ltdconveyor`` Python package provides APIs for working with LSST the Docs.\n\n  ``ltdconveyor.s3`` subpackage provides S3 object management services.\n  All documentation hosted by LTD is served through the `Fastly CDN <https://www.fastly.com>`_, which uses S3 object metadata to purge caches.\n  Conveyor ensures that this metadata is properly set by all clients and microservices that upload, copy, or delete objects from S3.\n\n  ``ltdconveyor.fastly`` provides Fastly cache management APIs.\n\n  ``ltdconveyor.keeper`` provides APIs for working with LTD Keeper's REST API.\n\nYou can learn more about LTD in our `SQR-006 <https://sqr-006.lsst.io>`_ technote.\n\n**Read the docs:** https://ltd-conveyor.lsst.io\n\n##########\nChange log\n##########\n\n0.8.3 (2024-02-22)\n==================\n\n- Improved error reporting from LTD Keeper API responses for common scenarios and direct the user to contact dm-docs-support on the LSSTC Slack.\n\n0.8.2 (2024-02-22)\n==================\n\n- Removed usage of ``pkg_resources`` for better compatibility with Python 3.12 environments.\n- Fixed internal typing issues.\n- Updated the GitHub Actions workflows.\n\n0.8.1 (2021-09-27)\n==================\n\nFix parsing of the ``GITHUB_HEAD_REF`` environment variable in GitHub Actions.\n\n0.8.0 (2021-09-15)\n==================\n\nThe ``ltd upload`` command now works in pull request workflows on GitHub Actions.\n\n0.7.0 (2020-09-01)\n==================\n\nThis release focuses on infrastructure improvements, and should not have a significant impact on users.\n\nInfrastructure\n--------------\n\n- This tool is officially tested and supported on Python 3.7 and 3.8.\n  Python 3.6 is no longer officially supported.\n\n- Removed pins on third-party dependencies, including boto3, requests, uritemplate, and click.\n  In doing so, LTD Conveyor is easier to integrate into your existing Python environment.\n\n- We have migrated from Travis CI to GitHub Actions for testing, linting, documentation builds and deployment, and deployments to PyPI.\n  In addition to on-demand testing, GitHub Actions tests the package on a daily basis to ensure compatibility with third-party dependencies.\n\n- Internally, we use tox for running tests, linters, and to build documentation.\n  tox makes it possible for local test runs to use the same set up as CI.\n\n- The codebase is now automatically formatted with black and isort.\n  By using pre-commit, we ensure that formatting is always applied.\n\n- The codebase now has type annotations, which are tested with mypy.\n  Type annotations help ensure that APIs are explicitly defined and correctly used.\n\n0.6.1 (2020-02-23)\n==================\n\nFixed\n-----\n\n- The ``--gh`` option for ``ltd upload`` now supports tag and PR events, in addition to branches.\n\n0.6.0 (2020-02-20)\n==================\n\nAdded\n-----\n\n- Added a ``--gh`` option to the ``ltd upload`` command to support usage in `GitHub Actions <https://help.github.com/en/actions>`__.\n\n0.5.0 (2020-02-05)\n==================\n\nAdded\n-----\n\n- LTD Conveyor can now upload new builds to S3 using Amazon's S3's presigned POST URL feature.\n  This means that clients no longer need credentials for S3 \u2014 the LTD Keeper API server generates presigned POST URLs as part of the ``POST /products/<product>/builds/`` build registration step.\n- The ``ltd`` command now uses the presigned POST-based URLs.\n  The ``--aws-id`` and ``--aws-secret`` options have been removed, but the ``--user`` and ``--password`` options remain.\n\n  If you use environment variables, there should be no change in how you use ``ltd upload`` (aside from not needing the ``$LTD_AWS_ID`` and ``$LTD_AWS_SECRET`` environment variables).\n\nFixed\n-----\n\n- In INFO-level and higher logging, the module path isn't displayed.\n  Module paths are only shown in DEBUG-level logging where it's most useful.\n\nInfrastructure\n--------------\n\n- Packaging is now done through a ``setup.cfg`` file and a ``pyproject.toml`` file (PEP 518).\n- Updated Travis CI configuration to test with Python 3.8; also refactored the CI Pipeline with Travis CI stages.\n\n0.4.2 (2018-10-09)\n==================\n\nFixed\n-----\n\n- Fixed a bug where ``ltdconveyor.s3.delete_dir``, since 0.4.1, would raise a ``TypeError`` while deleting an empty directory (no objects in the S3 prefix).\n\n0.4.1 (2018-10-08)\n==================\n\nFixed\n-----\n\n- Fixed a bug where ``ltdconveyor.s3.delete_dir`` would fail if there are more than 1000 objects under a path prefix that is being deleted.\n- Fixed title of the project in the documentation by updating to use a `Documenteer`_\\ -based Sphinx set up.\n\n0.4.0 (2018-04-17)\n==================\n\nAdded\n-----\n\n- Added a new command-line app, ``ltd``, that provides subcommands for clients to work with the LSST the Docs API.\n  This app is implemented with Click_, and its documentation is automatically generated from the command-line help with `sphinx-click`_.\n\n  The first subcommand is ``ltd upload``, which lets a client upload a site to LTD as a new build.\n  This command includes special features for using the client from Travis CI (``ltd upload --travis`` option) to populate the version information from the Travis environment.\n  Other flags allow ``ltd upload`` to become a no-op under certain circumstances (for example, skip uploads on pull requests) or arbitrarily (set ``ltd upload --skip`` or ``export LTD_SKIP_UPLOAD=true``).\n\n  .. note::\n\n     With this feature, LTD Conveyor effectively deprecates `LTD Mason`_.\n     LTD Mason was the original uploader for LSST the Docs, but it was also designed around the idea of building the `LSST Science Pipelines` documentation as well (hence the term \"mason\").\n     Over time, we realized it is better to have a general purpose client and uploader for LSST the Docs (LTD Conveyor) and a dedicated tool for assembling the multi-package Sphinx documentation site (`Documenteer`_).\n\n- Added the `ltdconveyor.keeper` subpackage that widens the scope of LTD Conveyor to be a full-service library for building LTD clients, not just an S3 upload client.\n\n  - The `ltdconveyor.keeper.login.get_keeper_token` function lets you obtain a temporary auth token for the LTD Keeper API.\n\n  - The `ltdconveyor.keeper.build` module includes functions for performing the build upload handshake with the LTD Keeper API.\n\nChanged\n-------\n\n- Removed Python 2.7 and 3.4 compatibility.\n  Now the codebase is entirely Python 3 (3.5, 3.6)-oriented.\n\n- Completely reorganized Python namespace.\n  Now all S3 APIs are in ``ltdconveyor.s3``.\n  Fastly APIs are available from ``ltdconveyor.fastly``.\n\n- Switched to using ``setuptools_scm`` to generate version strings for releases.\n\n- Switched to using ``extras_require`` for development dependencies (``pip install -e \".[dev]\"``).\n  This lets us exclusively coordinate dependencies in ``setup.py``.\n\n- Enable testing via ``python setup.py test``.\n  Also upgrade the testing stack to ``pytest`` 3.5 and ``pytest-flake8`` 1.0.\n\n- Compatibility updates to the Sphinx documentation infrastructure.\n\n- Default to ``acl=None`` to support more AWS IAM users.\n  It turns out that not all IAM users with ``PutObject`` permissions also have permissions to set the ``ACL`` for an object.\n  We want to make it possible for many lightweight IAM users to upload to restricted sub-directories of the ``lsst-the-docs`` bucket, but it seems hard to make these users ACL grantees too.\n  We now seek an alternative:\n\n  - The ``lsst-the-docs`` bucket now has a PublicRead *bucket* policy\n  - No ACL is set on individual objects.\n\nFixed\n-----\n\n- Changed assertions to ``RuntimeErrors``.\n  Assertions shouldn't be used to raise exceptions in production code.\n\n0.3.1 (2017-03-27)\n==================\n\nAdded\n-----\n\n- Add ``open_bucket`` function.\n  This provides a convenient API for getting a boto3 bucket resource, particularly for clients that use the upload_object and upload_file APIs directly that take a bucket only.\n\n0.3.0 (2017-02-20)\n==================\n\nAdded\n-----\n\n- Added ``content_type`` parameter to ``upload_object`` so that a user can specify ``text/html`` for an HTML upload.\n  The ``upload_file``/``upload_dir`` functions avoid this problem by using Python's ``mimetypes`` library to guess the encoding, but ``upload_object`` is lower-level and warrants having the user explicitly provide the content type.\n- Refactored new function ``create_dir_redirect_object``.\n  This code used to be inside ``upload_dir``, but in `LTD Dasher`_ it seems necessary to upload files one at a time, and thus it's necessary to directly create these directory redirect objects.\n\nFixed\n-----\n\n- Fix issue where ``'..'`` shows up in directory names (seen when doing ``upload_dir`` with `LTD Dasher`_ asset directories).\n\n0.2.0 (2017-02-02)\n==================\n\nAdded\n-----\n\n- Ported Fastly ``purge_key`` function from `LTD Keeper`_.\n  Any LTD application that uploads objects to S3 might also need to purge Fastly CDN caches.\n  This purge capability is presented as a simple function.\n\n0.1.0 (2017-01-25)\n==================\n\nAdded\n-----\n\n- Port S3 codebase from `LTD Mason`_.\n  The purpose of LTD Conveyor is to provide a set of common S3 APIs that can be used from both client (uploading docs from CI) and server (`LTD Keeper`_) settings.\n\n.. _LTD Keeper: https://ltd-keeper.lsst.io\n.. _LTD Mason: https://ltd-mason.lsst.io\n.. _LTD Dasher: https://github.com/lsst-sqre/ltd-dasher\n.. _Documenteer: https://documenteer.lsst.io\n.. _Click: http://click.pocoo.org/\n.. _sphinx-click: https://sphinx-click.readthedocs.io/en/latest/\n.. _LSST Science Pipelines: https://pipelines.lsst.io\n\nMIT License\n\nCopyright 2016-2020 Association of Universities for Research in Astronomy, Inc. (AURA)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "LSST the Docs admin client.",
    "version": "0.8.3",
    "project_urls": {
        "Change log": "https://ltd-conveyor.lsst.io/changes.html",
        "Homepage": "https://ltd-conveyor.lsst.io",
        "Issue tracker": "https://github.com/lsst-sqre/ltd-conveyor/issues",
        "Source code": "https://github.com/lsst-sqre/ltd-conveyor"
    },
    "split_keywords": [
        "lsst"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0ede641ab9368a88078739b0efaeec9f97da046ed4844991d83b7ebf5060d50",
                "md5": "5ff5e44df10ca7eb2e7ca41e1cb1749a",
                "sha256": "fc09b70f90d6eb5f8d4328295178135093c9855714fc450f6cf9ebf848794b96"
            },
            "downloads": -1,
            "filename": "ltd_conveyor-0.8.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5ff5e44df10ca7eb2e7ca41e1cb1749a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 29162,
            "upload_time": "2024-02-22T20:47:43",
            "upload_time_iso_8601": "2024-02-22T20:47:43.309724Z",
            "url": "https://files.pythonhosted.org/packages/f0/ed/e641ab9368a88078739b0efaeec9f97da046ed4844991d83b7ebf5060d50/ltd_conveyor-0.8.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad05c0bdf2e16fd3371683eb0c1c23f0915af4eb66cfa0e40f5b2009c1cf44ed",
                "md5": "f257c4acb7bac068fb03eb468edf1353",
                "sha256": "f641f845631a6ca5d7f49e90a5f1eb0a17180760f0ab0e13cb6cc9f36043ce91"
            },
            "downloads": -1,
            "filename": "ltd-conveyor-0.8.3.tar.gz",
            "has_sig": false,
            "md5_digest": "f257c4acb7bac068fb03eb468edf1353",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 38444,
            "upload_time": "2024-02-22T20:47:45",
            "upload_time_iso_8601": "2024-02-22T20:47:45.306678Z",
            "url": "https://files.pythonhosted.org/packages/ad/05/c0bdf2e16fd3371683eb0c1c23f0915af4eb66cfa0e40f5b2009c1cf44ed/ltd-conveyor-0.8.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-22 20:47:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lsst-sqre",
    "github_project": "ltd-conveyor",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "ltd-conveyor"
}
        
Elapsed time: 0.19521s