#!/usr/bin/perl -w # Copyright 2008, 2009, 2010 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 . use strict; use warnings; use FindBin; use File::Spec; use Data::Dumper; use Perl6::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 = Perl6::Slurp::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 = Perl6::Slurp::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 = Perl6::Slurp::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; }