Skip to main content

Python bindings for go-template with helmfile/sprig functions

Project description

Go-template

Based on https://github.com/harsh-98/go-template

!!! Do not work in Linux Alpine

Overview

Python bindings for go text/template with sprig and helmfile functions

Quickstart

Build from sources

go_template tested by Python 3.8+.

# install go
make lib

Example

Content of sample.tmpl

{{.Count}} items are made of {{.Material}}
  1. Render template from dict values
>>> import go_template
>>> from pathlib import Path
>>> values = {"Count": 12, "Material": "Wool"}
>>> go_template.render(Path('tests/sample.tmpl'), values)
b'12 items are made of Wool'

Content of values.yml

Count: 12
Material: Wool
  1. Render template from values.yml file
>>> import go_template
>>> from pathlib import Path
>>> go_template.render_from_values_file(Path('tests/sample.tmpl'), Path('tests/values.yml'))
b'12 items are made of Wool'

NOTE: Paths provided to render_template should either be absolute path or relative to directory where it is ran.

Build shared library

For building a fresh shared object of text/template, you must have golang^1.5 installed.

make lib

This will create template.so in the bind folder.

Motivation

Currently, there is no python package which exposes golang text/template functionality to python. And I am in the process of learning about interoperability between different languages. So, I started working on this as a learning project.

Explanation

Golang library cannot be directly used in python. Firstly, we have to compile it as shared object or archive for interoperability with C. And then create python bindings for this C object.

CPython is the original Python implementation and provides cpython API for creating python wrapper, but the wrapping code is in C. There is a library gopy which exactly uses this approach. But it works only on go1.5 and for python2.

If we want to write the wrapping code in python, there are Cython and ctypes. Ctypes allow directly importing the C library and calling functions through its interface. This project uses ctypes for calling go functions.

When a golang library is compiled as shared object, cgo handles exposing functions and data type conversion. Using ctypes, we can only modify simple data type, string, int, float, bool. I tried converting python class to golang struct, but it failed.

So, I created a golang wrapper over text/template library, which takes simple datatypes. And handles complex operation in this layer. Then a python wrapper over this layer using ctypes.

It is far from complete and doesn't use the best approach. Currently, it has only one function which takes path of template and value file. And depending on the third argument, either writes to stdout if empty or to file if given its path.

License

This project is licensed under MIT License.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

py_go_template-1.0.0-py3-none-win_amd64.whl (2.4 MB view details)

Uploaded Python 3 Windows x86-64

py_go_template-1.0.0-py3-none-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded Python 3 macOS 11.0+ ARM64

File details

Details for the file py_go_template-1.0.0-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_go_template-1.0.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 4991aba8d26e6ec4cddec2a99dd5e1a37c114a480934f7dd66b5f7134c61e2cb
MD5 4ee1737607ec05ff93bfa1a470f9305c
BLAKE2b-256 c95d7e83ec3b808c8faa824f96852817815c5877e8ce7f8fd600db5b13f0c6cd

See more details on using hashes here.

File details

Details for the file py_go_template-1.0.0-py3-none-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_go_template-1.0.0-py3-none-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c681d3b94118276438ea2473aa8ac174a5b74d8db42c632fad92b17e0a4244ac
MD5 629ecf66aac5c6c1f6ccbcd972712fb9
BLAKE2b-256 a4b62d985ba1480ebae3fa81009c37a41b8a925d2f558676da7c2d8d768246e6

See more details on using hashes here.

File details

Details for the file py_go_template-1.0.0-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_go_template-1.0.0-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43f44dc79e7480d4c144b23c77fc6fd9ba451913a570334f9a46147a04fd6334
MD5 85de1b122ee289daea26f3e5657cbd54
BLAKE2b-256 f2335d3486f2ace7fa8a411ce6416dc4e40f279fb00d0feb9885f633be4061b5

See more details on using hashes here.

Supported by

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