16 lines
670 B
Python
Executable File
16 lines
670 B
Python
Executable File
# Windows Print Service Configuration
|
|
# Configure the Windows Print Service connection for cross-platform printing
|
|
|
|
# Default Windows Print Service URL
|
|
# Change this to the IP address of your Windows machine if running on different systems
|
|
# Examples:
|
|
# Same machine: http://localhost:8765
|
|
# Different machine: http://192.168.1.100:8765
|
|
# Domain name: http://printserver.company.local:8765
|
|
WINDOWS_PRINT_SERVICE_URL = "http://192.168.1.XXX:8765" # ← REPLACE XXX WITH YOUR WINDOWS IP
|
|
|
|
# Print service connection timeout (seconds)
|
|
PRINT_SERVICE_TIMEOUT = 30
|
|
|
|
# Enable print service connection (set to False to always use PDF fallback)
|
|
PRINT_SERVICE_ENABLED = True |