Corrections to README

This commit is contained in:
MarStr 2024-07-09 13:36:27 +02:00
parent 8c10e442ac
commit 252f75694a

View File

@ -46,15 +46,15 @@ If you want to use AWS and its services elsewhere, you are of course free to ins
You will need two Python modules: boto3 and pygame. Install them like so: You will need two Python modules: boto3 and pygame. Install them like so:
```python ```python
pip install boto3 pip install boto3\
pip install pygame pip install pygame
``` ```
Next, open up the Pilot2AWS.py script with your favorite editor and make the necessary adjustments as follows: Next, open up the Pilot2AWS.py script with your favorite editor and make the necessary adjustments as follows:
```python ```python
atc_aws_key = "YOUR_AWS_KEY" atc_aws_key = "YOUR_AWS_KEY"\
atc_aws_secret = "YOUR_AWS_SECRET" atc_aws_secret = "YOUR_AWS_SECRET"\
atc_aws_region = "SERVER REGION" atc_aws_region = "SERVER REGION"
``` ```