-
Notifications
You must be signed in to change notification settings - Fork 0
/
price_tools.py
executable file
·194 lines (165 loc) · 6.64 KB
/
price_tools.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# -*- coding: UTF-8 -*-
import xlrd # для .xls
import openpyxl # Для .xlsx
import re
def openX(fileName ):
typeX = fileName[fileName.find('.')+1 :]
if typeX.lower() == 'xlsx':
book = openpyxl.load_workbook(filename = fileName, read_only=False, keep_vba=False, data_only=False) # xlsx
else:
book = xlrd.open_workbook( fileName.encode('cp1251'), formatting_info=True) # xls
return book
def sheetByName( fileName
,sheetName):
typeX = fileName[fileName.find('.')+1 :]
try:
if typeX.lower() == 'xlsx':
book = openpyxl.load_workbook(filename = fileName, read_only=False, keep_vba=False, data_only=False) # xlsx
sheet = book[sheetName] # xlsx
else:
book = xlrd.open_workbook( fileName.encode('cp1251'), formatting_info=True) # xls
sheet = book.sheet_by_name(sheetName)
except Exception as e:
print(e)
sheet = False
return sheet
#sheet = book.worksheets[0] # xlsx
#sheet = book.sheets()[0] # xls
def getCellXlsx( row # номер строки
, col # номер колонки
, isDigit # Признак, числовое ли значение нужно из этого поля
, sheet # лист XLSX
):
'''
Функция возвращает значение xls-ячейки в виде строки.
Для цифровых ячеек делается предварительное преобразование
в число (пустые и нечисловые значения преобразуются в "0")
'''
ccc = sheet.cell(row=row, column=col)
cellType = ccc.data_type
cellValue = ccc.value
if (isDigit == 'Y') :
if (cellValue == None) :
ss = '0'
elif (cellType in ('n')) : # numeric
if int(cellValue) == cellValue:
ss = str(int(cellValue))
else :
ss = str(cellValue)
else :
# ss = '0'
try:
ss = str(float(cellValue.replace(',','.')))
except ValueError as e:
ss='0'
else :
if (cellValue == None) :
ss = ''
elif (cellType in ('n')) : # numeric
if int(cellValue) == cellValue:
ss = str(int(cellValue))
else :
ss = str(cellValue)
else :
ss = str(cellValue)
return ss
def getCell( row # номер строки
, col # номер колонки
, isDigit # Признак, числовое ли значение нужно из этого поля
, sheet # лист XLS
):
'''
Функция возвращает значение xls-ячейки в виде строки.
Для цифровых ячеек делается предварительное преобразование
в число (пустые и нечисловые значения преобразуются в "0")
'''
ccc = sheet.cell(row, col)
cellType = ccc.ctype
cellValue = ccc.value
if (isDigit == 'Y') :
if (cellValue == '') :
ss = '0'
elif (cellType in (2,3)) : # numeric
if int(cellValue) == cellValue:
ss = str(int(cellValue))
else :
ss = str(cellValue)
else :
ss = str(float(cellValue))
print(cellValue, ss)
else :
if (cellType in (2,3)) : # numeric
if int(cellValue) == cellValue:
ss = str(int(cellValue))
else :
ss = str(cellValue)
else :
ss = str(cellValue)
return ss
def subInParentheses( sourceString):
re_parentheses = re.compile('^.*\(([^)]*)\).*$', re.LOCALE | re.IGNORECASE )
is_parentheses = re_parentheses.match(sourceString)
if is_parentheses: # Файл соответствует шаблону имени
key = is_parentheses.group(1) # выделяю ключ из имени файла
else:
key = ''
return key
def currencyType(sheet, rowx, colx):
'''
Функция анализирует "формат ячейки" таблицы excel, является ли он "денежным"
и какая валюта указана в этом формате.
Распознаются не все валюты и способы их описания.
'''
c = sheet.cell(rowx, colx)
xf = sheet.book.xf_list[c.xf_index]
fmt_obj = sheet.book.format_map[xf.format_key]
fmt_str = fmt_obj.format_str
if '\u20bd' in fmt_str:
val = 'RUB'
elif '\xa3' in fmt_str:
val = 'GBP'
elif chr(8364) in fmt_str:
val = 'EUR'
elif (fmt_str.find('USD')>=0) or (fmt_str.find('[$$')>=0) :
val = 'USD'
else:
val = ''
return val
'''
[$$-409]#,##0.0
[$$-409]#,##0.0
[$$-409]#,##0.0
[$$-409]#,##0.0
[$$-409]#,##0.0
#,##0.0"р."
#,##0.0"р."
#,##0.0"р."
#,##0.0"р."
#,##0.0"р."
#
'''
def dump_cell(sheet, rowx, colx):
c = sheet.cell(rowx, colx)
xf = sheet.book.xf_list[c.xf_index]
fmt_obj = sheet.book.format_map[xf.format_key]
ccc = ord(fmt_obj.format_str[4])
print( rowx, colx, repr(c.value), c.ctype, fmt_obj.type, ccc, chr(ccc) )
#print( repr(fmt_obj.format_str))
def quoted(sss):
if ((',' in sss) or ('"' in sss) or ('\n' in sss)) and not(sss[0]=='"' and sss[-1]=='"') :
sss = '"'+sss.replace('"','""')+'"'
return sss
def nameToId(value):
result = ''
for ch in value:
if (ch != " " and ch != "/" and ch != "\\" and ch != '_' and ch != "," and
ch != "'" and ch != "." and ch != "-" and ch != "!" and ch != "@" and
ch != "#" and ch != "$" and ch != "%" and ch != "^" and ch != "&" and
ch != "*" and ch != "(" and ch != ")" and ch != "[" and ch != "]" and
ch != "{" and ch != ":" and ch != '"' and ch != ";"):
result = result + ch
length = len(result)
if length > 50:
point = int(length / 2)
result = result[:13] + result[point - 12:point + 13] + result[-12:]
return result