当前位置: 首页>>代码示例>>Python>>正文


Python Contentlines.to_ical方法代码示例

本文整理汇总了Python中icalendar.parser.Contentlines.to_ical方法的典型用法代码示例。如果您正苦于以下问题:Python Contentlines.to_ical方法的具体用法?Python Contentlines.to_ical怎么用?Python Contentlines.to_ical使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在icalendar.parser.Contentlines的用法示例。


在下文中一共展示了Contentlines.to_ical方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: testHmm

# 需要导入模块: from icalendar.parser import Contentlines [as 别名]
# 或者: from icalendar.parser.Contentlines import to_ical [as 别名]
 def testHmm(self):
     from icalendar.parser import Contentlines, Contentline
     c = Contentlines([Contentline('BEGIN:VEVENT\r\n')])
     c.append(Contentline(''.join(['123456789 ']*10)+'\r\n'))
     output = c.to_ical()
     self.assertEqual(output, 
             'BEGIN:VEVENT\r\n\r\n123456789 123456789 123456789 123456789 123456789 123456789 123456789 1234\r\n 56789 123456789 123456789 \r\n')
开发者ID:novakps,项目名称:icalendar,代码行数:9,代码来源:test_icalendar.py

示例2: test_main

# 需要导入模块: from icalendar.parser import Contentlines [as 别名]
# 或者: from icalendar.parser.Contentlines import to_ical [as 别名]
    def test_main(self, lines):
        cl = Contentlines()
        for key, params, value in lines:
            params = Parameters(**params)
            cl.append(Contentline.from_parts(key, params, value))
        cl.append('')

        assert Contentlines.from_ical(cl.to_ical()) == cl
开发者ID:collective,项目名称:icalendar,代码行数:10,代码来源:test_fuzzing.py

示例3: XtestLongLine

# 需要导入模块: from icalendar.parser import Contentlines [as 别名]
# 或者: from icalendar.parser.Contentlines import to_ical [as 别名]
 def XtestLongLine(self):
     from icalendar.parser import Contentlines, Contentline
     c = Contentlines([Contentline('BEGIN:VEVENT\\r\\n')])
     c.append(Contentline(''.join(['123456789 ']*10)+'\\r\\n'))
     output = c.to_ical()
     cmp = ("BEGIN:VEVENT\\r\\n\\r\\n123456789 123456789 123456789 "
            "123456789 123456789 123456789 123456789 1234\\r\\n 56789 "
            "123456789 123456789 \\r\\n")
     self.assertEqual(output, cmp)
开发者ID:barakmich,项目名称:icalendar,代码行数:11,代码来源:test_icalendar.py

示例4: test_long_lines

# 需要导入模块: from icalendar.parser import Contentlines [as 别名]
# 或者: from icalendar.parser.Contentlines import to_ical [as 别名]
 def test_long_lines(self):
     from icalendar.parser import Contentlines, Contentline
     c = Contentlines([Contentline('BEGIN:VEVENT\r\n')])
     c.append(Contentline(''.join('123456789 ' * 10) + '\r\n'))
     self.assertEqual(
         c.to_ical(),
         'BEGIN:VEVENT\r\n\r\n123456789 123456789 123456789 123456789 '
         '123456789 123456789 123456789 1234\r\n 56789 123456789 '
         '123456789 \r\n\r\n'
     )
开发者ID:Konubinix,项目名称:icalendar,代码行数:12,代码来源:test_icalendar.py

示例5: testHmm

# 需要导入模块: from icalendar.parser import Contentlines [as 别名]
# 或者: from icalendar.parser.Contentlines import to_ical [as 别名]
    def testHmm(self):
        from icalendar.parser import Contentlines, Contentline

        c = Contentlines([Contentline("BEGIN:VEVENT\r\n")])
        c.append(Contentline("".join(["123456789 "] * 10) + "\r\n"))
        output = c.to_ical()
        self.assertEqual(
            output,
            "BEGIN:VEVENT\r\n\r\n123456789 123456789 123456789 123456789 123456789 123456789 123456789 1234\r\n 56789 123456789 123456789 \r\n",
        )
开发者ID:WebActionHero,项目名称:icalendar,代码行数:12,代码来源:test_icalendar.py

示例6: testHmm

# 需要导入模块: from icalendar.parser import Contentlines [as 别名]
# 或者: from icalendar.parser.Contentlines import to_ical [as 别名]
 def testHmm(self):
     from icalendar.parser import Contentlines, Contentline
     c = Contentlines([Contentline('BEGIN:VEVENT\r\n')])
     c.append(Contentline(''.join(['123456789 ']*10)+'\r\n'))
     output = c.to_ical()
     # XXX: sure? looks weird in conjunction with generated content above.
     #cmp = ('BEGIN:VEVENT\r\n\r\n123456789 123456789 123456789 123456789 '
     #       '123456789 123456789 123456789 1234\r\n 56789 123456789 '
     #       '123456789 \r\n')
     cmp = ('BEGIN:VEVENT\r\n\r\n123456789 123456789 123456789 123456789 '
            '123456789 123456789 123456789 \r\n 123456789 123456789 '
            '123456789 \r\n\r\n')
     self.assertEqual(output, cmp)
开发者ID:barakmich,项目名称:icalendar,代码行数:15,代码来源:test_icalendar.py

示例7: XtestTrailingNewline

# 需要导入模块: from icalendar.parser import Contentlines [as 别名]
# 或者: from icalendar.parser.Contentlines import to_ical [as 别名]
 def XtestTrailingNewline(self):
     from icalendar.parser import Contentlines, Contentline
     c = Contentlines([Contentline('BEGIN:VEVENT\\r\\n')])
     output = c.to_ical()
     self.assertEqual(output, 'BEGIN:VEVENT\\r\\n')
开发者ID:novakps,项目名称:icalendar,代码行数:7,代码来源:test_icalendar.py


注:本文中的icalendar.parser.Contentlines.to_ical方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。