10 lines
277 B
Python
10 lines
277 B
Python
# Title of the Program Window
|
|
import os
|
|
|
|
applicationtitle="MTG Collector (working title) v0.1"
|
|
|
|
# Path of image cache
|
|
cachepath= os.path.dirname(__file__) + "/.cache/"
|
|
|
|
# When True Search view will list a card multiple times for each set they appear in
|
|
show_from_all_sets=False |