Python calendar 模块,HTMLCalendar() 实例源码

我们从Python开源项目中,提取了以下15个代码示例,用于说明如何使用calendar.HTMLCalendar()

项目:zippy    作者:securesystemslab    | 项目源码 | 文件源码
def test_output_htmlcalendar(self):
        encoding = 'ascii'
        cal = calendar.HTMLCalendar()
        self.assertEqual(
            cal.formatyearpage(2004, encoding=encoding).strip(b' \t\n'),
            result_2004_html.strip(' \t\n').encode(encoding)
        )
项目:oil    作者:oilshell    | 项目源码 | 文件源码
def test_output_htmlcalendar(self):
        self.assertEqual(
            calendar.HTMLCalendar().formatyearpage(2004).strip(),
            result_2004_html.strip()
        )
项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def test_output_htmlcalendar(self):
        self.assertEqual(
            calendar.HTMLCalendar().formatyearpage(2004).strip(),
            result_2004_html.strip()
        )
项目:web_ctp    作者:molebot    | 项目源码 | 文件源码
def check_htmlcalendar_encoding(self, req, res):
        cal = calendar.HTMLCalendar()
        self.assertEqual(
            cal.formatyearpage(2004, encoding=req).strip(b' \t\n'),
            (result_2004_html % {'e': res}).strip(' \t\n').encode(res)
        )
项目:web_ctp    作者:molebot    | 项目源码 | 文件源码
def test_formatmonthname_with_year(self):
        self.assertEqual(
            calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=True),
            '<tr><th colspan="7" class="month">January 2004</th></tr>'
        )
项目:web_ctp    作者:molebot    | 项目源码 | 文件源码
def test_formatmonthname_without_year(self):
        self.assertEqual(
            calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=False),
            '<tr><th colspan="7" class="month">January</th></tr>'
        )
项目:python-course    作者:juancarlospaco    | 项目源码 | 文件源码
def index():
    return template('<h1>Calendar | Calendario<hr> {{!data}}',
                    data=HTMLCalendar().formatyearpage(2016))
项目:pefile.pypy    作者:cloudtracer    | 项目源码 | 文件源码
def test_output_htmlcalendar(self):
        self.assertEqual(
            calendar.HTMLCalendar().formatyearpage(2004).strip(),
            result_2004_html.strip()
        )
项目:ouroboros    作者:pybee    | 项目源码 | 文件源码
def check_htmlcalendar_encoding(self, req, res):
        cal = calendar.HTMLCalendar()
        self.assertEqual(
            cal.formatyearpage(2004, encoding=req),
            (result_2004_html % {'e': res}).encode(res)
        )
项目:ouroboros    作者:pybee    | 项目源码 | 文件源码
def test_formatmonthname_with_year(self):
        self.assertEqual(
            calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=True),
            '<tr><th colspan="7" class="month">January 2004</th></tr>'
        )
项目:ouroboros    作者:pybee    | 项目源码 | 文件源码
def test_formatmonthname_without_year(self):
        self.assertEqual(
            calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=False),
            '<tr><th colspan="7" class="month">January</th></tr>'
        )
项目:ndk-python    作者:gittor    | 项目源码 | 文件源码
def test_output_htmlcalendar(self):
        self.assertEqual(
            calendar.HTMLCalendar().formatyearpage(2004).strip(),
            result_2004_html.strip()
        )
项目:kbe_server    作者:xiaohaoppy    | 项目源码 | 文件源码
def check_htmlcalendar_encoding(self, req, res):
        cal = calendar.HTMLCalendar()
        self.assertEqual(
            cal.formatyearpage(2004, encoding=req).strip(b' \t\n'),
            (result_2004_html % {'e': res}).strip(' \t\n').encode(res)
        )
项目:kbe_server    作者:xiaohaoppy    | 项目源码 | 文件源码
def test_formatmonthname_with_year(self):
        self.assertEqual(
            calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=True),
            '<tr><th colspan="7" class="month">January 2004</th></tr>'
        )
项目:kbe_server    作者:xiaohaoppy    | 项目源码 | 文件源码
def test_formatmonthname_without_year(self):
        self.assertEqual(
            calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=False),
            '<tr><th colspan="7" class="month">January</th></tr>'
        )