File: control

package info (click to toggle)
libfinance-quote-perl 1.68-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,272 kB
  • sloc: perl: 9,955; makefile: 2
file content (87 lines) | stat: -rw-r--r-- 2,838 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
Source: libfinance-quote-perl
Standards-Version: 4.7.3
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders:
 gregor herrmann <gregoa@debian.org>,
Section: perl
Testsuite: autopkgtest-pkg-perl
Build-Depends:
 debhelper-compat (= 13),
Build-Depends-Indep:
 libcgi-pm-perl <!nocheck>,
 libdate-manip-perl <!nocheck>,
 libdate-range-perl <!nocheck>,
 libdate-simple-perl <!nocheck>,
 libdatetime-format-iso8601-perl <!nocheck>,
 libdatetime-format-strptime-perl <!nocheck>,
 libdatetime-perl <!nocheck>,
 libencode-perl <!nocheck>,
 libhtml-parser-perl <!nocheck>,
 libhtml-tableextract-perl <!nocheck>,
 libhtml-tree-perl <!nocheck>,
 libhtml-treebuilder-xpath-perl <!nocheck>,
 libhttp-cookiejar-perl <!nocheck>,
 libhttp-cookies-perl <!nocheck>,
 libhttp-message-perl <!nocheck>,
 libio-compress-perl <!nocheck>,
 libio-string-perl <!nocheck>,
 libjson-parse-perl <!nocheck>,
 libjson-perl <!nocheck>,
 liblwp-protocol-https-perl <!nocheck>,
 libreadonly-perl <!nocheck>,
 libscalar-list-utils-perl <!nocheck>,
 libstring-util-perl <!nocheck>,
 libtest-pod-coverage-perl <!nocheck>,
 libtest-simple-perl <!nocheck>,
 libtext-template-perl <!nocheck>,
 libtimedate-perl <!nocheck>,
 liburi-perl <!nocheck>,
 libweb-scraper-perl <!nocheck>,
 libwww-perl <!nocheck>,
 libxml-libxml-perl <!nocheck>,
 perl,
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libfinance-quote-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libfinance-quote-perl.git
Homepage: https://finance-quote.sourceforge.net/

Package: libfinance-quote-perl
Architecture: all
Depends:
 ${misc:Depends},
 ${perl:Depends},
 libcgi-pm-perl,
 libdatetime-format-strptime-perl,
 libencode-perl,
 libhtml-parser-perl,
 libhtml-tableextract-perl,
 libhtml-tree-perl,
 libhtml-treebuilder-xpath-perl,
 libhttp-cookiejar-perl,
 libhttp-cookies-perl,
 libhttp-message-perl,
 libio-compress-perl,
 libio-string-perl,
 libjson-parse-perl,
 libjson-perl,
 liblwp-protocol-https-perl,
 libreadonly-perl,
 libscalar-list-utils-perl,
 libstring-util-perl,
 libtext-template-perl,
 libtimedate-perl,
 liburi-perl,
 libweb-scraper-perl,
 libwww-perl,
 libxml-libxml-perl,
Description: Perl module for retrieving stock quotes from a variety of sources
 Finance::Quote gets stock quotes from various internet sources all over the
 world. Quotes are obtained by constructing a quoter object and using the
 fetch method to gather data, which is returned as a two-dimensional hash (or
 a reference to such a hash, if called in a scalar context). For example:
 .
  $q = Finance::Quote->new;
  %info = $q->fetch("australia", "CML");
  print "The price of CML is ".$info{"CML", "price"};
 .
 The first part of the hash (eg, "CML") is referred to as the stock.
 The second part (in this case, "price") is referred to as the label.