Browse Source

Old Finance::MtGox util that no longer works due to API changes

master
Jonathan "Duke" Leto 11 years ago
parent
commit
e14af092ad
  1. 9
      bin/mtgox

9
bin/mtgox

@ -0,0 +1,9 @@
#!/usr/bin/env perl
use warnings;
use strict;
use Finance::MtGox;
my $btc = Finance::MtGox->new({user => 'foo', password => 'asdf'});
my $price = $btc->market_price;
printf "$%.2f\n", $price;
Loading…
Cancel
Save