Skip to content

Commit 94e4f51

Browse files
authored
Create README.md
1 parent ed86aac commit 94e4f51

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# python-automation
2+
3+
## Getting started
4+
5+
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:
6+
7+
### Using pre-compiled binaries
8+
9+
As an example, to run the "block_expired_licenses" binaries, you can call it as follows on Windows:
10+
11+
```
12+
block_expired_licenses.exe -t tokenHere -p productIdhere -b
13+
```
14+
15+
or on Mac:
16+
17+
```
18+
./block_inactive_licenses -t tokenHere -p productIdhere -b
19+
```
20+
21+
You can add "-h" parameter to see more info and tips on how to use a script.
22+
23+
### Using Python
24+
25+
In console/cmd, run the command below to install all required packages.
26+
27+
```
28+
pip install -r requirements.txt
29+
```
30+
31+
You can then call one of the scripts in this folder to perform an automation task.

0 commit comments

Comments
 (0)