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.3.tar.gz (13.8 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.3-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pygops-0.1.3.tar.gz
  • Upload date:
  • Size: 13.8 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.3.tar.gz
Algorithm Hash digest
SHA256 5c06c974e1847f68cd7e7e6de50ee045590fd1c628c5c6b3808c710b694494fd
MD5 a50c938b000265f2a0e4fda0d6849bcd
BLAKE2b-256 f3cba47bba5da0dece1cc84e26b89c41aea9c99d10b946cf9c45b8ccfbaae4e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygops-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 14.7 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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 cfadad7257c034091fc180e435d0b0ddfa2f70a6ad681eff62509e8abfe965e5
MD5 38d39fe56b345c3c984bd9c460ecac96
BLAKE2b-256 da4e9ed2e3a9202ae8131d31424db37908c4ba979a95217af277c1079448d25b

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