Main > Free Download Search >

Free auto insurance quotes software for linux

auto insurance quotes

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 836
Finance-QuoteHist 1.07

Finance-QuoteHist 1.07


Finance-QuoteHist provides Finance::QuoteHist, a Perl module that provides easy fetching of historical stock quotes. more>>
Top level aggregator that will select a default lineup of site instances default lineup of site instancesof site instancesof site instancesof site instances from which to retrieve quotes.
Other than the default lineup, this module behaves identically to whichever site-specific module is first in the lineup. See below for site-specific modules.
METHODS
The basic user interface consists of several methods, as seen in the example above. Those methods are:
quotes()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Symbol, Date, Open, High, Low, Close, and Volume for that date. Optionally, if non-adjusted values were requested, their will be an extra element at the end of the row for the Adjusted closing price.
dividends()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Date and amount of the Dividend, in that order.
splits()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Date, Post split shares, and Pre split shares, in that order.
source($ticker, $target)
Each of these methods displays which site-specific class actually retrieved the information, if any, for a particular ticker symbol and target such as quote (default), dividend, or split.
Enhancements:
- The internal structure was changed to use date iterators where appropriate.
- The documentation was fixed for MSN.
- Various minor edge cases were fixed.
<<less
Download (0.025MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1306 downloads
Finance::Quote 1.12

Finance::Quote 1.12


Finance::Quote is a Perl module to get stock and mutual fund quotes from various exchanges. more>>
Finance::Quote is a Perl module to get stock and mutual fund quotes from various exchanges.

SYNOPSIS

use Finance::Quote;
$q = Finance::Quote->new;

$q->timeout(60);

$conversion_rate = $q->currency("AUD","USD");
$q->set_currency("EUR"); # Return all info in Euros.

$q->require_labels(qw/price date high low volume/);

$q->failover(1); # Set failover support (on by default).

%quotes = $q->fetch("nasdaq",@stocks);
$hashref = $q->fetch("nyse",@stocks);

This module gets stock quotes from various internet sources, including Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange. There are two methods of using this module -- a functional interface that is depreciated, and an object-orientated method that provides greater flexibility and stability.

With the exception of straight currency exchange rates, all information is returned as a two-dimensional hash (or a reference to such a hash, if called in a scalar context). For example:

%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.

<<less
Download (0.090MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1046 downloads
Finance::Quote::ASX 1.12

Finance::Quote::ASX 1.12


Finance::Quote::ASX is a Perl module that can obtain quotes from the Australian Stock Exchange. more>>
Finance::Quote::ASX is a Perl module that can obtain quotes from the Australian Stock Exchange.

SYNOPSIS

use Finance::Quote;

$q = Finance::Quote->new;

%stockinfo = $q->fetch("asx","BHP"); # Only query ASX.
%stockinfo = $q->fetch("australia","BHP"); # Failover to other sources OK.

This module obtains information from the Australian Stock Exchange http://www.asx.com.au/. All Australian stocks and indicies are available. Indexes start with the letter X. For example, the All Ordinaries is "XAO".

This module is loaded by default on a Finance::Quote object. Its also possible to load it explicity by placing "ASX" in the argument list to Finance::Quote->new().
This module provides both the "asx" and "australia" fetch methods. Please use the "australia" fetch method if you wish to have failover with other sources for Australian stocks (such as Yahoo). Using the "asx" method will guarantee that your information only comes from the Australian Stock Exchange.

Information returned by this module is governed by the Australian Stock Exchanges terms and conditions.

<<less
Download (0.090MB)
Added: 2006-12-20 License: Perl Artistic License Price:
1038 downloads
Auto Contrast

Auto Contrast


Auto Contrast is a script-fu based on a technique by lylejk of dpreview.com that performs an entirely automatic contrast adjust. more>>
Auto Contrast is a script-fu based on a technique by lylejk of dpreview.com that performs an entirely automatic contrast adjustment.

You may like the effect, dislike it, or not see a change, but its worth a try!

<<less
Download (MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1179 downloads
Auto-Transcode 0.1

Auto-Transcode 0.1


Auto-Transcode is a user-friendly GTK2 GUI for Transcode. more>>
Auto-Transcode is a user-friendly GTK2 GUI for Transcode. It allows you to easily convert various audio and video formats that are used by everybody.
<<less
Download (0.019MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1183 downloads
Quotable Homer quotes .9

Quotable Homer quotes .9


Quotable Homer quotes project consists of Homer Simpson quotes for `fortune`. more>>
Quotable Homer quotes project consists of Homer Simpson quotes for `fortune`.
In 1999, Fox published a one-a-day calendar of Homer Simpson quotes. On the back of each page was the name of the episode from the quote came, providing us fanatics with some fun trivia.
At some point, I decided that itd be nice to have all of those quotes in a file parsable by `fortune`. So, you get what we have here.
Installing:
Simply place the files `homer and `homer.dat into same the directory as the other fortune files.
Usually, this is (on GNU/Linux) `/usr/share/games/fortunes.
If, for some reason, youd rather not get homer quotes, simply delete the file `homer.dat.
At any later date, you may run `strfile homer` and the .dat file will be recreated. Could it be any easier?
Enhancements:
- this is now released under a license.
<<less
Download (0.023MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1052 downloads
Finance::YahooQuote 0.22

Finance::YahooQuote 0.22


Finance::YahooQuote is a Perl module that can get stock quotes from Yahoo! Finance. more>>
Finance::YahooQuote is a Perl module that can get stock quotes from Yahoo! Finance.

SYNOPSIS

use Finance::YahooQuote;
# setting TIMEOUT and PROXY is optional
$Finance::YahooQuote::TIMEOUT = 60;
$Finance::YahooQuote::PROXY = "http://some.where.net:8080";
@quote = getonequote $symbol; # Get a quote for a single symbol
@quotes = getquote @symbols; # Get quotes for a bunch of symbols
useExtendedQueryFormat(); # switch to extended query format
useRealtimeQueryFormat(); # switch to real-time query format
@quotes = getquote @symbols; # Get quotes for a bunch of symbols
@quotes = getcustomquote(["DELL","IBM"], # using custom format
["Name","Book Value"]); # note array refs

This module gets stock quotes from Yahoo! Finance. The getonequote function will return a quote for a single stock symbol, while the getquote function will return a quote for each of the stock symbols passed to it. getcustomquote allows to specify a format other than the default to take advantage of the extended range of available information.

The download operation is efficient: only one request is made even if several symbols are requested at once. The return value of getonequote is an array, with the following elements:

0 Symbol
1 Company Name
2 Last Price
3 Last Trade Date
4 Last Trade Time
5 Change
6 Percent Change
7 Volume
8 Average Daily Vol
9 Bid
10 Ask
11 Previous Close
12 Todays Open
13 Days Range
14 52-Week Range
15 Earnings per Share
16 P/E Ratio
17 Dividend Pay Date
18 Dividend per Share
19 Dividend Yield
20 Market Capitalization
21 Stock Exchange

If the extended format has been selected, the following fields are also retrieved:

22 Short ratio
23 1yr Target Price
24 EPS Est. Current Yr
25 EPS Est. Next Year
26 EPS Est. Next Quarter
27 Price/EPS Est. Current Yr
28 Price/EPS Est. Next Yr
29 PEG Ratio
30 Book Value
31 Price/Book
32 Price/Sales
33 EBITDA
34 50-day Moving Avg
35 200-day Moving Avg
If the real-time format has been selected, the following fields are also retrieved:
36 Ask (real-time)
37 Bid (real-time)
38 Change in Percent (real-time)
39 Last trade with time (real-time)
40 Change (real-time)
41 Day range (real-time)
42 Market-cap (real-time)

The getquote function returns an array of pointers to arrays with the above structure.
The getonequote function returns just one quote, rather than an array. It returns a simple array of values for the given symbol.

The setQueryString permits to supply a new query string that will be used for subsequent data requests.

The useExtendedQueryFormat and useRealtimeQueryFormat are simpler interfaces which append symbols to the default quote string, as detailed above.

The getcustomquote returns an array of quotes corresponding to values for the symbols supplied in the first array reference, and the custom fields supplied in the second array reference. Here the custom fields correspond to the named fields of the list below.

Beyond stock quotes, Finance::YahooQuote can also obtain quotes for currencies (from the Philadephia exchange -- however Yahoo! appears to have stopped to support the currency symbols in a reliable manner), US mutual funds, options on US stocks, several precious metals and quite possibly more; see the Yahoo! Finance website for full information. Finance::YahooQuote can be used for stocks from the USA, Canada, various European exchanges, various Asian exchanges (Singapore, Taiwan, HongKong, Kuala Lumpur, ...) Australia and New Zealand. It should work for other markets supported by Yahoo.

You may optionally override the default LWP timeout of 180 seconds by setting $Finance::YahooQuote::TIMEOUT to your preferred value.

You may also provide a proxy (for the required http connection) by using the variable $Finance::YahooQuote::PROXY. Furthermore, authentication-based proxies can be used by setting the proxy user and password via the variables $Finance::YahooQuote::PROXYUSER and $Finance::YahooQuote::PROXYPASSWD.

Two example scripts are provided to help with the mapping a stock symbols as well as with Yahoo! Finance server codes. The regression tests scripts in the t/ subdirectory of the source distribution also contain simple examples.

<<less
Download (0.022MB)
Added: 2007-02-23 License: Perl Artistic License Price:
976 downloads
Open Source Quotes DataBase 0.1 Alpha

Open Source Quotes DataBase 0.1 Alpha


Open Source Quotes DataBase is a Web site which is very similar in style to the bash.org QDB. more>>
Open Source Quotes DataBase is a Web site which is very similar in style to the bash.org QDB. Open Source Quotes DataBase is designed for people who would like to run their own quote sites.
Enhancements:
- The ability has been added for all admin users to change their own passwords, including mods.
- An error on some systems that stopped you from changing the admin password has been fixed.
- The voting page bug has been fixed.
- This will need a complete rewrite at a later stage.
- The browse function has been rewritten so that there are fewer problems with the page number output.
- The "Hacking Attempt" code has been fixed.
<<less
Download (0.081MB)
Added: 2005-12-05 License: GPL (GNU General Public License) Price:
1425 downloads
LiveJournal Quote 0.5

LiveJournal Quote 0.5


LiveJournal Quote is a Firefox extension that tires to make our communication in LJ more easy. more>>
LiveJournal Quote is a Firefox extension that tires to make our communication in LJ more easy. It makes quotes.
How does it works?
1) You can write in post-form tags [quote]Text[/quote] and on clicking the Send-button tags will be converted in html-quote (Div element)
2) You can also select some text on page, right-click, and choose Quote: "Selected Text" and your selected text will be quoted in Send-form.
3) You can easily modify the quote-element as you want. Just open "Settings" in Tools menu, and youll be able to edit CSS code of our Quote-elements
Localization:
- English,
- Russian,
- Deutch
<<less
Download (0.021MB)
Added: 2007-05-30 License: MPL (Mozilla Public License) Price:
882 downloads
Stock Quote 1.2.4

Stock Quote 1.2.4


Stock Quote allows getting stock quote of selected ticker from any financial site that you define in the setting page. more>>
Stock Quote is a Firefox extension that allows you to get stock quote of selected ticker from any financial site that you define in the setting page.

<<less
Download (0.007MB)
Added: 2007-06-02 License: MPL (Mozilla Public License) Price:
887 downloads
Finance::QuoteHist::Yahoo 1.09

Finance::QuoteHist::Yahoo 1.09


Finance::QuoteHist::Yahoo is a Perl module with site-specific subclass for retrieving historical stock quotes. more>>
Finance::QuoteHist::Yahoo is a Perl module with site-specific subclass for retrieving historical stock quotes.

SYNOPSIS

use Finance::QuoteHist::Yahoo;
$q = new Finance::QuoteHist::Yahoo
(
symbols => [qw(IBM UPS AMZN)],
start_date => 01/01/1999,
end_date => today,
);

# Values
foreach $row ($q->quotes()) {
($symbol, $date, $open, $high, $low, $close, $volume) = @$row;
...
}

# Splits
foreach $row ($q->splits()) {
($symbol, $date, $post, $pre) = @$row;
}

# Dividends
foreach $row ($q->dividends()) {
($symbol, $date, $dividend) = @$row;
}

Finance::QuoteHist::Yahoo is a subclass of Finance::QuoteHist::Generic, specifically tailored to read historical quotes, dividends, and splits from the Yahoo web site (http://table.finance.yahoo.com/).

For quotes and dividends, Yahoo can return data quickly in CSV format. Both of these can also be extracted from HTML tables. Splits are only available embedded in the HTML version of dividends.

There are no date range restrictions on CSV queries for quotes and dividends.
For HTML queries, Yahoo takes arbitrary date ranges as arguments, but breaks results into pages of 66 entries.

Please see Finance::QuoteHist::Generic(3) for more details on usage and available methods. If you just want to get historical quotes and are not interested in the details of how it is done, check out Finance::QuoteHist(3).

<<less
Download (0.028MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1048 downloads
Home Insurance Inventory Wizard 2.3

Home Insurance Inventory Wizard 2.3


Home Insurance Inventory Wizard is an free little program you can upload to your web site to add some extra functionality. more>>
Home Insurance Inventory Wizard is an free little program you can upload to your web site to add some extra functionality.
Home Insurance Inventory Wizard makes taking a home inventory for home insurance purposes extremely simple. And installing it is super easy, too. Best of all, its free!
Main features:
- Javascript and PHP-based for maximum compatibility
- The home inventory list expands as new rooms and items are added indefinitely. Can be useful for small apartments or large houses.
- Inventories can be saved by the user and downloaded, no databases needed!
- Home inventory lists can be uploaded by a user later so that they can make adjustments and add new items
- An HTML output option allows the user to create and then print a nicely formatted HTML version of their home inventory. Also includes option to add images of items.
- No adware, spyware or viruses
- The Home Insurance Inventory Wizard is absolutely FREE!
<<less
Download (0.011MB)
Added: 2006-01-16 License: Freeware Price:
1379 downloads
Bad Credit Auto Financing 1

Bad Credit Auto Financing 1


Bad Credit Auto Financing icons for your credit website. If you have a credit website such as credit cards or loans these icons will work great. All o... more>> <<less
Download (41KB)
Added: 2009-04-15 License: Freeware Price: Free
192 downloads
Finance::Quote::Yahoo::USA 1.12

Finance::Quote::Yahoo::USA 1.12


Finance::Quote::Yahoo::USA is a Perl module to obtain information about stocks and funds in the USA and Canada. more>>
Finance::Quote::Yahoo::USA is a Perl module to obtain information about stocks and funds in the USA and Canada.

SYNOPSIS

use Finance::Quote;

$q = Finance::Quote->new;

%info = $q->fetch("usa","SGI");

This method provides access to financial information from a number of exhcanges in the United States and Canada. The following methods are available:

canada
usa
yahoo
nyse
nasdaq
vanguard
fidelity

These methods all use the same information source, and hence can be considered somewhat interchangable. However, the method "yahoo" should be passed to fetch if you wish to obtain information from any source that Yahoo tracks.

This method is loaded by default by Finance::Quote, although it can be explicitly loaded by passing the argument "Yahoo::USA" to Finance::Quote->new().

Information returned by this module may be subject to Yahoos terms and conditions. See http://finance.yahoo.com/ for more information.

LABELS RETURNED

This module returns all the standard labels that Yahoo provides, as well as the currency label. See Finance::Quote::Yahoo::Base for more information.

BUGS

Yahoo does not make a distinction between the various exchanges in the United States and Canada. For example, it is possible to request a stock using the "NYSE" method and still obtain data even if that stock does not exist on the NYSE but exists on a different exchange.

<<less
Download (0.090MB)
Added: 2006-12-11 License: Perl Artistic License Price:
1047 downloads
Auto Save Document 1.2.0.28

Auto Save Document 1.2.0.28


Auto Save Document is an extension used to store the currently shown document in a separate directory automatically. more>>
Auto Save Document is an extension used to store the currently shown document in a separate directory automatically.

Autosave is a small extension, which can be used to store the currently shown document in a seperate directory automatically when browsing a certain site. You may configure the sites, where all pages will be stored to cache, by adding them to a list. The documents are stored as html-text only (no embedded objects like pictures etc.)

The files are cyclic reused, e.g. if you set the cache size to 100, Autosave will store the document contents to X:/MyCache/Autosave_0.html ... AutoSave_100.html and start again with AutoSave_0.htm when the 101st page is browsed. A small Icon in the statusbar will change its colour each time to indicate a page was written.

If you click this small icon, the current page will be dumped, regardless if the site is in the autosave list or not.

NOTE: this extension is really, really simple! Only plain text is saved, no external .css,.js => the result may look ugly! The one and only intention for this extension is, to save the text for external parsing or similar! Look for Scrapbook etc. in case you want to store more than the plain text!

<<less
Download (0.009MB)
Added: 2007-04-03 License: MPL (Mozilla Public License) Price:
973 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5