killerfish / vdfparser

Module for valve data format (vdf) parsing in perl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vdfparser

This module converts valve data format (vdf) to perl data structure and vice versa.

METHODS
	use Vdfparser qw(encode decode);
        
	my $vdfdata = encode(%hash); #encode is yet to be implemented.
	
	my %input = (data => $data, [file => $pathtovdffile]);        Pass vdf data or filepath to vdf file
        my %hash_output = vdf_decode(%input);

INSTALLATION

To install this module, run the following commands:

	perl Makefile.PL
	make && make install

SUPPORT AND DOCUMENTATION

After installing, you can find detail documentation for this module with the
perldoc command or try the man command also

    	perldoc Vdfparser
    	man Vdfparser

LICENSE AND COPYRIGHT

Copyright 2014 Usman Raza. <usmandotr123 at gmaildotcom>

This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

About

Module for valve data format (vdf) parsing in perl


Languages

Language:Perl 100.0%