# man > Finance::Quote::Bourso

---
type: CommandReference
command: Finance::Quote::Bourso
mode: perldoc
section: 3pm
source: perldoc
---
## Quick Reference

- `$q = Finance::Quote->new; %info = $q->fetch("bourso","ml");` — Fetch quotes from Boursorama for a given symbol.
- `Finance::Quote->new("bourso")` — Explicitly load the Bourso module.

## Name

`Finance::Quote::Bourso` — Obtain quotes from Boursorama (Paris Stock Exchange).

## Synopsis

perl
use Finance::Quote;

$q = Finance::Quote->new;

%info = Finance::Quote->fetch("bourso","ml");  # Only query Bourso
## Description

This module fetches financial information from the Paris Stock Exchange via <https://www.boursorama.com>. All stocks listed on that exchange are available. The module is loaded by default when a `Finance::Quote` object is created, or it can be loaded explicitly by placing `"bourso"` in the argument list to `Finance::Quote->new()`.

Information obtained may be subject to Boursorama's terms and conditions (see <https://www.boursorama.com/>).

## Labels

The following labels are returned by `Finance::Quote::Bourso`:

- `name`
- `last`
- `symbol`
- `date`
- `isodate`
- `method`
- `currency`

For some symbols, additional information may be available:

- `exchange`
- `high`
- `low`
- `close`
- `net`
- `volume`

## Examples

perl
use Finance::Quote;
my $q = Finance::Quote->new;
my %info = $q->fetch("bourso", "ML");
print $info{name}, " ", $info{last}, "\n";
## See Also

- [Boursorama](https://www.boursorama.com) (French website)
- [Finance::Quote](https://metacpan.org/pod/Finance::Quote)