A simple and easy to use async wrapper for Backblaze's B2 bucket API.
Project description
aiob2
aiob2 is an asynchronous API wrapper for the Backblaze B2 Native API.
It will allow you to interact with your B2 bucket and its files in a modern, object-oriented fashion.
NOTE: There are API endpoints left to implement, eventually they will be added. To speed up this process you can submit a pull request or suggest it.
Installation
aiob2 is compatible with Python 3.8+. To install aiob2, run the following command in your (virtual) environment.
pip install aiob2
Alternatively, for the latest though least stable version, you can download it from the GitHub repo:
pip install git+https://github.com/Void-ux/aiob2.git
Usage
Uploading
import aiohttp
import asyncio
from aiob2 import Client
# Our image to upload to our bucket
with open(r'C:\Users\MS1\Pictures\Camera Roll\IMG_5316.jpeg', 'rb') as file:
data = file.read()
async def main():
async with Client('key_id', 'key') as client:
file = await client.upload_file(
content_bytes=data,
file_name='test.jpg',
bucket_id='bucket_id',
)
if __name__ == '__main__':
asyncio.run(main())
And that's it! upload_file() returns a File object that neatly wraps everything Backblaze's API has provided us with.
The File object's documentation can be found here
License
This project is released under the MIT License.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aiob2-0.9.1.tar.gz.
File metadata
- Download URL: aiob2-0.9.1.tar.gz
- Upload date:
- Size: 21.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.12.9 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb18a5bb7cf073267acc09fe6bebbc10f21289eb5579593e07f365777bbf3f1d
|
|
| MD5 |
674fa7a65ae774ad4373e95aae959dbc
|
|
| BLAKE2b-256 |
b11eced52d2a7203f1f7c28bc6bd122ddc21f50f0444c82fbc58e02ee934c577
|
File details
Details for the file aiob2-0.9.1-py3-none-any.whl.
File metadata
- Download URL: aiob2-0.9.1-py3-none-any.whl
- Upload date:
- Size: 24.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.12.9 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
809e84645da0e8988da3aaf24b8308fb34951c5bb5e24e2a48845be2127643e5
|
|
| MD5 |
00d4741ec8532eb5795911d0ad45de5c
|
|
| BLAKE2b-256 |
22fc6416af732d0a74ede69851979f48e72665dc91b4340e5089afa263a86e71
|