Example #1
0
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from pybooru import Moebooru

# replace login information
client = Moebooru("Konachan", username="******", password="******")
client.comment_create(post_id=id, comment_body="Comment content")

print(client.last_call)
Example #2
0
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from pybooru import Moebooru

# replace login information
client = Moebooru('Konachan',
                  username='******',
                  password='******')
client.comment_create(post_id=id, comment_body='Comment content')

print(client.last_call)