币游国际平台

Python资产管理

最新更新日期:Oct-31-2023

使用云化物时 所有图像、视频和其他原始文件都上传到云化物你可以使用我们的媒体探索者web界面浏览管理上传媒体资产并使用方法上传管理员APIs提供管理、组织并创建媒体资产的方法

  • 上传a方法可按需使用
  • 管理员API方法受速率限制
    可查看您的云型规划所允许的小时管理API请求数账号控制台设置页面

上传a

上传方法,此API包含方法

管理员API

安全API管理组织媒体资产方法包括:

API实例-删除单项资产

下python例子使用上传API毁灭方法删除视频公共标识采样从您的云化产品环境

Python
import cloudinary.uploader
cloudinary.uploader.destroy("sample", resource_type = "video")

样本输出 :

JSON
{
  "result": "ok"
}

小技巧
删除多项资产使用a 币游平台网页版官方delete_resources方法论

ython中更多上传API示例选择ython语言标签内上传a参考文献

管理员API实例-获取单项资产细节

ython实例使用adminAPI资产类方法返回图像细节公共标识采样:

Python
import cloudinary.api
cloudinary.api.resource("sample")

样本输出 :

JSON
{
  "asset_id": "d86882d7788f5d1d702cb63418f082a6",
  "public_id": "sample",
  "format": "jpg",
  "version": 1312461204,
  "resource_type": "image",
  "type": "upload",
  "created_at": "2017-08-04T12:33:24Z",
  "bytes": 120253,
  "width": 864,
  "height": 576,
  "url": "http://res.www.agrosoland.com/demo/image/upload/v1312461204/sample.jpg",
  "secure_url": "https://.../image/upload/v1312461204/sample.jpg",
  "next_cursor": "041a39fc10971b9eabd4993470f6bfaf",
  "derived": [
    {
      "transformation": "c_fill,w_100,h_100",
      "format": "jpg",
      "bytes": 7112,
      "id": "8267a869b62a93a59248f35d7f124c1f",
      "url": "http://.../demo/image/upload/c_fill,w_100,h_100/v1312461204/sample.jpg",
      "secure_url": "https://.../image/upload/c_fill,w_100,h_100/v1312461204/sample.jpg"
    },
    {
      "transformation": "w_230,h_168,c_fit",
      "format": "jpg",
      "bytes": 19173,
      "id": "383e22a57167445552a3cdc16f0a0c85",
      "url": "http://.../demo/image/upload/w_230,h_168,c_fit/v1312461204/sample.jpg",
      "secure_url": "https://.../image/upload/w_230,h_168,c_fit/v1312461204/sample.jpg"
    }
  ]
 }
 ```

For more Admin API examples in Python, select the `Python` tab in the [Admin API](admin_api) reference.

反馈发送