English manual for the ZUOYA GMK67 Mechanical Keyboard. Made from the printed version (Original).
This file contains 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
version: '3.3' | |
services: | |
fireflyiii: | |
image: jc5x/firefly-iii:latest | |
volumes: | |
- /srv/FireFly3/firefly_iii_export:/var/www/firefly-iii/storage/export | |
- /srv/FireFly3/firefly_iii_upload:/var/www/firefly-iii/storage/upload | |
env_file: .env | |
ports: |
This file contains 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
# -*- coding: utf-8 -*- | |
import os | |
from html.parser import HTMLParser | |
import dash | |
import pandas as pd | |
import plotly.express as px | |
import requests | |
from dash import html, dcc, dash_table, Input, Output |