Business::FR::SIREN - Verify French Companies SIREN


Business-FR-SIRET documentation Contained in the Business-FR-SIRET distribution.

Index


Code Index:

NAME

Top

Business::FR::SIREN - Verify French Companies SIREN

SYNOPSIS

Top

  use Business::FR::SIREN;
  $c = Business::FR::SIREN->new('000111222');
  print $c->siren()." looks good\n" if $c->is_valid();

  $c = Business::FR::SIRET->new();
  $c->siren('000111222');
  print "looks good\n" if $c->is_valid();

  print "looks good\n" if $c->is_valid('000111222');

DESCRIPTION

Top

This module verifies SIRENs, which are french companies identification. This module cannot tell if a SIREN references a real company, but it can tell you if the given SIREN is properly formatted.

See Business::FR::SIRET for more documentation.

COPYRIGHT

Top

SEE ALSO

Top

perl(1), Business::FR::SIRET.


Business-FR-SIRET documentation Contained in the Business-FR-SIRET distribution.

package Business::FR::SIREN;

use strict;
use warnings;
use Algorithm::LUHN;
use base qw(Business::FR::SIRET);
our $VERSION = '0.01';

1;

__END__