-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontrol2.py
41 lines (30 loc) · 1.13 KB
/
control2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# control2.py
# http://sites.google.com/site/pocketsense/
# contains some common configuration data and modules for the ofx pkg
# Initial version: rlc: Feb-2010
#
#04-Jan-2010*rlc
# - Added DefaultAppID and DefaultAppVer
# 27-Jul-2013: rlc
# - Added locale support
# 03-Sep-2014: rlc
# - xfrdir is now platform independent
# 06-Mar-2017: rlc
# - Set DefaultAppVer = 2400 (Quicken 2015)
# - Moved utility functions to rlib1 module
#------------------------------------------------------------------------------------
#---MODULES---
import os
Debug = False #debug mode = true only when testing
#Debug = True
AboutTitle = 'PocketSense OFX Download Python Scripts'
AboutVersion = '04-Jan-2020'
AboutSource = 'http://sites.google.com/site/pocketsense'
AboutName = 'Robert'
#xfrdir = temp directory for statement downloads. Platform independent
xfrdir = os.path.join(os.path.curdir,"xfr") + os.sep
importdir = os.path.join(os.path.curdir,"import") + os.sep
if Debug: print "XFRDIR = " + xfrdir
cfgFile = 'ofx_config.cfg' #user account settings (can be encrypted)
DefaultAppID = 'QWIN'
DefaultAppVer = '2600'