用于发送/管理使用统计信息的 Python 库
还记得那些在安装过程中提供“发送使用统计信息以帮助改进 X”选项的应用程序吗?我认为它会收集某些使用模式并将其发送回服务器。回到服务器,可能正在进行某种挖掘。
是否有一个Python库可以做到这一点..至少从客户端部分? (例如,除了使用 urllib
手动编码之外)
Recall those applications that provide the option to "Send usage statistics to help improve X" during the installation? I presume it collects certain patterns of usage and sends it back to the server. Back at the server, there may be some sort of mining going on.
Is there a Python library to do this .. at least from the client part? (other than manually having to code it up using urllib
, for instance)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
跨网络发送和接收日志记录事件网络
从文档中:
您还可以在那里找到接收端的代码。
在您的情况下,在非根记录器上使用
logging.handlers.DatagramHandler
可能更合适,例如logging.getLogger('usage')
。Sending and receiving logging events across a network
From the docs:
You can also find there the code for receiving end.
In your case it might be more appropriate to use
logging.handlers.DatagramHandler
on a non-root logger e.g.,logging.getLogger('usage')
.