python Faust库如何使用
- 更新时间:2021-07-24 08:06:02
- 编辑:符文宣
为找教程的网友们整理了相关的编程文章,网友殳雅惠根据主题投稿了本篇教程内容,涉及到Python相关内容,已被680网友关注,涉猎到的知识点内容可以在下方电子书获得。
参考资料
- Python和HDF5大数据应用 PDF 电子书 / 13.8 MB / 科莱特 推荐度:
- 《Python数据可视化》源码 配套资源 / 8.3 MB / 科斯?拉曼 推荐度:
- (迁移学习实战)Hands-On Transfer Learning with Python PDF 电子书 / 32.6 MB / Dipanjan Sarkar 推荐度:
- Python3面向对象编程(英文) PDF 电子书 / 10.1 MB / Dusty Phillips 推荐度:
- python tkinter 实现学生通讯录 / 14 KB / 码小辫 推荐度:
正文内容
小编给大家总结一篇《python Faust库如何使用》的技术内容,技术要点讲的很好,重新排版了一下发到这里,看完如果觉得有用请记得收藏。
1、实时读取和处理Kafka中的数据。
利用faust.App创建Faust应用程序,并配置应用程序名称,Kafkabroker和序列模式。
接着,我们创建了一个主题,它与Kafka中的主题相对应。
Faust使用Python3.6+异步语法async,定义异步函数greet,并将其注册为Faust应用程序的agent。该函数接收实时数据集greetings,并异步输出每个数据。
import faust app = faust.App( 'hello-world', broker='kafka://localhost:9092', value_serializer='raw', ) greetings_topic = app.topic('greetings') @app.agent(greetings_topic) async def greet(greetings): async for greeting in greetings: print(greeting)
$ faust -A hello_world worker -l info
2、充分利用Python的类型提示,可以轻松定义数据模型。
import faust class Greeting(faust.Record): from_name: str to_name: str app = faust.App('hello-app', broker='kafka://localhost') topic = app.topic('hello-topic', value_type=Greeting) @app.agent(topic) async def hello(greetings): async for greeting in greetings: print(f'Hello from {greeting.from_name} to {greeting.to_name}') @app.timer(interval=1.0) async def example_sender(app): await hello.send( value=Greeting(from_name='Faust', to_name='you'), ) if __name__ == '__main__': app.main()
以上就是python Faust库的使用,希望对大家有所帮助。更多编程基础知识学习:python学习网
相关教程
-
python语言有什么特点
python语言特点:1.软件质量;2.提高开发者效率;3.程序可移植性;4.标准库;5.组件集成;6.享受编程乐趣。
发布时间:2019-06-26
-
Python 网络爬虫--关于简单的模拟登录
这篇文章主要介绍了关于Python 网络爬虫--关于简单的模拟登录,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
发布时间:2019-07-11