treasury_direct

Creator: coderz1093

Last updated:

0 purchases

treasury_direct Image
treasury_direct Images
Add to Cart

Description:

treasury direct

treasury_direct #

A Dart library package to access the debt of the United States from the US Treasury site. This package can be used in a command line app or in a Flutter app.
Example #
import 'package:treasury_direct/treasury_direct.dart';
import 'package:treasury_direct/src/debt_entry.dart';

void main() async {
final td = TreasuryDirect();
final list = await td.downloadDebtFeedAsync(pagesize: 15);

print('Total possible rows: ${list.totalRows}');

print('Total row received: ${list.mostRecentList.length}');
for (DebtEntry entry in list.mostRecentList) {
print('${DebtEntry.dateFormatted(entry.effectiveDate)}: ${DebtEntry.currencyShortened(entry.totalDebt, false)}');
}
}
copied to clipboard
Expected output:
Total possible rows: 7156
Total row received: 7156
Oct 7, 2021: $28.43T
Oct 6, 2021: $28.43T
Oct 5, 2021: $28.43T
Oct 4, 2021: $28.43T
Oct 1, 2021: $28.43T
Sep 30, 2021: $28.43T
Sep 29, 2021: $28.43T
Sep 28, 2021: $28.43T
Sep 27, 2021: $28.43T
Sep 24, 2021: $28.43T
Sep 23, 2021: $28.43T
Sep 22, 2021: $28.43T
Sep 21, 2021: $28.43T
Sep 20, 2021: $28.43T
Sep 17, 2021: $28.43T
...
copied to clipboard
Debt to the Penny API Docs: #
https://fiscaldata.treasury.gov/datasets/debt-to-the-penny/

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.