Skip to content

Commit 9eede30

Browse files
authored
Update README.md
1 parent 65f6b97 commit 9eede30

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ and can get called during application workflow.
2424
| iOS |* |
2525

2626
`*` Linux, Windows and MacOS support PyO3 and RustPython as interpreter. Android and IOS
27-
currently only supports RustPython.
28-
Android and iOS might also be able to run PyO3 in theory but require to have CPython
27+
currently only support RustPython.
28+
Android and iOS might also be able to run with PyO3 in theory but would require to have CPython
2929
to be compiled for the target platform. I still need to figure out how to
3030
cross compile python and PyO3 for iOS and Android. Ping me if you know how to do that.
3131

3232
You can use this plugin for fast prototypes or for production code.
3333
It might be possible that you want to use some python library or code that
3434
is not available for rust yet.
35-
In case that you want to ship production software packages, you just need
36-
to make sure to also ship the python code. If you use PyO3, you also need to ship libpython too.
35+
In case that you want to ship production software packages, you need
36+
to make sure to also ship all your python code. If you use PyO3, you also need to ship libpython too.
3737

3838
## Example app
3939

@@ -44,7 +44,7 @@ Javascript in [examples/plain-javascript](https://github.com/marcomq/tauri-plugi
4444
## Add the plugin to an existing tauri application
4545

4646

47-
These steps assume that you already have a basic tauri application available. Alternatively, you can immediately start with the example application.
47+
These steps assume that you already have a basic tauri application available. Alternatively, you can immediately start with the application in "example" directory.
4848

4949
- run `npm run tauri add python`
5050
- add `src-tauri/src-python/main.py` and modify it acording to your needs, for example add `def greet_python(intput): return str(input) + " from python"`

0 commit comments

Comments
 (0)