App-Chart
view release on metacpan or search on metacpan
misc/t-cas.pl view on Meta::CPAN
#!/usr/bin/perl -w
# Copyright 2008, 2009, 2010, 2016 Kevin Ryde
# This file is part of Chart.
#
# Chart is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 3, or (at your option) any later version.
#
# Chart is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along
# with Chart. If not, see <http://www.gnu.org/licenses/>.
use strict;
use warnings;
use FindBin;
use File::Spec;
use Data::Dumper;
use File::Slurp 'slurp';
use App::Chart::Suffix::CAS;
{
require LWP;
my $req = HTTP::Request->new();
$req->uri('http://www.casablanca-bourse.com/fiches/valeurs/MNG/fr/ost.html');
my $resp = HTTP::Response->new();
$resp->request ($req);
my $content
= slurp ($ENV{'HOME'}.'/chart/samples/casab/ost-fr.html');
$resp->content($content);
$resp->{'_rc'} = 200;
my $h = App::Chart::Suffix::CAS::dividends_parse ('MNG.CAS', $resp);
print Dumper ($h);
App::Chart::Download::write_daily_group ($h);
exit 0;
}
{
my $resp = HTTP::Response->new();
my $content = slurp ($ENV{'HOME'}.'/chart/samples/athex/dividends.asp.html');
$resp->content($content);
$resp->{'_rc'} = 200;
my $h = App::Chart::Suffix::CAS::dividends_parse ($resp);
print Dumper ($h);
exit 0;
}
{
my $resp = HTTP::Response->new();
my $content = slurp ($ENV{'HOME'}.'/chart/samples/athex/last30.html');
$resp->content($content);
$resp->{'_rc'} = 200;
my $h = App::Chart::Suffix::CAS::last30_parse ($resp);
print Dumper ($h);
# App::Chart::Download::write_daily_group ($h);
exit 0;
}
{
my $tdate = App::Chart::Float::available_tdate();
print "$tdate\n";
print App::Chart::tdate_to_ymd ($tdate);
exit 0;
}
( run in 2.105 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )