tauri-plugin-python 0.3.9

A tauri 2 plugin to use python code in the backend.
Documentation
## Default Permission

Default permissions for the plugin

#### This default permission set includes the following:

- `allow-call-function`
- `allow-read-variable`

## Permission Table

<table>
<tr>
<th>Identifier</th>
<th>Description</th>
</tr>


<tr>
<td>

`python:allow-call-function`

</td>
<td>

Enables the call_function command without any pre-configured scope.

</td>
</tr>

<tr>
<td>

`python:deny-call-function`

</td>
<td>

Denies the call_function command without any pre-configured scope.

</td>
</tr>

<tr>
<td>

`python:allow-read-variable`

</td>
<td>

Enables the read_variable command without any pre-configured scope.

</td>
</tr>

<tr>
<td>

`python:deny-read-variable`

</td>
<td>

Denies the read_variable command without any pre-configured scope.

</td>
</tr>

<tr>
<td>

`python:allow-register-function`

</td>
<td>

Enables the register_function command without any pre-configured scope.

</td>
</tr>

<tr>
<td>

`python:deny-register-function`

</td>
<td>

Denies the register_function command without any pre-configured scope.

</td>
</tr>

<tr>
<td>

`python:allow-run-python`

</td>
<td>

Enables the run_python command without any pre-configured scope.

</td>
</tr>

<tr>
<td>

`python:deny-run-python`

</td>
<td>

Denies the run_python command without any pre-configured scope.

</td>
</tr>
</table>