PyQt6 based timer and remote application for conference talks
Project description
Conference Timer
This project provides a timer and a remote PyQt6 application for a conference timer. The talk and questions times can be set and the timer will provide the speakers with the remaining time.
After installing the package you can run the timer via
ctimer
and the remote via
cremote
Add the -h flag to see the allowed command line arguments.
Alternatively, you can start the timer via python
import conferencetimer
conferencetimer.start_timer()
and accordingly the remote via
import conferencetimer
conferencetimer.start_remote()
If you want to use the remote from a different computer, make sure that both computers are in the same network and that your firewall is configured accordingly.
Remote
The remote functionality is based on a small tcp server which expects a json dictionary with command being one of the following:
- startpause (toggle between running and pause)
- reset (resetting the timer, if talk and qna are specified the time for the talk and the questions is set respectively)
- adjust (adds or subtracts time specified by delta from the timer)
- fullscreen (toggles fullscreen)
Unix systems
You can also control the timer app via the command line with netcat:
echo '{"command": "startpause"}' | nc 127.0.0.1 5555
echo '{"command": "reset", "talk": 30, "qna": 15}' | nc 127.0.0.1 5555
Windows Powershell Example
A small example script to control the timer app via the powershell:
$payload = '{"command":"start"}'
$ip = "192.168.1.50"
$port = 5555
$client = New-Object System.Net.Sockets.TcpClient($ip, $port)
$stream = $client.GetStream()
$writer = New-Object System.IO.StreamWriter($stream)
$writer.Write($payload)
$writer.Flush()
$writer.Close()
$client.Close()
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file conferencetimer-1.0.4.tar.gz.
File metadata
- Download URL: conferencetimer-1.0.4.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
905239b9c79ae6526cb9a684c8b4eaa2708bbfd7423145b00f3af374f4cc6662
|
|
| MD5 |
da8b39f96da2571bcb45092cefe85738
|
|
| BLAKE2b-256 |
ef62622787b19786bafe32a5e1ed90e101bca43a2d82cae571f609d167e5bee1
|
File details
Details for the file conferencetimer-1.0.4-py3-none-any.whl.
File metadata
- Download URL: conferencetimer-1.0.4-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11b4dad372a26b450f3f9cce261783b9e1f25ba5b498733d1876fcbc7da876ce
|
|
| MD5 |
7e6b0fc2fa50607ce76a70cfd2096b9f
|
|
| BLAKE2b-256 |
65bcb6ca64d2d962cea62b821b8fbee8e7196f62c8c5ef41dd9f0c3285490c06
|