Advertisement
stuppid_bot

Пример

Nov 19th, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. from vkontacher.vktestbot import VkTestBot
  3. import time
  4.  
  5. bot = VkTestBot()
  6. bot.auth('tel_or_email', 'mypassword')
  7. i = 0
  8. limit = 20
  9. while True:
  10.     i += 1
  11.     bot.api('wall.post', {'message': u'Сообщение #%s' % i})
  12.     if i == limit:
  13.         break
  14.     time.sleep(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement