sra

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

sra

SRA - Some Random Api #

Minimal Dart wrapper to interact with Some Random Api. Easy to use, simplified and lightweight.
Getting started #
Add the package to your project.
$ dart pub add sra
copied to clipboard
Usage #
Import the package to your file/project.
import 'package:sra/sra.dart' as sra;
copied to clipboard
The package exports a base Client class which is the central spot for interacting with the api. The client class itself has only one public method fetch.
import 'package:sra/sra.dart' show Client;

void main() async {
var client = Client();
// Optionally pass the api key on class initiation
// Example: Client(apiKey);
var res = await client.fetch('/animal/dog');
print(res);
}
copied to clipboard
The fetch method takes 1 mandatory argument of type String, the endpoint path. You can optionally pass query parameters to the function (if the endpoint requires so). For endpoints that have some required parameters, if you don't specify one of them, the function throws an error.
// Fetching with parameters
client.fetch('/canvas/misc/oogway', {
'quote': 'Nothing is a mistake'
});
// The endpoint doesn't need any parameters so we don't
// need to provide anything else
client.fetch('/animal/dog');
// This throws an error, because the lied endpoint
// requires a mandatory parameter called 'avatar' which
// is not specified here, so it'll throw an error.
client.fetch('/canvas/misc/lied', {
'username': 'Yakiyo'
});
copied to clipboard
The fetch method returns Object which can be one of the two types, a Map<String, String> or List<int>. Endpoints that return a json result return Map, while endpoints that return PNG images return a List<U8int> or a buffer that can be used to write to a file (see fetch_binary.dart). Detailed usages can be found in the example/ directory. Feel free to ping me (Yakiyo#1206) in the SRA Discord Server for help, questions or anything.
All valid endpoints and their required/optional arguments are availabale in SRA docs. Currently only the Rank Card, Welcome Image (premium) and Welcome Image (free) are unavailable in the package. To be added soon™️.
Contribution and Issues #
For any issues or bugs, please file a new issue here.
All contributions are welcome. Before creating a Pull Request or working on a new feature, please open up an issue so that it can be discussed.
Author #
sra.dart © Yakiyo. Authored and maintained by Yakiyo.
Released under MIT License

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.