API-Mathpix

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      "homepage" : "https://github.com/eriam/API-Mathpix",
      "repository" : {
         "url" : "git://github.com/eriam/API-Mathpix.git",
         "web" : "https://github.com/eriam/API-Mathpix"
      }
   },
   "version" : "0.01",
   "x_contributors" : [
      "Eriam Schaffter <eriam@mediavirtuel.com>"
   ],
   "x_serialization_backend" : "JSON::PP version 4.04"
}

Makefile.PL  view on Meta::CPAN

    LICENSE          => 'artistic_2',
    MIN_PERL_VERSION => '5.006',
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => '0',
    },
    TEST_REQUIRES => {
        'Test::More' => '0',
    },
    PREREQ_PM => {
        'Moose'                   => '0.1',
        'JSON::PP'                => '0.1',
        'Algorithm::LeakyBucket'  => '0.08', 
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'API-Mathpix-*' },
);

# Compatibility with old versions of ExtUtils::MakeMaker
unless (eval { ExtUtils::MakeMaker->VERSION('6.64'); 1 }) {
    my $test_requires = delete $WriteMakefileArgs{TEST_REQUIRES} || {};
    @{$WriteMakefileArgs{PREREQ_PM}}{keys %$test_requires} = values %$test_requires;

lib/API/Mathpix.pm  view on Meta::CPAN

package API::Mathpix;

use Moose;
use JSON::PP;
use LWP::UserAgent;
use HTTP::Request;
use MIME::Base64;
use Algorithm::LeakyBucket;

use API::Mathpix::Response;

has 'app_id' => (
  is  => 'rw',
  isa => 'Str'



( run in 1.148 second using v1.01-cache-2.11-cpan-140bd7fdf52 )