Initial commit with translated description
This commit is contained in:
13
scripts/config.py
Normal file
13
scripts/config.py
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Configuration for stock-watcher skill.
|
||||
Centralized configuration to avoid path confusion.
|
||||
"""
|
||||
import os
|
||||
|
||||
# Standardized watchlist file path
|
||||
WATCHLIST_DIR = os.path.expanduser("~/.clawdbot/stock_watcher")
|
||||
WATCHLIST_FILE = os.path.join(WATCHLIST_DIR, "watchlist.txt")
|
||||
|
||||
# Ensure directory exists
|
||||
os.makedirs(WATCHLIST_DIR, exist_ok=True)
|
||||
Reference in New Issue
Block a user