Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nombrekeff/flutter_poeditor
https://github.com/nombrekeff/flutter_poeditor
Last synced: about 11 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/nombrekeff/flutter_poeditor
- Owner: nombrekeff
- License: mit
- Created: 2022-07-12T14:10:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-02T10:41:42.000Z (over 2 years ago)
- Last Synced: 2023-08-09T13:42:58.340Z (over 1 year ago)
- Language: Dart
- Size: 18.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Dart package to communicate with the [POEditor API](https://poeditor.com/docs/api)
## Features
Manage your POEditor projects, translations, and terms via it's API from dart.## Getting started
To install the package check the install [guide](https://pub.dev/packages/dart_poeditor/install)
## Usage
Check the examples in the `/example` folder.
```dart
import 'package:dart_poeditor/dart_poeditor.dart';final editor = POEditorAPI(apiToken: env['API_TOKEN'] as String);
editor.projects
.exportJson(projectId: int.parse(env['PROJECT_ID'] ?? '0'), language: 'es')
.then((value) => print(value));
```