Metadata-Version: 2.1
Name: pulumiverse-purrl
Version: 0.4.0
Summary: A Pulumi native provider for making API calls
Home-page: https://pulumi.com
License: Apache-2.0
Project-URL: Repository, https://github.com/pulumiverse/pulumi-purrl
Keywords: pulumi command category/utility kind/native
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Purrl

[![Go Reference](https://pkg.go.dev/badge/github.com/pulumiverse/pulumi-purrl/sdk.svg)](https://pkg.go.dev/github.com/pulumiverse/pulumi-purrl/sdk)

![purrl_logo](img/purrl.png)

This provider is designed to be a flexible extension of your Pulumi code to make API calls to your target endpoint. `Purrl` is useful when a provider does not have a resource or data source that you require, so `Purrl` can be used to make substitute API calls.

## Installing

This package is available for several languages/platforms:

### Node.js (JavaScript/TypeScript)

To use from JavaScript or TypeScript in Node.js, install using either `npm`:

```bash
npm install @pulumiverse/purrl
```

or `yarn`:

```bash
yarn add @pulumiverse/purrl
```

### Python

To use from Python, install using `pip`:
``
```bash
pip install pulumiverse-purrl
```

### Go

To use from Go, use `go get` to grab the latest version of the library:

```bash
go get github.com/pulumiverse/pulumi-purrl/sdk
```

### .NET

To use from .NET, install using `dotnet add package`:

```bash
dotnet add package Pulumiverse.Purrl
```

## Reference

For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/purrl/api-docs/).


