Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fundrive

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fundrive

fundrive

  • 1.2.61
  • PyPI
  • Socket score

Maintainers
1

统一云存储接口

概述

统一云存储接口(Unified Cloud Storage Interface,简称 UCSI)是一个开源工具,旨在为各种云存储服务提供统一的 API。无论您使用的是 Google Drive、Dropbox、OneDrive 还是其他任何云存储服务,UCSI 都能抽象掉不同 API 的复杂性,使开发者能够通过一个一致的接口与多个云存储服务进行交互。

功能特点

  • 统一 API:通过一个 API 与多个云存储服务进行交互。
  • 可扩展性:通过实现提供的接口,轻松添加对新云存储服务的支持。
  • 文件管理:在不同的云存储服务之间上传、下载、删除和列出文件。
  • 权限管理:统一管理不同云存储服务的权限和访问控制。
  • 跨平台支持:支持多种编程语言和平台,方便集成到现有项目中。

安装

使用 pip 安装

pip install fundrive

从源码安装

python install git+https://github.com/farfarfun/fundrive.git

快速开始

以下是一个简单的示例,展示如何使用。

from fundrive import LanZouDrive, AlipanDrive, GiteeDrive, GithubDrive, OSSDrive

drive = LanZouDrive()
drive = AlipanDrive()
drive = GiteeDrive()
drive = GithubDrive()
drive = OSSDrive()

drive.login('***每个网盘需要的东西不一样***')

# 上传
drive.upload_file(local_path="./download", fid=888666)
# 下载文件
drive.download_file(fid=888666, local_dir='./download')
# 下载文件夹
drive.download_dir(fid=888666, local_dir="./download")
# 获取目录下的所有目录
drive.get_dir_list(fid=888666)
# 获取目录下的所有文件
drive.get_file_list(fid=888666)
# 删除某个文件
drive.delete(fid=888666)
# 某个文件是否存在
drive.exist(path='upload/README.md')

支持的云存储服务

序号网盘支持内容对应的包
1蓝奏云上传/下载/删除fundrive-lanzou
2OSS上传/下载/删除fundrive[oss]
3github上传/下载/删除fundrive
4gitee上传/下载/删除fundrive
5阿里云盘上传/下载/删除fundrive[alipan]
6百度网盘上传/下载/删除fundrive[baidu]
7谷歌网盘TODOfundrive
8DropboxTODOfundrive
9OneDriveTODOfundrive
10AmazonTODOfundrive
  • 更多服务即将推出...

贡献

我们欢迎任何形式的贡献!如果您想为 UCSI 做出贡献,请遵循以下步骤:

  1. Fork 项目仓库。
  2. 创建一个新的分支 (git checkout -b feature/your-feature-name)。
  3. 提交您的更改 (git commit -am 'Add some feature')。
  4. 推送到分支 (git push origin feature/your-feature-name)。
  5. 创建一个新的 Pull Request。

联系我们

如果您有任何问题或建议,请通过 issuesemail 联系我们。


感谢您使用统一云存储接口!我们希望这个工具能够简化您的云存储集成工作。

#参考 百度云盘的 python-api,官方 API
蓝奏云的 python-api 参考

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc