Initial commit

This commit is contained in:
2025-12-31 09:47:40 +02:00
commit 08e0107fcc
4 changed files with 56 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# Pypi module
MODULE="greenlet"
# Get version using Pypi Rest API
VERSION=$(curl -s -L https://pypi.org/pypi/"$MODULE"/json | jq -r '.info.version')
echo "$VERSION"