Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jmelahman/manygo
- Owner: jmelahman
- License: mit
- Created: 2024-12-29T22:56:47.000Z (25 days ago)
- Default Branch: master
- Last Pushed: 2024-12-30T03:04:48.000Z (25 days ago)
- Last Synced: 2025-01-06T06:34:01.313Z (17 days ago)
- Topics: go, golang, packaging, platform, python
- Language: Python
- Homepage: https://pypi.org/project/manygo/
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```