图床上传工具
Project description
介绍
在上传图片的时候, 经常会用到图床功能.
此工具聚合了一些常用的图床, 以便于快速使用.
注意: 因免费图床的稳定性无法保证, 因此请勿用其保存重要文件
说明
因为使用各种免费服务, 稳定性无法保证
若各位在使用过程中碰到问题, 欢迎下列任选一种方式补充:
- 提交
isuse
说明问题 - 将问题写到
DepotType
的对应文档上
如果你有其他优秀的图床推荐, 欢迎提交isuse
或PR
当前支持的所有图床, 可查看文件DepotType
使用
安装:
pip install image-depot
from image_depot import image_depot, DepotType, upload, upload_file, DepotConfig, set_global_config
# 部分图床需要添加配置才能使用
config = DepotConfig()
config.sm_ms.token = ''
# 全局配置
set_global_config(config)
# 选择图床对象
d = image_depot(DepotType.CatBox)
if d is None: # 当前图床已失效
pass
# 可以为每次上传使用不同的配置信息
# 此配置优先级高于 global_config
d.set_config(config)
# 上传图片. 二进制内容
image_content = ''
image_url = d.upload(image_content)
if not image_url: # 图片上传失败, 获取失败原因
print(d.error())
# 上传图片, 使用本地文件路径
file_path = ''
image_url = d.upload_file(file_path)
# 依次尝试所有图床, 返回第一个成功的.
url, err = upload(image_content)
upload_file(file_path)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
image_depot-0.9.1.tar.gz
(12.1 kB
view details)
Built Distribution
File details
Details for the file image_depot-0.9.1.tar.gz
.
File metadata
- Download URL: image_depot-0.9.1.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c41233ea81359c48d4551c718691c9f4e84ecd411f43ccab087c10287dab0cc2 |
|
MD5 | f5de275da804fe80b2da8374b64427ff |
|
BLAKE2b-256 | 7aab2f097a63e596ff577e5a47a21964558144caca9f9a6a74f8f3807a074011 |
File details
Details for the file image_depot-0.9.1-py3-none-any.whl
.
File metadata
- Download URL: image_depot-0.9.1-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fb3cb06757075563a6e688dd27866ba0205d930c1d2526d23053acbe2ed7fdd |
|
MD5 | 08db7897a016a97a74fcb5bc45c962bb |
|
BLAKE2b-256 | c28ffd70c96748ac7c9e75b4f40cab051cdf602bada3c5ecb8513c6687c3e996 |