smallprint/smallprint.py

165 lines
4.4 KiB
Python
Raw Normal View History

2020-08-31 23:36:47 +02:00
#! /usr/bin/env python
# python imports
import logging
import datetime
import os.path
2020-08-31 23:36:47 +02:00
# 3rd party imports
from escpos.printer import Usb, Dummy, File
2020-09-01 23:35:24 +02:00
import feedparser
import re
import requests
2020-08-31 23:36:47 +02:00
from config import config
# Enable logging
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
level=logging.INFO)
logger = logging.getLogger(__name__)
def initialize():
"""
Initializes the printer and returns a printer object to
generate the print
"""
printer_id = config.get("PRINTER_USB_ID")
if not printer_id:
logger.error("Please configure your printer")
prid1, prid2 = printer_id.split(":")
printer_interface = config.get("PRINTER_INTERFACE") or 0
printer_endpoint = config.get("PRINTER_ENDPOINT") or 0x01
# return Usb(prid1, prid2, printer_interface, printer_endpoint)
return File("/dev/usb/lp2")
def reset_defaults(printer):
"""
Reset the printer to the defaults
"""
printer.set(align='left', font='a', width=1, text_type="normal",
2020-08-31 23:36:47 +02:00
height=1, density=9, invert=False, smooth=False, flip=False)
def print_weather(printer):
reset_defaults(printer)
appkey = config.get("OWM")
if not appkey:
logger.error("Open Weather key not set!")
return
city = config.get("CITY")
if not city:
logger.error("No city set")
params = {"q": city, "APPID": appkey, "units": "metric"}
weatherdata = requests.get('http://api.openweathermap.org/data/2.5/weather', params=params)
if "weather" in weatherdata.json():
weather = weatherdata.json()
today = datetime.datetime.now()
current_day = today.strftime("%a, %d %b, %Y")
printer.set(align="center",
font="a",
text_type="b")
2020-08-31 23:36:47 +02:00
printer.text(f"{current_day}\n\n{city}\n")
reset_defaults(printer)
printer.set(align="center", font="b")
description = weather['weather'][0]['description']
printer.text(f"{description}\n\n")
2020-08-31 23:36:47 +02:00
icon_code = weather['weather'][0]['icon']
if not os.path.exists(f"icons/weather/{icon_code}.png"):
icon_path = "icons/weather/any.png"
else:
icon_path = f"icons/weather/{icon_code}.png"
2020-09-01 23:35:24 +02:00
# TODO: The image impl should be an option
printer.image(icon_path,
impl="bitImageColumn")
printer.text("\n")
2020-08-31 23:36:47 +02:00
# TODO: Print a nice icon based on the codes here: https://openweathermap.org/weather-conditions
temperature = weather['main']['temp']
humidity = weather['main']['humidity']
wind = weather['wind']['speed']
printer.text(f"Temperature: {temperature}C\n")
printer.text(f"Humidity: {humidity}%\n")
printer.text(f"Wind: {wind}km\\h\n")
else:
logger.error("No weather info available")
2020-09-01 23:35:24 +02:00
def print_rss(printer, link, news=1):
"""
Given an RSS link and a printer, prints the news from it
"""
reset_defaults(printer)
feed = feedparser.parse(link)
title = feed["channel"]["title"]
printer.set(align="center",
text_type="BU",
width=2, height=2,
smooth=True)
printer.text(f"{title}\n\n")
reset_defaults(printer)
items = feed["items"][:news]
for item in items:
_print_rss_item(item)
def _print_rss_item(item):
title = item["title"]
date = item["published"]
text = clear_html(item["summary"])
link = item["link"]
printer.set(align="left",
text_type="BU",
smooth=True)
printer.text(f"{title}\n")
reset_defaults(printer)
printer.set(align="right",
font="b")
printer.text(f"{date}\n\n")
printer.text(text)
printer.text("\n")
printer.qr(link, size=6)
printer.text("\n")
def clear_html(text):
cleanr = re.compile('<.*?>|&([a-z0-9]+|#[0-9]{1,6}|#x[0-9a-f]{1,6});')
cleantext = re.sub(cleanr, '', text)
return cleantext
2020-08-31 23:36:47 +02:00
if __name__ == "__main__":
printer = initialize()
print_weather(printer)
printer.text("\n\n")
2020-09-01 23:35:24 +02:00
print_rss(printer, "https://victorhckinthefreeworld.com/feed/")
printer.text("\n\n")
print_rss(printer, "https://pedalibre.org/feed/")
printer.text("\n\n")
print_rss(printer, "https://skyandtelescope.org/observing/sky-at-a-glance/feed/")
printer.text("\n\n")
print_rss(printer, "https://www.space.com/feeds/all", news=2)
printer.text("\n\n")