Skip to content

Commit

Permalink
chore: update python sdk (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirien authored Dec 20, 2022
1 parent 5c55cfc commit 3fe7da0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion sdk/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/nodejs/bin/
/nodejs/node_modules/
/python/bin/
/java/.gradle/
**/build/libs/
**/.gradle
Binary file removed sdk/java/build/libs/com.pulumiverse.purrl.jar
Binary file not shown.
15 changes: 9 additions & 6 deletions sdk/python/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# 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.
[![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)

Replace the version string with your desired version.
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

Expand All @@ -28,7 +27,7 @@ yarn add @pulumiverse/purrl
### Python

To use from Python, install using `pip`:

``
```bash
pip install pulumiverse-purrl
```
Expand All @@ -38,7 +37,7 @@ pip install pulumiverse-purrl
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/...
go get github.com/pulumiverse/pulumi-purrl/sdk
```

### .NET
Expand All @@ -48,3 +47,7 @@ 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/).

0 comments on commit 3fe7da0

Please sign in to comment.