r: list[object] = wcapi.get("products", params={'per_page': 1, 'status': 'publish'}).json()
class DieCutSchema(ma.SQLAlchemyAutoSchema):
class Meta:
model = DieCut
@api.route('/diecuts')
def index():
items = DieCut.query.all()
items_schema = DieCutSchema(many=True)
result = items_schema.dump(items)
return jsonify(result)
def rd(x, y=0):
''' Функция математического округления '''
m = int('1' + '0' * y) # multiplier - how many positions to the right
q = x * m # shift to the right by multiplier
c = int(q) # new number
i = int((q - c) * 10) # indicator number on the right
if i >= 5:
c += 1
return c / m
import xlrd
xls_file = 'C:/Temp/test.xls'
book = xlrd.open_workbook(xls_file)
Name = book.name_map['jobnamecell'][0] #имя маленькими буквами,
#даже если в Excel используются заглавные
#[0] индекс, т.к. это может быть диапазон ячеек
Job = (Name.cell().value) #присваиваем значение переменной Job. .vflue нужна что бы убрать из выдачи тип ячейки
print ("Job: " + Job + '\n')