2020年8月的全部文章
@kidultff

Python使用管道实现进程间通讯

Server进程创建管道:import os # 定义管道名称 pipe_file = "/tmp/notify.pipe" # 如果之前就存在了,删掉它 if os.path.exists(pipe_file):     os.remove(pipe_file) & ...
  • 0
  • 0
@kidultff

Python使用infi.clickhouse_orm操作clickhouse数据库

clickhouse是yandex公司开发的一款数据库软件,其特点是允许分析及时更新的数据,性能较高。clickhouse_orm是一个Python库,可以用来操作clickhouse数据库。0、安装直接使用pip install infi.clickhouse_orm即可安装clickhouse_orm。1、快速上手cl ...
  • 0
  • 0