PyScript 尝试

- numpy - matplotlib PyScript让你可以在 html 里写 Python ,感觉很有趣。 比如下面这个图(大概要等5分钟😂): <div id="plot"></div> <py-script output="plot"> import matplotlib.pyplot as plt import numpy as np x = np.random.randn(1000) y = np.random.randn(1000) fig, ax = plt.subplots() ax.scatter(x, y)...

五月 11, 2022 · 1 分钟 · 143 字 · Ruotian

Python 协程 (async/await)

用Telegram 机器人库 Telethon的时候发现他家的 API 接口走的都是 async。 这就来学一下 Python 的 async 和 await (官方文档),需要 Python 版本3.7以上...

五月 10, 2022 · 2 分钟 · 534 字 · Ruotian

Python 使用子进程调用函数并得到 exit code

Python 的 subprocess 并不支持直接调用函数。可以用 multiprocessing 库来搞。 def twosum(a, b): exit(a+b) from multiprocessing import Process if __name__ == '__main__': p = Process(target=twosum, args=(2, 33)) p.start() p.join() print('exit code:', p.exitcode) 如果需要传输其他类型的变量,可以用 multiprocessing 里的 Queue 。

五月 3, 2022 · 1 分钟 · 66 字 · Ruotian

Numba是个好东西

logo里的这个python快如闪电⚡️。 要用python做计算密集型任务的可以考虑一下这个库,非常香。 http://numba.pydata.org/

四月 2, 2019 · 1 分钟 · 53 字 · Ruotian

饭否关键词分析

饭否是中国大陆地区首批提供微型博客服务的类 Twitter 网站之一,用户可以通过网页、WAP 页面、手机短信/彩信(现已不可用)、IM 软件(包括 MSN、Google Talk)和上百种 API 应用发布消息(限 140 字以内)或上传图片。用户间通过互相关注、私信、或@对话等方式互动。(wikipedia) 其 API 完善,搜索消息接口可以完整遍历含有某个关键词的所有消息。 为了好玩,写了个 ipynb 来对某个关键词进行自动分析。 ...

三月 18, 2019 · 2 分钟 · 710 字 · Ruotian

OAuth2试玩

温馨提示:这篇文章已经过时 把Isso评论魔改成了github登录发表only 233333。 用requests和flask手撸了个OAuth2...

八月 29, 2017 · 1 分钟 · 135 字 · Ruotian

六教的包

wireshark挂着,抓抓空气中的数据。 写了个脚本利用抓到的cookie。 大概长这样: def cookie_to_js(s): res = '' a=s.split(';') for x in a: if '=' in x: res+='document.cookie="%s";'%(x) return res print(cookie_to_js('a=b;c=d;')) 有其他好用的工具...

五月 24, 2017 · 1 分钟 · 293 字 · Ruotian

Memobird咕咕机Python开发

Memobird咕咕机是一个热敏纸打印机。官网。 官方提供了开发的web API接口: 开放平台,API文档。 通过web API可以做许多奇怪的事了...

三月 4, 2017 · 1 分钟 · 289 字 · Ruotian

用Python3写了个OJ

这个OJ以后可能搭在学校吧..(论造轮子的修养) https://github.com/zrt/XOJ 主要为了练习下python和HTML。 分为web和judger两个部分。 web主要处理OJ...

九月 19, 2016 · 1 分钟 · 327 字 · Ruotian