Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 

README.md

b2-python

Python module for Backblaze-B2 service

Example usage:

>>> from b2 import B2
>>> backblaze = B2('account_id', 'account_key')
>>> bucket = backblaze.create_bucket('b2-api-test')
>>> bfile = backblaze.upload_file(bucket, '/path/to/file.zip')
>>> print('\n'.join(f.file_name for f in backblaze.list_file_names(bucket)))
file.zip
>>> print(backblaze.delete_file(bucket, 'file.zip'))
True

This module is work in progress, and not expected to be anywhere near production state.

About

Python module for Backblaze-B2 service

Topics

Resources

License

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.