Собрали в одном месте самые важные ссылки
читайте авторский блог
from autobot import Autobot with Autobot('irc.freenode.net', '#python', '[Wally]', log='transcript.log') as bot: while True: r = bot.read() # read will write to the specified log if "some trigger" in r['message']: bot.send("some message back to the chat") #respond to privmsg if r['command'] == 'PRIVMSG': bot.send("some message or command")
from pseudo import * # ok for a repl
print(generate_main([
assignment(
local('a', 'Int'),
call(local('g'), [to_node(0), to_node('')], 'Int'))], 'rb'))
a = g(0, '')
Toolkit позволяет собирать у клиента данные с помощью различных протоколов и сервисов (HTTP, FTP, Gmail, DNS, etc) и передавать их на сервер
from freezefrog import FreezeTime import datetime with FreezeTime(datetime.datetime(2014, 1, 1)): # The clock is frozen. # Always prints 2014-01-01 00:00:00 print datetime.datetime.utcnow() with FreezeTime(datetime.datetime(2014, 1, 1), tick=True): # The clock starts ticking immediately. # Example output: 2014-01-01 00:00:00.000005 print datetime.datetime.utcnow()