
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
github.com/emilhakobian/go-backblaze
A golang client for Backblaze's B2 storage
Some simple examples to get you started. Errors are ommitted for brevity
Import the API package
import "gopkg.in/emilhakobian/go-backblaze.v0"
Create an API client
b2, _ := backblaze.NewB2(backblaze.Credentials{
AccountID: accountID,
ApplicationKey: applicationKey,
})
Create a bucket
bucket, _ := b2.CreateBucket("test_bucket", backblaze.AllPrivate)
Uploading a file
reader, _ := os.Open(path)
name := filepath.Base(path)
metadata := make(map[string]string)
file, _ := bucket.UploadFile(name, metadata, reader)
All API methods except B2.AuthorizeAccount
and Bucket.UploadHashedFile
will
retry once if authorization fails, which allows the operation to proceed if the current
authorization token has expired.
To disable this behaviour, set B2.NoRetry
to true
A test applicaiton has been implemented using this package, and can be found in the /b2 directory. It should provide you with more examples of how to use the API in your own applications.
To install the b2 command, use:
go get -u gopkg.in/kothar/go-backblaze.v0/b2
$ b2 --help
Usage:
b2 [OPTIONS] <command>
Application Options:
--account= The account ID to use [$B2_ACCOUNT_ID]
--appKey= The application key to use [$B2_APP_KEY]
-b, --bucket= The bucket to access [$B2_BUCKET]
-d, --debug Debug API requests
-v, --verbose Display verbose output
Help Options:
-h, --help Show this help message
Available commands:
createbucket Create a new bucket
delete Delete a file
deletebucket Delete a bucket
get Download a file
list List files in a bucket
listbuckets List buckets in an account
put Store a file
FAQs
Unknown package
Did you know?
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.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.