https://github.com/canonical/appstream.dart
Native Dart client library to process Appstream metadata.
https://github.com/canonical/appstream.dart
dart
Last synced: 6 months ago
JSON representation
Native Dart client library to process Appstream metadata.
- Host: GitHub
- URL: https://github.com/canonical/appstream.dart
- Owner: canonical
- License: mpl-2.0
- Created: 2021-05-31T03:57:00.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-26T20:14:56.000Z (almost 3 years ago)
- Last Synced: 2024-04-10T05:28:11.461Z (almost 2 years ago)
- Topics: dart
- Language: Dart
- Homepage: https://pub.dev/packages/appstream
- Size: 85 KB
- Stars: 7
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pub.dev/packages/appstream)
A parser for [Appstream](https://www.freedesktop.org/software/appstream) data.
This package allows Dart applications to access package metadata on Linux systems.
```dart
import 'package:appstream/appstream.dart';
var pool = AppstreamPool();
await pool.load();
for (var component in pool.components) {
print(component);
}
```
## Contributing to appstream.dart
We welcome contributions! See the [contribution guide](CONTRIBUTING.md) for more details.