https://github.com/agermanidis/pyalphaclock
Simple Pythonic library for manipulating the screen of the Alpha Clock Five
https://github.com/agermanidis/pyalphaclock
Last synced: 8 months ago
JSON representation
Simple Pythonic library for manipulating the screen of the Alpha Clock Five
- Host: GitHub
- URL: https://github.com/agermanidis/pyalphaclock
- Owner: agermanidis
- License: mit
- Created: 2015-07-19T01:17:13.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-19T01:24:45.000Z (almost 11 years ago)
- Last Synced: 2025-09-29T04:26:45.723Z (9 months ago)
- Language: Python
- Size: 125 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyAlphaClock: Library for interacting with the Alpha Clock Five
Simple Pythonic library for manipulating the screen of the [Alpha Clock Five](http://wiki.evilmadscientist.com/Alpha_Clock_Five) desk clock by [Evil Mad Scientist](http://www.evilmadscientist.com/).
### Installation
```
pip install pyalphaclock
```
### Usage
```python
> from pyalphaclock import AlphaClock
> clock = AlphaClock()
> clock.clear_screen()
> clock.display_scrolling_text("Hello everybody")
> from datetime import datetime
> now = datetime.now()
> clock.display_time(now)
> clock.display_date(now)
```
### License
MIT