Richard Phuker
Richard Phuker
API 固定最多输出 `DefaultQueryApiMaxItem` 20 条结果,且结果为正序排列(老的在前,新的在后),导致数据总量超过 20 条时,除非老数据被自动清除,否则永远也看不到最新记录。 **复现方法** 生成测试数据: ```bash for (( i=1; i
1. 显示结果的数量 2. 增加导出功能(JSON、CSV 等简单的格式就够用了) 注:我使用的是 0.7.0 版本
I am making a wrapper of this tldr client to display default & private tldr pages at the same time, but it is confusing to config whether to use cache....
## Description Button & icon images in mirrors.creativecommons.org can not be loaded, blocked by Cloudflare captcha. The settings in Cloudflare CDN might be inappropriate. *I'm not sure whether here is...
When run this: ```python import markdown from mdx_gfm import GithubFlavoredMarkdownExtension s = '[https://www.google.com/](https://www.example.com/)' print(markdown.markdown(s, extensions=[GithubFlavoredMarkdownExtension()])) ``` I got this: ```html https://www.google.com/ ``` But I expect this: ```html https://www.google.com/ ``` Version...
Behavior of `tls_client`: ```python import tls_client sess = tls_client.Session( client_identifier='chrome_120', random_tls_extension_order=True, ) resp = sess.get('https://www.example.com/') print(type(resp.headers)) # print(resp.headers.get('Server')) # ECAcc (lac/55CB) print(resp.headers['Server']) # ECAcc (lac/55CB) print(resp.headers.get('sErVeR')) # None print(resp.headers['sErVeR']) #...