Cloud Simplify is a package for handling aws services with simple functions
Project description
simplify
Under construction! Not ready for use yet! Currently experimenting and planning!
Developed by R Sanjeev Rao for Cloud services (c) 2022
Examples of How To Use (AWS Service)
Testing on Python file
from norconnect.classes import AWS
from norconnect.constants import AWSServices
sqs_url='https://sqs.ap-southeast-1.amazonaws.com/....../sqs.fifo'
saws=AWS(services=[AWSServices.SQS],region="**************",aws_access_key="*********",aws_secret_key="************",secrets_name='stage/repo')
def print_data(data):
print(data)
return True
saws.create_sqs_loop(sqs_url=sqs_url,callback=print_data,name='Print_Loop')
saws.run_sqs_loops()
time.sleep(10)
Flask Example run.py
from app import app
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, debug=True)
__init__.py
from flask import Flask
from norconnect.classes import AWS
from norconnect.constants import AWSServices
app = Flask("test-ms")
saws=AWS(services=[AWSServices.SQS],region="**************",aws_access_key="*********",aws_secret_key="************", secrets_name='stage/repo')
print(saws.get_secrets())
# from .test import start_testing
# start_testing(saws)
test.py
import time
from norconnect.classes import AWS
from norconnect.constants import AWSServices
def start_testing():
sqs_url='https://sqs.ap-southeast-1.amazonaws.com/....../sqs.fifo'
def print_data(data):
print(data)
return True
saws.create_sqs_loop(sqs_url=sqs_url,callback=print_data,name='Print_Loop')
saws.run_sqs_loops()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
norconnect-0.0.11.tar.gz
(5.3 kB
view details)
File details
Details for the file norconnect-0.0.11.tar.gz.
File metadata
- Download URL: norconnect-0.0.11.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3540ff95a1fd7ece405ebe52eaadf8513a94b7a942b5940c667570a910375a2
|
|
| MD5 |
18a7b59baddaecf92364c957f2204318
|
|
| BLAKE2b-256 |
77298a63905fe72366d6d3b79fac90c835dac4aac34093bc54e73bed77a17ae7
|