{"id":18867967,"url":"https://github.com/cfeenstra67/pylumi","last_synced_at":"2026-04-29T00:05:39.088Z","repository":{"id":57456116,"uuid":"305860900","full_name":"cfeenstra67/pylumi","owner":"cfeenstra67","description":"A Python API for interacting with Pulumi resource providers","archived":false,"fork":false,"pushed_at":"2023-06-12T03:32:11.000Z","size":5736,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-01T02:09:18.425Z","etag":null,"topics":["infrastructure-as-code","pulumi","pulumi-python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cfeenstra67.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-10-20T23:56:09.000Z","updated_at":"2023-05-28T01:54:45.000Z","dependencies_parsed_at":"2024-06-20T11:11:43.614Z","dependency_job_id":"184fb8a5-e71d-44b9-9fd5-2645b912a6c3","html_url":"https://github.com/cfeenstra67/pylumi","commit_stats":{"total_commits":180,"total_committers":1,"mean_commits":180.0,"dds":0.0,"last_synced_commit":"95818c852d806b9a57a7516e2c502934f003b265"},"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cfeenstra67%2Fpylumi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cfeenstra67%2Fpylumi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cfeenstra67%2Fpylumi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cfeenstra67%2Fpylumi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cfeenstra67","download_url":"https://codeload.github.com/cfeenstra67/pylumi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239816482,"owners_count":19701753,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["infrastructure-as-code","pulumi","pulumi-python"],"created_at":"2024-11-08T05:12:02.532Z","updated_at":"2026-02-13T17:30:15.471Z","avatar_url":"https://github.com/cfeenstra67.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"############\nPylumi\n############\n\n|tests-passing| |build-passing| |docs| |pypi-version| |pypi-license|\n\nPurpose\n########\n\n**Pylumi** is a Python API providing the ability to manage `pulumi \u003chttps://github.com/pulumi/pulumi\u003e`_ resource plugin contexts and interact with the resource `Provider \u003chttps://github.com/pulumi/pulumi/blob/89c956d18942c1fcbf687da3052dd26089d8f486/sdk/go/common/resource/plugin/provider.go#L37\u003e`_ interface. It was originally created to allow `statey \u003chttps://github.com/cfeenstra67/statey\u003e`_ to re-use Pulumi resource providers, however the implementation is generic and could be reused for anything as desired.\n\nUsage Example\n##############\n\n.. code-block:: python\n\n   import pylumi\n\n   with pylumi.Context() as ctx, \\\n        ctx.provider('aws', {'region': 'us-east-1'}) as aws:\n\n       resp = aws.create(\n           pylumi.URN('aws:s3/bucketObject:BucketObject'),\n           {'bucket': 'some-bucket', 'key': 'some-key', 'content': 'Hello, world!'},\n       )\n\n\nInstallation\n#############\n\nBefore installing `pylumi`, you must have Go installed on your system. For additional information, see the `Go Programming Language Installation Page \u003chttps://golang.org/doc/install\u003e`_.\n\nOnce that is done, install this package using:\n\n.. code-block:: bash\n   \n   $ pip install pylumi\n\n_NOTE_: There are only wheels available for Mac OS X. If you are trying to download on Linux, you'll have to have Go 1.16+ installed.\n\nCompatibility\n###############\n\nTests are passing on Mac OS X and Ubuntu, see recent test runs in `Actions \u003chttps://github.com/cfeenstra67/pylumi/actions\u003e`_ for details.\n\nDocumentation\n##############\n\nDocumentation for Pylumi is hosted on Read the Docs: https://pylumi.readthedocs.io/.\n\nDevelopment\n##############\n\nIn order to build for development, you'll want to install all of the Python requirements first:\n\n.. code-block:: bash\n\n   $ pip install -r requirements.txt -r requirements-tests.txt -r requirements-dev.txt\n\nThen build the extension modules. You will need Go 1.16+ installed on your system:\n\n.. code-block:: bash\n\n   $ python setup.py build_ext --inplace\n\nContact\n#########\n\nIf you have issues using this repository please open a issue or reach out to me at cameron.l.feenstra@gmail.com.\n\n\n.. |docs| image:: https://readthedocs.org/projects/pylumi/badge/?version=latest\n    :alt: Documentation Status\n    :scale: 100%\n    :target: https://pylumi.readthedocs.io/en/latest/?badge=latest\n\n.. |pypi-version| image:: https://pypip.in/v/pylumi/badge.png\n    :target: https://pypi.org/project/pylumi/\n    :alt: Latest PyPI version\n\n.. |pypi-downloads| image:: https://pypip.in/d/pylumi/badge.png\n    :target: https://pypi.org/project/pylumi/\n    :alt: Number of PyPI downloads\n\n.. |pypi-license| image:: https://img.shields.io/pypi/l/pylumi.svg\n    :target: https://pypi.org/project/pylumi/\n    :alt: PyPI License\n\n.. |tests-passing| image:: https://github.com/cfeenstra67/pylumi/workflows/Run%20tests/badge.svg\n\t:target: https://github.com/cfeenstra67/pylumi/actions?query=workflow%3A%22Run+tests%22\n\t:alt: Tests Passing\n\n.. |build-passing| image:: https://github.com/cfeenstra67/pylumi/workflows/Upload%20to%20PyPI/badge.svg\n\t:target: https://github.com/cfeenstra67/pylumi/actions?query=workflow%3A%22Upload+to+PyPI%22\n\t:alt: Build Passing\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcfeenstra67%2Fpylumi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcfeenstra67%2Fpylumi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcfeenstra67%2Fpylumi/lists"}