https://github.com/kkazuo/dart-azblob
https://github.com/kkazuo/dart-azblob
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kkazuo/dart-azblob
- Owner: kkazuo
- License: isc
- Created: 2021-03-22T09:51:14.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-12T12:25:12.000Z (over 1 year ago)
- Last Synced: 2025-03-27T04:33:14.283Z (3 months ago)
- Language: Dart
- Size: 63.5 KB
- Stars: 8
- Watchers: 2
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
A trivial Azure Blob Storage client.

## Usage
A simple usage example:
```dart
import 'package:azblob/azblob.dart';main() async {
var storage = AzureStorage.parse('your connection string');
await storage.putBlob('/yourcontainer/yourfile.txt',
body: 'Hello, world.');
}
```## License
ISC