当前位置: 首页>>代码示例>>Python>>正文


Python ServerProxy.tweet方法代码示例

本文整理汇总了Python中xmlrpc.client.ServerProxy.tweet方法的典型用法代码示例。如果您正苦于以下问题:Python ServerProxy.tweet方法的具体用法?Python ServerProxy.tweet怎么用?Python ServerProxy.tweet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在xmlrpc.client.ServerProxy的用法示例。


在下文中一共展示了ServerProxy.tweet方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: ServerProxy

# 需要导入模块: from xmlrpc.client import ServerProxy [as 别名]
# 或者: from xmlrpc.client.ServerProxy import tweet [as 别名]
from math import pi
from xmlrpc.client import ServerProxy

server = ServerProxy('http://localhost:8888') # connect to the XML-RPC server

print('Current time in seconds after epoch:', server.now_int())
print('Current time as a string:', server.now_str())
print('Area of circle of radius 5:', server.mul(pi, server.pow(5, 2)))

stock = server.stock('goog')
print('Latest Google stock price: %s (%s / %s) as of %s at %s' % tuple(stock))

forex = server.forex()
print('Latest foreign exchange rate from %s: %s as of %s at %s' % tuple(forex))

forex = server.forex('eur', 'usd')
print('Latest foreign exchange rate from %s: %s as of %s at %s' % tuple(forex))

print('Latest Twitter status:', server.status())
print('Posted tweet at:', server.tweet('Latest GOOG stock price is %s' % stock))

# calling the introspection functions
print(server.system.listMethods())
print(server.system.methodSignature('system.methodHelp'))
print(server.system.methodHelp('floordiv'))

开发者ID:georstef,项目名称:Python_CorePythonApplicationsProgramming,代码行数:27,代码来源:xml_rpc_client.py


注:本文中的xmlrpc.client.ServerProxy.tweet方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。