1 Commits

Author SHA1 Message Date
c3161f5e8e Add nix flake 2026-02-19 22:17:03 +01:00
6 changed files with 29 additions and 25 deletions

View File

@@ -1,13 +1,13 @@
# Maintainer: <szymon_jozef@proton.me>
_pkgname="zutui"
pkgname="$_pkgname-git"
pkgver="1.0.0.r8.ceefa47"
pkgrel=4
pkgver=1.0.0
pkgrel=1
pkgdesc="TUI for accessing edziekanat of ZUT university"
arch=("any")
url="https://github.com/shv187/zutui"
license=("MIT")
depends=("python" "python-keyring" "python-textual" "python-appdirs" "python-beautifulsoup4" "python-requests")
depends=("python" "python-keyring" "python-textual")
makedepends=("git" "python-build" "python-installer" "python-wheel" "python-setuptools")
provides=("zutui")
conflicts=("zutui")
@@ -16,7 +16,7 @@ sha256sums=("SKIP")
pkgver() {
cd "$_pkgname"
printf "1.0.0.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {

View File

@@ -36,7 +36,6 @@
textual
requests
beautifulsoup4
appdirs
];
meta = with pkgs.lib; {
@@ -47,14 +46,6 @@
};
};
};
devShells = {
default = pkgs.mkShell {
inputsFrom = [ self.packages.${system}.default ];
};
};
}
);
}

View File

@@ -9,8 +9,7 @@ setup(
"beautifulsoup4",
"textual",
"keyring",
"pywin32; sys_platform == 'win32'",
"appdirs",
"pywin32; sys_platform == 'win32'"
],
entry_points={
'console_scripts': [

19
zut_app/config.py Normal file
View File

@@ -0,0 +1,19 @@
import os
import platform
USER_HOME = os.path.expanduser("~")
WINDOWS_PATH = "zutui" # probably should be in %AppData% or something, but I'm not sure, so I won't change it
LINUX_PATH = ".config/zutui"
def get_config_path():
system = platform.system()
if system == "Windows":
APP_DIR = os.path.join(USER_HOME, WINDOWS_PATH)
elif system in ["Linux", "Darwin"]:
APP_DIR = os.path.join(USER_HOME, LINUX_PATH)
else:
print(f"System {system} not supported, aborting...")
exit(1)
if not os.path.exists(APP_DIR):
os.makedirs(APP_DIR)
return APP_DIR

View File

@@ -1,18 +1,13 @@
import requests
from bs4 import BeautifulSoup
import json
from appdirs import user_config_dir, user_cache_dir
import os
app_name = "zutui"
app_author = "shv187"
from .config import get_config_path
CONFIG_DIR = user_config_dir(app_name, app_author)
CACHE_DIR = user_cache_dir(app_name, app_author)
os.makedirs(CACHE_DIR, exist_ok=True)
os.makedirs(CONFIG_DIR, exist_ok=True)
APP_DIR = get_config_path()
CACHE_FILE = os.path.join(CACHE_DIR, "grades_cache.json")
CACHE_FILE = os.path.join(APP_DIR, "grades_cache.json")
TIMEOUT = 10
class ZUT:

View File

@@ -3,7 +3,6 @@ import os
import keyring
from keyring.errors import KeyringError
from datetime import datetime
from appdirs import user_config_dir
from textual.app import App, ComposeResult
from textual.containers import Container
from textual.widgets import Header, Footer, DataTable, Label, Button, Input
@@ -11,8 +10,9 @@ from textual.screen import Screen
from textual.binding import Binding
from .zut_client import ZUT
from .config import get_config_path
APP_DIR = user_config_dir("zutui", "shv187")
APP_DIR = get_config_path()
CONFIG_FILE = os.path.join(APP_DIR, "config.json")
REFRESH_INTERVAL = 1800