Acme-Constructor-Pythonic

 view release on metacpan or  search on metacpan

CONTRIBUTING  view on Meta::CPAN


    *   Translation

        Translations of documentation would be welcome.

        For translations of error messages and other strings embedded in the
        code, check with me first. Sometimes the English strings may not in
        a stable state, so it would be a waste of time translating them.

  Coding Style
    I tend to write using something approximating the Allman style, using
    tabs for indentation and Unix-style line breaks.

    *   <http://en.wikipedia.org/wiki/Indent_style#Allman_style>

    *   <http://www.derkarl.org/why_to_tabs.html>

    I nominally encode all source files as UTF-8, though in practice most of
    them use a 7-bit-safe ASCII-compatible subset of UTF-8.

AUTHOR
    Toby Inkster <tobyink@cpan.org>.

COPYRIGHT AND LICENCE

META.json  view on Meta::CPAN

{
   "abstract" : "import Python-style constructor functions",
   "author" : [
      "Toby Inkster (TOBYINK) <tobyink@cpan.org>"
   ],
   "dynamic_config" : 0,
   "generated_by" : "Dist::Inkt::Profile::TOBYINK version 0.015, CPAN::Meta::Converter version 2.120921",
   "keywords" : [],
   "license" : [
      "perl_5"
   ],
   "meta-spec" : {

META.yml  view on Meta::CPAN

---
abstract: 'import Python-style constructor functions'
author:
  - 'Toby Inkster (TOBYINK) <tobyink@cpan.org>'
build_requires:
  Test::More: 0.61
configure_requires:
  ExtUtils::MakeMaker: 6.17
dynamic_config: 0
generated_by: 'Dist::Inkt::Profile::TOBYINK version 0.015, CPAN::Meta::Converter version 2.120921'
keywords: []
license: perl

Makefile.PL  view on Meta::CPAN

use strict;
use ExtUtils::MakeMaker 6.17;

my $EUMM = eval( $ExtUtils::MakeMaker::VERSION );

my $meta = {
  "abstract"       => "import Python-style constructor functions",
  "author"         => ["Toby Inkster (TOBYINK) <tobyink\@cpan.org>"],
  "dynamic_config" => 0,
  "generated_by"   => "Dist::Inkt::Profile::TOBYINK version 0.015, CPAN::Meta::Converter version 2.120921",
  "keywords"       => [],
  "license"        => ["perl_5"],
  "meta-spec"      => {
                        url => "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
                        version => 2,
                      },
  "name"           => "Acme-Constructor-Pythonic",

README  view on Meta::CPAN

NAME
    Acme::Constructor::Pythonic - import Python-style constructor functions

SYNOPSIS
        use Acme::Constructor::Pythonic qw(
            LWP::UserAgent
            JSON
            HTTP::Request
        );
    
        my $json = JSON();
        my $ua   = UserAgent();

doap.ttl  view on Meta::CPAN

	doap:homepage        <https://metacpan.org/release/Acme-Constructor-Pythonic>;
	doap:license         <http://dev.perl.org/licenses/>;
	doap:maintainer      <http://purl.org/NET/cpan-uri/person/tobyink>;
	doap:name            "Acme-Constructor-Pythonic";
	doap:programming-language "Perl";
	doap:release         <http://purl.org/NET/cpan-uri/dist/Acme-Constructor-Pythonic/v_0-001>, <http://purl.org/NET/cpan-uri/dist/Acme-Constructor-Pythonic/v_0-002>;
	doap:repository      [
		a doap:GitRepository;
		doap:browse <https://github.com/tobyink/p5-acme-constructor-pythonic>;
	];
	doap:shortdesc       "import Python-style constructor functions".

<http://purl.org/NET/cpan-uri/dist/Acme-Constructor-Pythonic/v_0-001>
	a                    doap:Version;
	rdfs:label           "Initial release";
	dc:identifier        "Acme-Constructor-Pythonic-0.001"^^xsd:string;
	dc:issued            "2012-10-22"^^xsd:date;
	doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
	doap:file-release    <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Acme-Constructor-Pythonic-0.001.tar.gz>;
	doap:revision        "0.001"^^xsd:string.

lib/Acme/Constructor/Pythonic.pm  view on Meta::CPAN

	
	return ($alias => $coderef);
}

1;

__END__

=head1 NAME

Acme::Constructor::Pythonic - import Python-style constructor functions

=head1 SYNOPSIS

    use Acme::Constructor::Pythonic qw(
        LWP::UserAgent
        JSON
        HTTP::Request
    );
    
    my $json = JSON();



( run in 2.226 seconds using v1.01-cache-2.11-cpan-49f99fa48dc )