Finance-Bitcoin-Feed
view release on metacpan or search on metacpan
{
"abstract" : "Collect bitcoin real-time price from many sites' streaming data source",
"author" : [
"Chylli C<< <chylli@binary.com> >>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 5.031, Dist::Milla version v1.0.15, CPAN::Meta::Converter version 2.142690",
"license" : [
"apache_2_0"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
---
abstract: "Collect bitcoin real-time price from many sites' streaming data source"
author:
- 'Chylli C<< <chylli@binary.com> >>'
build_requires:
Test::MockModule: '0'
Test::MockObject: '0'
Test::More: '0.96'
Test::Perl::Critic: '0'
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 0
Makefile.PL view on Meta::CPAN
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "Collect bitcoin real-time price from many sites' streaming data source",
"AUTHOR" => "Chylli C<< <chylli\@binary.com> >>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Finance-Bitcoin-Feed",
"EXE_FILES" => [],
"LICENSE" => "apache",
"NAME" => "Finance::Bitcoin::Feed",
"PREREQ_PM" => {
"AnyEvent" => 0,
NAME
Finance::Bitcoin::Feed - Collect bitcoin real-time price from many
sites' streaming data source
SYNOPSIS
use Finance::Bitcoin::Feed;
#default output is to print to the stdout
Finance::Bitcoin::Feed->new->run();
# will print output to the stdout:
# BITSTAMP BTCUSD 123.00
lib/Finance/Bitcoin/Feed.pm view on Meta::CPAN
AnyEvent->condvar->recv;
return;
}
1;
__END__
=head1 NAME
Finance::Bitcoin::Feed - Collect bitcoin real-time price from many sites' streaming data source
=head1 SYNOPSIS
use Finance::Bitcoin::Feed;
#default output is to print to the stdout
Finance::Bitcoin::Feed->new->run();
# will print output to the stdout:
# BITSTAMP BTCUSD 123.00
( run in 0.302 second using v1.01-cache-2.11-cpan-4d50c553e7e )