本文整理汇总了Python中utils.Util.normalize方法的典型用法代码示例。如果您正苦于以下问题:Python Util.normalize方法的具体用法?Python Util.normalize怎么用?Python Util.normalize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类utils.Util
的用法示例。
在下文中一共展示了Util.normalize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: on_data
# 需要导入模块: from utils import Util [as 别名]
# 或者: from utils.Util import normalize [as 别名]
def on_data(self, data):
text_i = data.find("text")
source_i = data.find("source")
text = data[text_i + 8: source_i].decode('utf_8')
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server_address = ('localhost', 9999)
print >> sys.stderr, 'connecting to %s port %s' % server_address
sock.connect(server_address)
try:
print >>sys.stderr, 'sending "%s"' % text
sock.sendall(Util.normalize(text) + '\n')
finally:
print >>sys.stderr, 'closing socket'
sock.close()
示例2: on_data
# 需要导入模块: from utils import Util [as 别名]
# 或者: from utils.Util import normalize [as 别名]
def on_data(self, data):
text_i = data.find('"text"')
source_i = data.find("source")
text = data[text_i + 8:source_i]
self.pipe.add(Util.normalize(text))