gopher-mcp-python-native-linux-x64 0.1.1__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.
- gopher_mcp_python_native_linux_x64/__init__.py +24 -0
- gopher_mcp_python_native_linux_x64/lib/libgopher-mcp-event.so +0 -0
- gopher_mcp_python_native_linux_x64/lib/libgopher-mcp-event.so.0 +0 -0
- gopher_mcp_python_native_linux_x64/lib/libgopher-mcp-event.so.0.1.0 +0 -0
- gopher_mcp_python_native_linux_x64/lib/libgopher-mcp-logging.so +0 -0
- gopher_mcp_python_native_linux_x64/lib/libgopher-mcp.so +0 -0
- gopher_mcp_python_native_linux_x64/lib/libgopher-mcp.so.0 +0 -0
- gopher_mcp_python_native_linux_x64/lib/libgopher-mcp.so.0.1.0 +0 -0
- gopher_mcp_python_native_linux_x64/lib/libgopher-orch.so +0 -0
- gopher_mcp_python_native_linux_x64/lib/libgopher-orch.so.0 +0 -0
- gopher_mcp_python_native_linux_x64/lib/libgopher-orch.so.0.1.1 +0 -0
- gopher_mcp_python_native_linux_x64-0.1.1.dist-info/METADATA +58 -0
- gopher_mcp_python_native_linux_x64-0.1.1.dist-info/RECORD +15 -0
- gopher_mcp_python_native_linux_x64-0.1.1.dist-info/WHEEL +5 -0
- gopher_mcp_python_native_linux_x64-0.1.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Native library package for gopher-mcp-python (Linux x64).
|
|
3
|
+
|
|
4
|
+
This package contains the native gopher-mcp-python library for Linux on x64.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import os
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
|
|
10
|
+
__version__ = "0.1.1"
|
|
11
|
+
|
|
12
|
+
# Platform identifier
|
|
13
|
+
PLATFORM = "linux"
|
|
14
|
+
ARCH = "x64"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def get_lib_path() -> Path:
|
|
18
|
+
"""Get the path to the native library directory."""
|
|
19
|
+
return Path(__file__).parent / "lib"
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def get_library_file() -> Path:
|
|
23
|
+
"""Get the path to the native library file."""
|
|
24
|
+
return get_lib_path() / "libgopher-orch.so"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gopher-mcp-python-native-linux-x64
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Native library for gopher-mcp-python (Linux x64)
|
|
5
|
+
Author-email: Gopher Security <dev@gophersecurity.com>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/GopherSecurity/gopher-mcp-python
|
|
8
|
+
Project-URL: Repository, https://github.com/GopherSecurity/gopher-mcp-python
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Requires-Python: >=3.8
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
# gopher-mcp-python-native-linux-x64
|
|
22
|
+
|
|
23
|
+
Native library package for gopher-mcp-python (Linux x64).
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
This package is automatically installed as a dependency of `gopher-mcp-python` on compatible platforms.
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install gopher-mcp-python
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Manual Installation
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pip install gopher-mcp-python-native-linux-x64
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Platform
|
|
40
|
+
|
|
41
|
+
- **OS**: Linux
|
|
42
|
+
- **Architecture**: x64
|
|
43
|
+
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
This package is not meant to be used directly. It provides the native library for the main `gopher-mcp-python` package.
|
|
47
|
+
|
|
48
|
+
```python
|
|
49
|
+
from gopher_mcp_python import GopherAgent
|
|
50
|
+
|
|
51
|
+
agent = GopherAgent.create_with_server_config(provider, model, config)
|
|
52
|
+
answer = agent.run("Hello!")
|
|
53
|
+
agent.dispose()
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
Apache License 2.0
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
gopher_mcp_python_native_linux_x64/__init__.py,sha256=2SJk_GoAdctnCx3TPnYMkmvNw1Du2a8r1nzcGzfrmf0,518
|
|
2
|
+
gopher_mcp_python_native_linux_x64/lib/libgopher-mcp-event.so,sha256=BRKSQkJGU5drjZogoDMtO-jCg5LHMYEJ4tDhN3bBq2k,177240
|
|
3
|
+
gopher_mcp_python_native_linux_x64/lib/libgopher-mcp-event.so.0,sha256=BRKSQkJGU5drjZogoDMtO-jCg5LHMYEJ4tDhN3bBq2k,177240
|
|
4
|
+
gopher_mcp_python_native_linux_x64/lib/libgopher-mcp-event.so.0.1.0,sha256=BRKSQkJGU5drjZogoDMtO-jCg5LHMYEJ4tDhN3bBq2k,177240
|
|
5
|
+
gopher_mcp_python_native_linux_x64/lib/libgopher-mcp-logging.so,sha256=xJVHFlMh_oHvINpiNBV66F31fQdlMclN4LIZJYU0j-o,279096
|
|
6
|
+
gopher_mcp_python_native_linux_x64/lib/libgopher-mcp.so,sha256=CxdtdrzVh0Q54F_nG-mtobXtW2k4qjnihhCHrb1q08A,5931888
|
|
7
|
+
gopher_mcp_python_native_linux_x64/lib/libgopher-mcp.so.0,sha256=CxdtdrzVh0Q54F_nG-mtobXtW2k4qjnihhCHrb1q08A,5931888
|
|
8
|
+
gopher_mcp_python_native_linux_x64/lib/libgopher-mcp.so.0.1.0,sha256=CxdtdrzVh0Q54F_nG-mtobXtW2k4qjnihhCHrb1q08A,5931888
|
|
9
|
+
gopher_mcp_python_native_linux_x64/lib/libgopher-orch.so,sha256=GMuT7TLE0xzsjhTMvbFb7Qn4hQYotoKoeMKJ-WKV9AA,1935200
|
|
10
|
+
gopher_mcp_python_native_linux_x64/lib/libgopher-orch.so.0,sha256=GMuT7TLE0xzsjhTMvbFb7Qn4hQYotoKoeMKJ-WKV9AA,1935200
|
|
11
|
+
gopher_mcp_python_native_linux_x64/lib/libgopher-orch.so.0.1.1,sha256=GMuT7TLE0xzsjhTMvbFb7Qn4hQYotoKoeMKJ-WKV9AA,1935200
|
|
12
|
+
gopher_mcp_python_native_linux_x64-0.1.1.dist-info/METADATA,sha256=Ha1TVGU2RMDU9LNXtykj3L9MQh0nkKkLYch008ORKpA,1614
|
|
13
|
+
gopher_mcp_python_native_linux_x64-0.1.1.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
|
|
14
|
+
gopher_mcp_python_native_linux_x64-0.1.1.dist-info/top_level.txt,sha256=J706yYHhqHn40qzqMuCcM3kHxv14wbEwSNkKsYwRQ20,35
|
|
15
|
+
gopher_mcp_python_native_linux_x64-0.1.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gopher_mcp_python_native_linux_x64
|