Skip to content

Instantly share code, notes, and snippets.

View abayomi185's full-sized avatar
🚀

Yomi Ikuru abayomi185

🚀
View GitHub Profile
@mcarlton00
mcarlton00 / Jellyfin-api-auth-example.py
Last active May 29, 2024 10:44
Example for authenticating to Jellyfin API from Python
import requests
# Define connection details
server_url = 'http://192.168.0.200:8096'
username = 'User'
password = 'Password'
# Build json payload with auth data
auth_data = {
'username': username,
@cliffrowley
cliffrowley / STREAMDECK_HID.md
Last active June 6, 2024 02:47
Notes on the Stream Deck HID protocol

Stream Deck Protocol

How to interface with a Stream Deck device.

Synopsis

The device uses the HID protocol to communicate with its software.

Configuration