https://github.com/ricardolsmendes/aws-iot-core-client
A Python client for AWS IoT Core
https://github.com/ricardolsmendes/aws-iot-core-client
internet-of-things iot iot-core
Last synced: about 2 months ago
JSON representation
A Python client for AWS IoT Core
- Host: GitHub
- URL: https://github.com/ricardolsmendes/aws-iot-core-client
- Owner: ricardolsmendes
- License: mit
- Created: 2024-11-11T00:38:42.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-24T16:08:38.000Z (5 months ago)
- Last Synced: 2024-11-24T16:38:32.421Z (5 months ago)
- Topics: internet-of-things, iot, iot-core
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# aws-iot-core-client
A sample Python client for AWS IoT Core.
## Usage instructions
1. Set up the IoT infrastructure using the [companion Terraform
repository](https://github.com/ricardolsmendes/aws-iot-sandbox-infra).
2. Create, activate, and set up Python a virtual environment:
```shell
python -m venv env
source ./env/bin/activate
pip install -r requirements.txt
```
_P.S. The requirement versions were validated with Python 3.10._
3. Run the script of your choice as follows.### - publish.py
Simulates a thermometer sending temperature values to the IoT Core endpoint.
```shell
python publish.py \
\
simulated-thermometer-
```## How to contribute
Please make sure to take a moment and read the [Code of
Conduct](https://github.com/ricardolsmendes/aws-iot-core-client/blob/main/.github/CODE_OF_CONDUCT.md).### Report issues
Please report bugs and suggest features via the [GitHub
Issues](https://github.com/ricardolsmendes/aws-iot-core-client/issues).Before opening an issue, search the tracker for possible duplicates. If you find a
duplicate, please add a comment saying that you encountered the problem as well.### Contribute code
Please make sure to read the [Contributing
Guide](https://github.com/ricardolsmendes/aws-iot-core-client/blob/main/.github/CONTRIBUTING.md)
before making a pull request.