- Add wrike_monitor_lgl.py for LGL Team board
* Updated API token and space configuration
* All 11 custom fields mapped correctly
* OMG# field now stores HTML links (matching LGL Team format)
* Recursive duplicate detection across entire Business Areas folder
* Handles HTML link extraction for accurate comparison
- Add discover_board_info.py
* Automated discovery tool for board configuration
* Finds space IDs, custom field IDs, and item types
* Generates configuration snippets
- Add config_lgl_team.py
* Reference configuration for LGL Team space
* Complete field mapping documentation
- Add test_duplicate_detection.py
* Testing tool to verify duplicate detection logic
* Can search for specific OMG# values
- Update requirements.txt
- Remove wrike_import.py (moved to OLD/)
Key Features:
- NO DUPLICATES: Searches entire Business Areas folder before creating
- HTML Link Support: OMG# stored as clickable links matching existing format
- Global Search: Uses descendants=true for efficient recursive search
- Format Matching: Generates OMG# links identical to existing entries
🤖 Generated with Claude Code
12 lines
263 B
Text
12 lines
263 B
Text
pip# Core dependencies (required for both scripts)
|
|
requests>=2.31.0
|
|
|
|
# Additional dependencies for wrike_monitor.py only
|
|
watchdog>=3.0.0
|
|
schedule>=1.2.0
|
|
|
|
# Install all:
|
|
# pip install -r requirements.txt
|
|
|
|
# Install only for wrike_import.py:
|
|
# pip install requests
|