We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
*me2chatnote*는 미투데이 에서 원하는 글들을 찾아서 스프링노트 에 모아주는 툴입니다.
잡담 노트로, 혹은 회의록으로 사용할 수 있습니다.
posts = Me2day.posts(‘jangxyz’, tag=‘woc’)
posts = [“%s: %s (%s)” % (p.author.nickname, p.body, p.pubDate) for p in posts]
page = Springnote(ACCESS_TOKEN).page(note='springmemo', id=2996232) page.source = "<ul><li>%s</li></ul>" % '</li><li>'.join(posts) page.save()
참 쉽죠? :)
소스 중 me2chatnote.py에 예제가 있습니다.
There was an error while loading. Please reload this page.