This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import uuid | |
| # Change this value to | |
| speaker_ip = "192.168.xxx.yyy" | |
| # Queue are identify by an uuid, we can generate a uuid to create a new queue | |
| queue_uuid = uuid.uuid4() | |
| print(queue_uuid) |