ao3 0.0.11
ao3: ^0.0.11 copied to clipboard
This is an unofficial API that lets you access some of AO3's (archiveofourown.org) data through dart.
example/example.dart
import 'package:ao3/ao3.dart';
void main() async{
Search search = Search(relationships: 'Hermione Granger/Harry Potter', );
await search.update();
print(search.results);
print(search.results[0].title);
}