posted_event.py

来自「pyLJclient是一个跨平台的livejournal客户端」· Python 代码 · 共 15 行

PY
15
字号
import time

class Event:
    def __init__(self, itemid='', event='', time='', subject='', security=''):
        self.eventid = itemid
        self.time = time
        self.event = event
        self.subject = subject
        self.security = security

    def __repr__(self):
        return """\n----Event Object-----Attributes
        \neventid : %s\ntime : %s\nevent: %s\nsubject: %s\nsecurity: %s
        """%(self.eventid, self.time, self.event, self.subject, self.security)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?