pyopensoundcontrol 1.0.8__py3-none-any.whl

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,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyopensoundcontrol
3
+ Version: 1.0.8
4
+ Summary: A package to add fully featured OSC support to python
5
+ Author-email: Morph Tollon <code@morphtollon.co.uk>
6
+ Maintainer-email: Morph Tollon <code@morphtollon.co.uk>
7
+ License-Expression: MIT
8
+ Project-URL: Repository, https://github.com/Theatre-Tools/PyOSC
9
+ Project-URL: Homepage, https://github.com/Theatre-Tools/PyOSC
10
+ Project-URL: Issues, https://github.com/Theatre-Tools/PyOSC/issues
11
+ Keywords: osc,sound,midi,music,sockets,transport,Lighting,Theatre
12
+ Requires-Python: <4.0.0,>=3.13
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: oscparser<3.0.0,>=2.0.3
16
+ Dynamic: license-file
17
+
18
+ # PyOSC
19
+
20
+ Python library to support OSC (Open Sound Control).
21
+
22
+ ## About the Project
23
+
24
+ I had issues getting the support I needed out of any of the other packages, so I decide how hard can it be...
25
+
26
+ ## Features
27
+ - Support for both UDP and TCP transport protocols
28
+ - Flexible message handling with customizable handlers
29
+ - Support for both OSC version 1.0 and 1.1
30
+ - Background processing of incoming messages to avoid blocking the main thread
31
+ - Simple API for sending OSC messages to remote hosts
@@ -0,0 +1,5 @@
1
+ pyopensoundcontrol-1.0.8.dist-info/licenses/LICENSE,sha256=Zo8TkkPVFAfN8AD4HkV0NDtrBeuSUidOMjGW097Sm9E,1074
2
+ pyopensoundcontrol-1.0.8.dist-info/METADATA,sha256=K_4ZF7Vg-yAd4-tl27pD7FT_uTrzFEhUIz8I-Y35l7M,1160
3
+ pyopensoundcontrol-1.0.8.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
4
+ pyopensoundcontrol-1.0.8.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
5
+ pyopensoundcontrol-1.0.8.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-2026 Morph Tollon
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.