Replies: 10 comments 12 replies
-
|
完了,我昨天不小心把本地文件删了,然后现在。。。 |
Beta Was this translation helpful? Give feedback.
-
|
看来Git LFS 也不能放太多数据 |
Beta Was this translation helpful? Give feedback.
-
|
还有封面的图片不能用Git LFS,否则主README.md显示不了了(这个我已修改) |
Beta Was this translation helpful? Give feedback.
-
现在流量真的用尽了(周期为1个月) |
Beta Was this translation helpful? Give feedback.
-
|
我手上有台云服务器,我回头搭个类似ftp服务器的东西,然后把大家把二进制传上来 |
Beta Was this translation helpful? Give feedback.
-
|
访客不需要登录,只可查看/下载 登陆方式:右上角按钮 |
Beta Was this translation helpful? Give feedback.
-
|
所以现在谁发一下LFS文件到云盘里呀,我现在什么LFS文件都没有 |
Beta Was this translation helpful? Give feedback.
-
|
刚刚加了个readme自动预览 |
Beta Was this translation helpful? Give feedback.
-
|
给各位一个无需账号,不限空间不限速的直链云盘 import requests
import json
import hashlib
def upload(filename, contents):
response = requests.get(
url='https://code.xueersi.com/api/assets/get_oss_upload_params',
params={
"scene": "offline_python_assets",
"md5": hashlib.md5(contents).hexdigest(),
"filename": filename
}
)
uploadParams = json.loads(response.text)['data']
requests.request(
method="PUT",
url=uploadParams['host'],
data=contents,
headers=uploadParams['headers']
)
return uploadParams['url'] |
Beta Was this translation helpful? Give feedback.
-
|
可以看下有没有rsync之类的链接吗,我这里的vps也能存一下。实际上也可以把binary扔到release里,那个不限 |
Beta Was this translation helpful? Give feedback.



Uh oh!
There was an error while loading. Please reload this page.
-
众所周知,现在仓库里的二进制文件已经超过 100M,但众不所周知,如果不花钱的话,仓库每个周期(不知道是多久)只有 1G 的 LFS 流量,所以……
那么这些个二进制文件到底怎么办呢?
Beta Was this translation helpful? Give feedback.
All reactions