forked from valknight/Cohost.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.py
27 lines (22 loc) · 907 Bytes
/
example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import os
from cohost.models.block import AttachmentBlock, MarkdownBlock
from cohost.models.user import User
def main():
cookie = os.environ.get('COHOST_COOKIE')
if cookie is None:
print('COHOST_COOKIE environment variable not set - please paste your cookie below')
print('To skip this, please set the COHOST_COOKIE environment variable to the cookie you want to use')
cookie = input('COHOST_COOKIE: ')
user = User.loginWithCookie(cookie)
project = user.getProject('yourhandle')
print('Logged in as: {}'.format(project))
blocks = [
MarkdownBlock('hello from cohost!'),
AttachmentBlock('pybug.png'),
]
p = project.post('Cohost.py is working!',
blocks,
adult=False, draft=False, tags=['cohost.py', 'python'])
print('Live at: {}'.format(p.url))
if __name__ == '__main__':
main()