Skip to main content

Python wrapper for Go applications with PowerShell launcher

Reason this release was yanked:

Broken

Project description

pygops

Python wrapper for running Go applications via PowerShell.

pip install pygops

Requirements

  • Python 3.8 or higher

  • PowerShell installed and accessible in PATH

  • Go installed for running Go applications

  • Dependencies (installed automatically):

    • loguru
    • toomanyports
    • aiohttp (for server health checks)

Usage

Launch a Go script manually

from pygops import GoLauncher

launcher = GoLauncher(
    go_file="path/to/script.go",
    script_path=script_path,
    verbose=True,
    port=5000  # optional: will kill existing or choose random if omitted
)
launcher.thread.start()

Run a Go server with health check

import asyncio
from pygops import GoServer, get_go_launcher_script

script = get_go_launcher_script()
server = GoServer(
    go_file="path/to/main.go",
    script_path=script,
    port=4000,
    verbose=True
)

async def main():
    await server.start()
    running = await server.is_running()
    print(f"Server running: {running}")
    # ... later ...
    await server.stop()

asyncio.run(main())

Execute Go script in its own thread

from pygops import GoThread, get_go_launcher_script

thread = GoThread(
    go_file="path/to/task.go",
    script_path=get_go_launcher_script(),
    go_args=["--flag", "value"],
    verbose=True
)
thread.start()
# Do other work...
if thread.is_running():
    thread.terminate()

License

Released under the MIT License. See LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pygops-0.1.1.tar.gz (13.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pygops-0.1.1-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file pygops-0.1.1.tar.gz.

File metadata

  • Download URL: pygops-0.1.1.tar.gz
  • Upload date:
  • Size: 13.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pygops-0.1.1.tar.gz
Algorithm Hash digest
SHA256 f3a386bfdb59312642026a4365f86e0f70dd34441a66d0032711f855db7f9ab4
MD5 55e138622ed70e1b6298b7bcdd5108d2
BLAKE2b-256 f26e9523e61687eeb1351487e9d264d1517b242c3be389cce0bc25f6790e64db

See more details on using hashes here.

File details

Details for the file pygops-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pygops-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pygops-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8b15b0fca5647221529673e28fe80c8cbae499c5953a0863a3ab6ff7694a1900
MD5 93e8dfbb34b65ca8a01214d90ec692f3
BLAKE2b-256 87b2c18d5bde1f6bf4640ff650c0f04abd9cbca3dce83ce8bce4a00902e63548

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page