I’d like to announce starlight - https://github.com/starlight-go/starlight.
Starlight wraps google’s Go implementation of the starlark python dialect (most notably found in the Bazel build tool). Starlight makes it super easy for users to extend your application by writing simple python scripts that interact seamlessly with your current Go code… with no boilerplate on your part.
The parser and runner are maintained by google’s bazel team, which write starlark-go. Starlight is a wrapper on top of that, which makes it so much easier to use starlark-go. The problem with the starlark-go API is that it is more built to be a used as configuration, so it assumes you want to get information out of starlark and into Go. It’s actually pretty difficult to get Go information into a starlark script…. unless you use starlight.
Starlight has adapters that use reflection to automatically make any Go value usable in a starlark script. Passing an *http.Request
into a starlark script? Sure, you can do name = r.URL.Query()["name"][0]
in the python without any work on your part.
Starlight is built to just work the way you hope it’ll work. You can access any Go methods or fields, basic types get converted back and forth seamlessly… and even though it uses reflection, it’s not as slow as you’d think. A basic benchmark wrapping a couple values and running a starlark script to work with them runs in a tiny fraction of a millisecond.
The great thing is that the changes made by the python code are reflected in your go objects, just as if it had been written in Go. So, set a field on a pointer to a struct? Your go code will see the change, no additional work needed.
The great thing about starlark and starlight is that the scripts are 100% safe to run. By default they have no access to other parts of your project or system - they can’t write to disk or connect to the internet. The only access they have to the outside is what you give them. Because of this, it’s safe to run untrusted scripts (as long as you’re not giving them dangerous functions to run, like os.RemoveAll
). But at the same time, if you’re only running trusted scripts, you can give them whatever you want (http.Get
? Sure, why not?)
In a production environment, you probably want to only read a script once and parse it once. You can do that with starlight’s Cache
. This cache takes a list of directories to look in for scripts, which it will read and parse on-demand, and then store the parsed object in memory for later use. It also uses a cache for any load()
calls the scripts use to load scripts they depend on.
Starlight is still a work in progress, so don’t expect the API to be perfectly stable quite yet. But it’s getting pretty close, and there shouldn’t be any earth shattering changes, but definitely pin your imports. Right now it’s more about finding corner cases where the starlight wrappers don’t work quite like you’d expect, and supporting the last few things that aren’t implemented yet (like channels).
Example
Here's a simple example of how easy it is to extend the behavior of your application with a python script. Just pass starlight whatever go values you want your python script to act on, and any changes the python code makes get reflected in your go code.
I’d like to announce starlight - https://github.com/starlight-go/starlight.
Starlight wraps google’s Go implementation of the starlark python dialect (most notably found in the Bazel build tool). Starlight makes it super easy for users to extend your application by writing simple python scripts that interact seamlessly with your current Go code… with no boilerplate on your part.
On Friday, December 7, 2018 at 9:05:02 PM UTC+1, Nate Finch wrote:I’d like to announce starlight - https://github.com/starlight-go/starlight.
Starlight wraps google’s Go implementation of the starlark python dialect (most notably found in the Bazel build tool). Starlight makes it super easy for users to extend your application by writing simple python scripts that interact seamlessly with your current Go code… with no boilerplate on your part.
Do you think it is suitable for porting python applications?Usually you go through cgo like this https://www.datadoghq.com/blog/engineering/cgo-and-python/ it could be an interesting alternative.
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
For full, actual python inside Go, one could combine:(a) https://github.com/iodide-project/pyodide has the python scientific stack compiled to wasm (python + numpy + scipy + numplotlib)and(b) either https://github.com/go-interpreter/wagon or https://github.com/perlin-network/life: each provide a wasm byte-code interpreter as a Go library.