Group
Extension

Matches 35358

ETL-Yertl ( P/PR/PREACTION/ETL-Yertl-0.044.tar.gz, PREACTION, 2020; MetaCPAN )
ETL-Yertl/lib/ETL/Yertl/Adapter/graphite.pm ( view source; MetaCPAN )
t/render_api.html>
#pod
#pod =cut

use ETL::Yertl;
use Net::Async::HTTP;
use URI;
use JSON::MaybeXS qw( decode_json );
use List::Util qw( first );
use IO::Async::Loop;
use Time::Piece ();
use Scalar::
 my $metric = $query->{ metric };

    my %form = (
        target => $metric,
        format => 'json',
        noNullPoints => 'true',
    );

    if ( $query->{ start } ) {
        $form{ from } = 
r fetching metric '%s': " . $res->decoded_content . "\n", $metric;
    }

    my $result = decode_json( $res->decoded_content );
    my @points;
    for my $series ( @{ $result } ) {
        for my $p
Aspose3DCloud-ThreeDCloudApi ( A/AS/ASPOSEAPI/Aspose3DCloud-ThreeDCloudApi-20.5.0.tar.gz, ASPOSEAPI, 2020; MetaCPAN )
Aspose3DCloud-ThreeDCloudApi/lib/AsposeThreeDCloud/Object/DracoSaveOption.pm ( view source; MetaCPAN )
ud::Object::DracoSaveOption;

require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Da
turn perl hash
sub to_hash {
    return decode_json(JSON->new->convert_blessed->encode( shift ));
}

# used by JSON for serialization
sub TO_JSON { 
    my $self = shift;
    my $_data = {};
eserialize the data
    while ( my ($_key, $_type) = each %{$self->swagger_types} ) {
    	my $_json_attribute = $self->attribute_map->{$_key}; 
        if ($_type =~ /^array\[/i) { # array
      
Galileo ( J/JB/JBERGER/Galileo-0.043.tar.gz, JBERGER, 2020; MetaCPAN )
Galileo/lib/Galileo/Command/setup.pm ( view source; MetaCPAN )
se 'Mojolicious::Command';

use Mojolicious::Command::daemon;

use Mojolicious::Routes;
use Mojo::JSON 'j';

has description => "Configure your Galileo CMS via a web interface\n";

sub run {
  my ($se
tore_config' => sub {
    my $self = shift;
    my $names = $self->req->params->names;

    # map JSON keys to Perl data
    my %params = map { $_ => scalar $self->param($_) } @$names;
    foreach my 
Aspose3DCloud-ThreeDCloudApi ( A/AS/ASPOSEAPI/Aspose3DCloud-ThreeDCloudApi-20.5.0.tar.gz, ASPOSEAPI, 2020; MetaCPAN )
Aspose3DCloud-ThreeDCloudApi/lib/AsposeThreeDCloud/OAuthApi.pm ( view source; MetaCPAN )
tent-Type' header
    my $_header_accept = $self->{api_client}->select_header_accept('application/json');
    if ($_header_accept) {
        $header_params->{'Accept'} = $_header_accept;
    }
    $he
Galileo ( J/JB/JBERGER/Galileo-0.043.tar.gz, JBERGER, 2020; MetaCPAN )
Galileo/lib/Galileo/Page.pm ( view source; MetaCPAN )

  my $self = shift;
  $self->on( json => sub {
    my ($self, $data) = @_;

    my $schema = $self->schema;

    unless ( $data->{title} ) {
      $self->send({ json => {
        message => 'Not save
te_or_create(
      $data, {key => 'pages_name'},
    );
    $self->memorize->expire('main');
    $self->send({ json => {
      message => 'Changes saved',
      success => \1,
    } });
  });
}

1;

Galileo ( J/JB/JBERGER/Galileo-0.043.tar.gz, JBERGER, 2020; MetaCPAN )
Galileo/lib/Galileo/DB/Deploy.pm ( view source; MetaCPAN )
 'DBIx::Class::DeploymentHandler' }

# A wrapper class for DBICDH for use with Galileo

use Mojo::JSON 'j';

use File::ShareDir qw/dist_dir/;
use File::Spec;
use File::Temp ();
use File::Copy::Recursi
ETL-Yertl ( P/PR/PREACTION/ETL-Yertl-0.044.tar.gz, PREACTION, 2020; MetaCPAN )
ETL-Yertl/lib/ETL/Yertl.pm ( view source; MetaCPAN )
mat
    $ yfrom csv file.csv >work.yml
    $ yfrom json file.json >work.yml

    # Convert file to output format
    $ yto csv work.yml
    $ yto json work.yml

    # Parse HTTP logs into documents
  
/Extract,_transform,_load>) for shells. It is
designed to accept data from multiple formats (CSV, JSON), manipulate them
using simple tools, and then convert them to an output format.

Yertl will have
=over 4

=item L<yfrom>

Convert incoming data (CSV, JSON) to Yertl documents.

=item L<yto>

Convert Yertl documents into another format (CSV, JSON).

=item L<ygrok>

Parse lines of text into Yertl d
ETL-Yertl ( P/PR/PREACTION/ETL-Yertl-0.044.tar.gz, PREACTION, 2020; MetaCPAN )
ETL-Yertl/lib/ETL/Yertl/Help/ysql.pod ( view source; MetaCPAN )
'

=head1 Converting Formats

Yertl uses YAML as its default output, but we can easily convert to JSON or CSV
using the L<yto utility|yto>.

    $ ysql prod 'SELECT * FROM users' | yto csv
    email,i
,1,preaction
    postaction@example.com,2,postaction

    $ ysql prod 'SELECT * FROM users' | yto json
    {
       "email" : "preaction@example.com",
       "id" : "1",
       "name" : "preaction"
  
ETL-Yertl ( P/PR/PREACTION/ETL-Yertl-0.044.tar.gz, PREACTION, 2020; MetaCPAN )
ETL-Yertl/lib/ETL/Yertl/Help/Cookbook.pod ( view source; MetaCPAN )
've got serialized JSON in a database field, you can use C<jq> to deserialize
it:

    ysql TESTDB 'SELECT json_field FROM table'              # Query the database
        | yto json                  
                        # Convert to JSON for jq
        | js '.json_field | fromjson'                       # Inflate the JSON
        | yfrom json                                        # Convert ba
ETL-Yertl ( P/PR/PREACTION/ETL-Yertl-0.044.tar.gz, PREACTION, 2020; MetaCPAN )
ETL-Yertl/lib/ETL/Yertl/FormatStream.pm ( view source; MetaCPAN )
p;
#pod
#pod     my $loop = IO::Async::Loop->new;
#pod     my $format = ETL::Yertl::Format->get( "json" );
#pod
#pod     my $input = ETL::Yertl::FormatStream->new(
#pod         read_handle => \*STDIN,
IO::Async::Loop;

    my $loop = IO::Async::Loop->new;
    my $format = ETL::Yertl::Format->get( "json" );

    my $input = ETL::Yertl::FormatStream->new(
        read_handle => \*STDIN,
        forma
ETL-Yertl ( P/PR/PREACTION/ETL-Yertl-0.044.tar.gz, PREACTION, 2020; MetaCPAN )
ETL-Yertl/lib/ETL/Yertl/Format.pm ( view source; MetaCPAN )
mats

#pod =head1 SYNOPSIS
#pod
#pod     use ETL::Yertl::Format;
#pod     my $json_format = ETL::Yertl::Format->get( "json" );
#pod     my $default_format = ETL::Yertl::Format->get_default;
#pod
#pod 
#pod other. By default, this is C<YAML>, but it can be set to C<JSON> by
#pod setting the C<YERTL_FORMAT> environment variable to C<"json">.
#pod
#pod Setting the default format to something besides Y
 VERSION

version 0.044

=head1 SYNOPSIS

    use ETL::Yertl::Format;
    my $json_format = ETL::Yertl::Format->get( "json" );
    my $default_format = ETL::Yertl::Format->get_default;

=head1 DESCRIP
Search-Elasticsearch-Client-0_90-Async ( E/EZ/EZIMUEL/Search-Elasticsearch-Client-0_90-Async-7.30_1.tar.gz, EZIMUEL, 2020; MetaCPAN )
Search-Elasticsearch-Client-0_90-Async/lib/Search/Elasticsearch/Client/0_90/Async/Bulk.pm ( view source; MetaCPAN )
@actions  = @_;

    my $weak_add;
    my $add = sub {
        while (@actions) {
            my @json = try {
                $self->_encode_action( splice( @actions, 0, 2 ) );
            }
        
     };
            return unless @json;

            push @$buffer, @json;

            my $size = $self->_buffer_size;
            $size += length($_) + 1 for @json;
            $self->_buffer_size(
s a queue, buffering up actions
until it reaches a maximum count of actions, or a maximum size of JSON request
body, at which point it issues a C<bulk()> request.

Once you have finished adding action
AsposeThreeDCloud-ThreeDCloudApi ( A/AS/ASPOSE/AsposeThreeDCloud-ThreeDCloudApi-20.7.1.tar.gz, ASPOSE, 2020; MetaCPAN )
AsposeThreeDCloud-ThreeDCloudApi/lib/AsposeThreeDCloud/Object/AMFSaveOption.pm ( view source; MetaCPAN )
loud::Object::AMFSaveOption;

require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Da
turn perl hash
sub to_hash {
    return decode_json(JSON->new->convert_blessed->encode( shift ));
}

# used by JSON for serialization
sub TO_JSON { 
    my $self = shift;
    my $_data = {};
eserialize the data
    while ( my ($_key, $_type) = each %{$self->swagger_types} ) {
    	my $_json_attribute = $self->attribute_map->{$_key}; 
        if ($_type =~ /^array\[/i) { # array
      
AsposeThreeDCloud-ThreeDCloudApi ( A/AS/ASPOSE/AsposeThreeDCloud-ThreeDCloudApi-20.7.1.tar.gz, ASPOSE, 2020; MetaCPAN )
AsposeThreeDCloud-ThreeDCloudApi/lib/AsposeThreeDCloud/Object/Entity.pm ( view source; MetaCPAN )
ThreeDCloud::Object::Entity;

require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Da
turn perl hash
sub to_hash {
    return decode_json(JSON->new->convert_blessed->encode( shift ));
}

# used by JSON for serialization
sub TO_JSON { 
    my $self = shift;
    my $_data = {};
eserialize the data
    while ( my ($_key, $_type) = each %{$self->swagger_types} ) {
    	my $_json_attribute = $self->attribute_map->{$_key}; 
        if ($_type =~ /^array\[/i) { # array
      
AsposeThreeDCloud-ThreeDCloudApi ( A/AS/ASPOSE/AsposeThreeDCloud-ThreeDCloudApi-20.7.1.tar.gz, ASPOSE, 2020; MetaCPAN )
AsposeThreeDCloud-ThreeDCloudApi/lib/AsposeThreeDCloud/Object/Cylinder.pm ( view source; MetaCPAN )
reeDCloud::Object::Cylinder;

require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Da
turn perl hash
sub to_hash {
    return decode_json(JSON->new->convert_blessed->encode( shift ));
}

# used by JSON for serialization
sub TO_JSON { 
    my $self = shift;
    my $_data = {};
eserialize the data
    while ( my ($_key, $_type) = each %{$self->swagger_types} ) {
    	my $_json_attribute = $self->attribute_map->{$_key}; 
        if ($_type =~ /^array\[/i) { # array
      
AsposeThreeDCloud-ThreeDCloudApi ( A/AS/ASPOSE/AsposeThreeDCloud-ThreeDCloudApi-20.7.1.tar.gz, ASPOSE, 2020; MetaCPAN )
AsposeThreeDCloud-ThreeDCloudApi/lib/AsposeThreeDCloud/Object/FileVersions.pm ( view source; MetaCPAN )
Cloud::Object::FileVersions;

require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Da
turn perl hash
sub to_hash {
    return decode_json(JSON->new->convert_blessed->encode( shift ));
}

# used by JSON for serialization
sub TO_JSON { 
    my $self = shift;
    my $_data = {};
eserialize the data
    while ( my ($_key, $_type) = each %{$self->swagger_types} ) {
    	my $_json_attribute = $self->attribute_map->{$_key}; 
        if ($_type =~ /^array\[/i) { # array
      
Search-Elasticsearch-Client-2_0 ( E/EZ/EZIMUEL/Search-Elasticsearch-Client-2_0-7.30_1.tar.gz, EZIMUEL, 2020; MetaCPAN )
Search-Elasticsearch-Client-2_0/lib/Search/Elasticsearch/Client/2_0/Direct.pm ( view source; MetaCPAN )
wn fox");

=head2 Filter path parameter

Any API which returns a JSON body accepts a C<filter_path> parameter
which will filter the JSON down to only the specified paths.  For instance,
if you are run
ional
    );

Renders the template, filling in the passed-in parameters and returns the resulting JSON, eg:

    $results = $e->render_search_template(
        body => {
            inline => {
      
AsposeThreeDCloud-ThreeDCloudApi ( A/AS/ASPOSE/AsposeThreeDCloud-ThreeDCloudApi-20.7.1.tar.gz, ASPOSE, 2020; MetaCPAN )
AsposeThreeDCloud-ThreeDCloudApi/lib/AsposeThreeDCloud/Object/PlySaveOption.pm ( view source; MetaCPAN )
loud::Object::PlySaveOption;

require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Da
turn perl hash
sub to_hash {
    return decode_json(JSON->new->convert_blessed->encode( shift ));
}

# used by JSON for serialization
sub TO_JSON { 
    my $self = shift;
    my $_data = {};
eserialize the data
    while ( my ($_key, $_type) = each %{$self->swagger_types} ) {
    	my $_json_attribute = $self->attribute_map->{$_key}; 
        if ($_type =~ /^array\[/i) { # array
      
AsposeThreeDCloud-ThreeDCloudApi ( A/AS/ASPOSE/AsposeThreeDCloud-ThreeDCloudApi-20.7.1.tar.gz, ASPOSE, 2020; MetaCPAN )
AsposeThreeDCloud-ThreeDCloudApi/lib/AsposeThreeDCloud/Object/Error.pm ( view source; MetaCPAN )
eThreeDCloud::Object::Error;

require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Da
turn perl hash
sub to_hash {
    return decode_json(JSON->new->convert_blessed->encode( shift ));
}

# used by JSON for serialization
sub TO_JSON { 
    my $self = shift;
    my $_data = {};
eserialize the data
    while ( my ($_key, $_type) = each %{$self->swagger_types} ) {
    	my $_json_attribute = $self->attribute_map->{$_key}; 
        if ($_type =~ /^array\[/i) { # array
      
AsposeThreeDCloud-ThreeDCloudApi ( A/AS/ASPOSE/AsposeThreeDCloud-ThreeDCloudApi-20.7.1.tar.gz, ASPOSE, 2020; MetaCPAN )
AsposeThreeDCloud-ThreeDCloudApi/lib/AsposeThreeDCloud/Object/HTMLSaveOption.pm ( view source; MetaCPAN )
oud::Object::HTMLSaveOption;

require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Da
turn perl hash
sub to_hash {
    return decode_json(JSON->new->convert_blessed->encode( shift ));
}

# used by JSON for serialization
sub TO_JSON { 
    my $self = shift;
    my $_data = {};
eserialize the data
    while ( my ($_key, $_type) = each %{$self->swagger_types} ) {
    	my $_json_attribute = $self->attribute_map->{$_key}; 
        if ($_type =~ /^array\[/i) { # array
      

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.