This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"about": null, | |
"talk": [ | |
{ | |
"id": 0, | |
"title": "IoT e a Quarta Revolução Industrial", | |
"talker": "Alessandro Saraiva, Clodoaldo Brasilino & Herrinque Fontenele" | |
}, | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"talkers": [ | |
{ | |
"name": "Patrick Mazulo", | |
"image_url": "https://www.seifpi.com.br/img/confirmados/clodoaldo.jpg", | |
"confirmed": true, | |
"description": "Técnico em Informática pelo CEEPMPP,\n quase Bacharel em Sistemas de Informação pela Faculdade Maurício de Nassau.\n Trabalha com desenvolvimento web desde 2011, tendo passado por empresas brasileiras e americanas.\n Atualmente trabalha como \"Software Engineer\" numa empresa do Vale do Silício. Usuário e compartilhador da palavra do Python,\n passa a maior parte do seu tempo estudando tecnologias, assim como maneiras de aplicá-las no mundo real." | |
}, | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
from ctypes import * | |
bnt = WinDLL('./BNT36.dll') | |
bnt.OpenBNT.argtypes = [c_char_p, c_ushort] | |
bnt.OpenBNT.restype = c_bool | |
IP = c_char_p(b"192.168.1.4") | |
PORT = c_ushort(11111) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from events import Events | |
class Player(Events): | |
itens = [] | |
__events__ = ('add_item_event',) | |
def add_item(self, item): | |
self.itens.append(item) |