Compare commits

..

No commits in common. "main" and "v1.0.1" have entirely different histories.
main ... v1.0.1

2 changed files with 2 additions and 3 deletions

View File

@ -3,7 +3,6 @@ spec:
appName: app-name # 앱의 이름입니다.
runFile: main.py # 앱의 실행 파일입니다.
env:
bin: python3
virtualEnv: mqtt-env # 사용할 가상환경 이름입니다.
package: requirements.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
runtime: python3.9

View File

@ -3,14 +3,14 @@ import time
import uuid
sdtcloud = sdtcloudpubsub.sdtcloudpubsub()
sdtcloud.setClient(f"device-app-{uuid.uuid1()}") # parameter is client ID(string)
mqttClient = sdtcloud.setClient(f"device-app-{uuid.uuid1()}") # parameter is client ID(string)
def runAction():
while True:
msg = {
"message": "Hello World"
}
sdtcloud.pubMessage(msg)
sdtcloud.pubMessage(mqttClient, msg)
time.sleep(2)
if __name__ == "__main__":