test

test


from telegraph import Telegraph
tel = Telegraph(my_access_token)

content = [{"tag": "h4",
            "children": ["Hello, World!"]},
            "attrs": {"dir": "rtl"}
            }]

page = tel.edit_page(path='/url',
                     title='testing',
                     content=content,
                     )


Report Page