Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
1708639776959.sdtroot | 6c3bc7150d | |
1708639776959.sdtroot | 1619406606 | |
1708639776959.sdtroot | 11cdf13d0d |
|
@ -3,6 +3,7 @@ spec:
|
|||
appName: app-test # 앱의 이름입니다.
|
||||
runFile: main.py # 앱의 실행 파일입니다.
|
||||
env:
|
||||
bin: python3
|
||||
virtualEnv: mqtt-s3-env # 사용할 가상환경 이름입니다.
|
||||
package: requirements.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
|
||||
runtime: python3.9
|
||||
|
|
8
main.py
8
main.py
|
@ -5,10 +5,12 @@ import uuid
|
|||
|
||||
# call sdtcloudpubsub
|
||||
sdtcloudMqttClient = sdtcloudpubsub.sdtcloudpubsub()
|
||||
mqttClient = sdtcloudMqttClient.setClient(f"device-app-{uuid.uuid1()}") # parameter is client ID(string)
|
||||
sdtcloudMqttClient.setClient(f"device-app-{uuid.uuid1()}") # parameter is client ID(string)
|
||||
|
||||
# call sdtclouds3
|
||||
sdtcloudS3Client = sdtclouds3.sdtclouds3()
|
||||
S3Id = "" # your S3 AWS Access Key
|
||||
S3Key = "" # your S3 AWS Access Sercet Key
|
||||
sdtcloudS3Client = sdtclouds3.sdtclouds3(S3Id, S3Key)
|
||||
|
||||
|
||||
|
||||
|
@ -20,7 +22,7 @@ def runAction():
|
|||
"message": "Hello World",
|
||||
"uploadFile": result
|
||||
}
|
||||
sdtcloudMqttClient.pubMessage(mqttClient, msg)
|
||||
sdtcloudMqttClient.pubMessage(msg)
|
||||
time.sleep(10)
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in New Issue