pyproc
Run Python like a local function from Go — no CGO, no microservices.
🎯 Purpose & Problem Solved
The Challenge
Go excels at building high-performance web services, but sometimes you need Python:
Machine Learning Models : Your models are trained in PyTorch/TensorFlow
: Your models are trained in PyTorch/TensorFlow Data Science Libraries : You need pandas, numpy, scikit-learn
: You need pandas, numpy, scikit-learn Legacy Code : Existing Python code that's too costly to rewrite
: Existing Python code that's too costly to rewrite Python-Only Libraries: Some libraries only exist in Python ecosystem
Traditional solutions all have major drawbacks:
... continue reading