We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ab456 commit e2e46e4Copy full SHA for e2e46e4
2 files changed
.markdownlint.json
@@ -1,4 +1,5 @@
1
{
2
"MD024": false,
3
- "MD013": {"line_length": 500}
+ "MD013": {"line_length": 500},
4
+ "MD001": false
5
}
README.md
@@ -1,11 +1,18 @@
# PyJavaBridge
-A paper plugin that exposes bukkit APIs to python scripts.
+**Expose bukkit APIs to python scripts via easy-to-use wrappers.**
6
-See examples/ for examples.
+```py
7
+from bridge import *
8
-Put your scripts to plugins/pyjavabridge/scripts and they will be ran on boot.
9
+# Use via /helloworld
10
+@command("Hello world command")
11
+async def helloworld(event: Event):
12
+ event.player.send_message("Hello, World!")
13
+```
14
+
15
+The entire API is, at core, asynchronous.
16
17
## Docs
18
0 commit comments