py2hackCraft2 1.0.35__tar.gz → 1.1.39__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,70 @@
1
+ Metadata-Version: 2.4
2
+ Name: py2hackCraft2
3
+ Version: 1.1.39
4
+ Summary: Python client library for hackCraft2
5
+ Home-page: https://github.com/0x48lab/hackCraft2-python
6
+ Author: masafumi_t
7
+ Author-email: masafumi_t@0x48lab.com
8
+ Project-URL: Documentation, https://0x48lab.github.io/hackCraft2-python/
9
+ Project-URL: Source, https://github.com/0x48lab/hackCraft2-python
10
+ Project-URL: Bug Tracker, https://github.com/0x48lab/hackCraft2-python/issues
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.7
15
+ Description-Content-Type: text/markdown
16
+ Requires-Dist: websocket-client>=1.6.0
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: home-page
23
+ Dynamic: project-url
24
+ Dynamic: requires-dist
25
+ Dynamic: requires-python
26
+ Dynamic: summary
27
+
28
+ # py2hackCraft2
29
+
30
+ Python client library for hackCraft2
31
+
32
+ ## 概要
33
+
34
+ py2hackCraft2は、hackCraft2にPythonから接続して命令を送るためのライブラリです。
35
+
36
+ hackCraft2はMinecraft Java Editionのサーバープラグインで、このプラグインを導入することで、Minecraft上でプログラミングが可能になります。hackCraft2の詳細については、[hackCraft2のダウンロードページ](https://github.com/yokmama/8x9Craft-download)をご参照ください。
37
+
38
+ Minecraftについての詳細は、インターネットで検索していただければと思います。
39
+
40
+ py2hackCraft2を使用することで、hackCraft2が導入されたMinecraftサーバーに対して、Pythonから直接命令を送ることができます。
41
+
42
+ ## ドキュメント
43
+
44
+ 詳細なAPIリファレンスと使用例は[ドキュメント](https://0x48lab.github.io/hackCraft2-python/)を参照してください。
45
+
46
+ ## インストール方法
47
+
48
+ ```bash
49
+ pip install py2hackCraft2
50
+ ```
51
+
52
+ ## 使用方法
53
+
54
+ ```python
55
+ from py2hackCraft2.modules import Player, Volume, LocationFactory
56
+
57
+ # プレイヤーの接続
58
+ player = Player("your_name")
59
+ player.login("localhost", 25570)
60
+
61
+ # エンティティの取得と操作
62
+ entity = player.get_entity("entity_name")
63
+ entity.set_event_area(Volume.local(10, 10, 10, -10, -10, -10))
64
+
65
+ # その他の操作...
66
+ ```
67
+
68
+ ## ライセンス
69
+
70
+ MIT License
@@ -0,0 +1,43 @@
1
+ # py2hackCraft2
2
+
3
+ Python client library for hackCraft2
4
+
5
+ ## 概要
6
+
7
+ py2hackCraft2は、hackCraft2にPythonから接続して命令を送るためのライブラリです。
8
+
9
+ hackCraft2はMinecraft Java Editionのサーバープラグインで、このプラグインを導入することで、Minecraft上でプログラミングが可能になります。hackCraft2の詳細については、[hackCraft2のダウンロードページ](https://github.com/yokmama/8x9Craft-download)をご参照ください。
10
+
11
+ Minecraftについての詳細は、インターネットで検索していただければと思います。
12
+
13
+ py2hackCraft2を使用することで、hackCraft2が導入されたMinecraftサーバーに対して、Pythonから直接命令を送ることができます。
14
+
15
+ ## ドキュメント
16
+
17
+ 詳細なAPIリファレンスと使用例は[ドキュメント](https://0x48lab.github.io/hackCraft2-python/)を参照してください。
18
+
19
+ ## インストール方法
20
+
21
+ ```bash
22
+ pip install py2hackCraft2
23
+ ```
24
+
25
+ ## 使用方法
26
+
27
+ ```python
28
+ from py2hackCraft2.modules import Player, Volume, LocationFactory
29
+
30
+ # プレイヤーの接続
31
+ player = Player("your_name")
32
+ player.login("localhost", 25570)
33
+
34
+ # エンティティの取得と操作
35
+ entity = player.get_entity("entity_name")
36
+ entity.set_event_area(Volume.local(10, 10, 10, -10, -10, -10))
37
+
38
+ # その他の操作...
39
+ ```
40
+
41
+ ## ライセンス
42
+
43
+ MIT License