我们从Python开源项目中,提取了以下7个代码示例,用于说明如何使用django.utils.six.unichr()。
def _replace_entity(match): text = match.group(1) if text[0] == '#': text = text[1:] try: if text[0] in 'xX': c = int(text[1:], 16) else: c = int(text) return six.unichr(c) except ValueError: return match.group(0) else: try: return six.unichr(html_entities.name2codepoint[text]) except (ValueError, KeyError): return match.group(0)
def set_row_color(self, sheet, row, header, color='FF000000', bgcolor='FFFFFFFF'): for idx, item in enumerate(header): sheet[str(six.unichr(idx + ord('A'))) + str(row)].style = self.get_cell_style(color=color, bgcolor=bgcolor) return row