More cleanup, merged pymumble into the project so I don't have to maintain 2 separate things, tested working version.

This commit is contained in:
Storm Dragon
2025-06-14 00:23:09 -04:00
parent bfbfe30be4
commit 947ec68754
36 changed files with 5861 additions and 551 deletions

11
pymumble_py3/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
#
# pymumble_py3 - Integrated from https://github.com/azlux/pymumble
# This is a complete copy of the pymumble library integrated into Bragi
# to avoid external dependency issues after the original project maintenance stopped.
#
import os
# Fix protobuf compatibility issue with Python 3.13
os.environ.setdefault('PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION', 'python')
from .mumble import Mumble