Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkazuo/dart-azblob
https://github.com/kkazuo/dart-azblob
Last synced: about 14 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/kkazuo/dart-azblob
- Owner: kkazuo
- License: isc
- Created: 2021-03-22T09:51:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-12T12:25:12.000Z (10 months ago)
- Last Synced: 2024-01-13T01:02:04.358Z (10 months ago)
- Language: Dart
- Size: 63.5 KB
- Stars: 4
- Watchers: 3
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
A trivial Azure Blob Storage client.
![workflow](https://github.com/kkazuo/dart-azblob/actions/workflows/dart.yml/badge.svg)
## 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