https://github.com/cryptolens/python-automation
Contains a collection of scripts to automate processes related to Cryptolens
https://github.com/cryptolens/python-automation
Last synced: 8 months ago
JSON representation
Contains a collection of scripts to automate processes related to Cryptolens
- Host: GitHub
- URL: https://github.com/cryptolens/python-automation
- Owner: Cryptolens
- License: mit
- Created: 2023-02-07T11:55:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-08-15T12:30:29.000Z (10 months ago)
- Last Synced: 2025-10-09T19:05:14.413Z (8 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-automation
## Getting started
There are two ways of running the scripts in this repository. Either you can use the pre-compiled binaries (Windows, Mac) or run it in Python. We cover the way it can run in Python below:
### Using pre-compiled binaries
As an example, to run the "block_expired_licenses" binaries, you can call it as follows on Windows:
```
block_expired_licenses.exe -t tokenHere -p productIdhere -b
```
or on Mac:
```
./block_inactive_licenses -t tokenHere -p productIdhere -b
```
You can add "-h" parameter to see more info and tips on how to use a script, i.e.
```
./block_inactive_licenses -h
```
### Using Python
In console/cmd, run the command below to install all required packages.
```
pip install -r requirements.txt
```
You can then call one of the scripts in this folder to perform an automation task.
> If you already have `licensing` package installed in your environmment, you may need to update it to the latest version. This script requires v_39 or above.