Metadata-Version: 2.1
Name: pulumiverse_purrl
Version: 0.2.3
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
Description-Content-Type: text/markdown

# Purrl

![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.


Replace the version string with your desired version.

## 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/go/...
```

### .NET

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

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


