上一页 1 2 3 4 5 6 7 8 ··· 36 下一页
摘要: import requests import json user_name = "USERNAME" write2file = True api_url = f"https://api.github.com/users/{user_name}/repos" repositories = [] pag 阅读全文
posted @ 2023-04-02 15:10 艾孜尔江 阅读(14) 评论(0) 推荐(0) 编辑
摘要: import requests import json import time name = "USERNAME" # Github username pwd = "PASSWORD" # personal access token # 要fork的仓库地址列表 repository_urls = 阅读全文
posted @ 2023-04-02 15:03 艾孜尔江 阅读(50) 评论(0) 推荐(0) 编辑
摘要: import requests import json import time name = "USERNAME" # Github username pwd = "PASSWORD" # personal access token # 要star的仓库地址列表 repository_urls = 阅读全文
posted @ 2023-04-02 14:57 艾孜尔江 阅读(21) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-03-13 11:55 艾孜尔江 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 将下方文件保存到一个"cloneAll.sh"文件中: #!/bin/bash if [ -z "$1" ]; then echo "waiting for the following arguments: username + max-page-number" exit 1 else name=$ 阅读全文
posted @ 2023-03-12 12:04 艾孜尔江 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 切割MP3,按时间准确切割 ffmpeg -i F:\源.mp3 -ss 00:20:00 -to 02:30:05 F:\目标文件.mp3 MTS到MP4 说明:(-b 4m:码率是4M;-s 1280*720:这个是设定视频大小。这2个参数其实可以删掉) ffmpeg -i F:\源.mts - 阅读全文
posted @ 2023-02-23 15:59 艾孜尔江 阅读(286) 评论(0) 推荐(0) 编辑
摘要: @echo off echo 正在清除系统垃圾文件 请稍等...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp del /f /s /q %systemdrive%\*.log del /f /s /q %s 阅读全文
posted @ 2023-02-21 18:58 艾孜尔江 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 需求 将PPT文件或PPTX文件里面的所有文字提取到一个新的以docx结尾的Word文件中。 安装Python库 (1)基于Python 3 (2) 运行下方代码安装需要用到的库 pip install python-pptx pip install python-docx 执行下方Python代码 阅读全文
posted @ 2023-02-15 01:29 艾孜尔江 阅读(167) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-13 11:14 艾孜尔江 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-09 19:48 艾孜尔江 阅读(1) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 36 下一页