OneSixth
OneSixth
**Checklist** 1. I have searched related issues but cannot get the expected help. 2. I have read the FAQ documentation but cannot get the expected help. Question about https://github.com/open-mmlab/mmselfsup/issues/745 ....
在这个页面可以筛选股票。https://xueqiu.com/hq/screener/CN 这个可以拿到数量 ``` https://xueqiu.com/service/screener/screen?category={category}&only_count=1 ``` 这个可以拿到列表,迭代 page 就可以了 ``` https://xueqiu.com/service/screener/screen?category=CN&page=1&size=100&only_count=0 ```
将windows对应不合法的半角字符转化为全角字符就行了。 为节省时间 可以在 Music_Funciton.py 将 music_download 整个函数替换为如下代码即可快速解决 ``` import os def half2full(s): ns = [] for c in s: num = ord(c) if num == 0x20: num = 0x3000 elif...
大佬你好。 当Music文件夹不存在时,音乐下载会失败 在 Music_Funciton.py 中的 music_download 函数中需要增加一句来手动创建文件夹可以解决该问题。 os.makedirs('Music', exist_ok=True)
你好,我修复了一些反义词库的错误
About the new features 0. Version number There is already quite a bit of migration code out there. I think the version number record can be added, which may be...
When using library override and object's material, the active material somtime will unexpectedly changed. This should be a Blender Bug. I opened a Blener's bug report. It contains the bug...
## 环境 * 操作系统: Windows 11 * Python版本: VeighNa Studio-3.9.2 * VeighNa版本: VeighNa Studio-3.9.2 ## Issue类型 三选一:Enhancement ## 预期程序行为 希望能增加参数或函数,能手动指定 MainEngine 的工作文件夹和 配置文件夹的名字 我在本地vnpy做了这样的修改,可以贡献代码 例如这样的 ```python work_dir = 'D:/vnpy' cfg_dir_name='.vntrader'...