Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jmelahman/manygo

python library with helpers for packaging golang source code
https://github.com/jmelahman/manygo

go golang packaging platform python

Last synced: 17 days ago
JSON representation

python library with helpers for packaging golang source code

Awesome Lists containing this project

README

        

# manygo

A Python library for generating platform-specific tags for Golang packages and binaries.

## Features

- Convert Golang platform identifiers (GOOS and GOARCH) to Python platform tags

## Installation

```bash
pip install manygo
```

## Usage

```python
>>> import manygo
>>> manygo.get_platform_tag('linux', 'amd64')
'manylinux_2_17_x86_64'

>>> manygo.get_platform_tag('darwin', 'arm64')
'macosx_11_0_arm64'
```