Metadata-Version: 1.0
Name: plantextract
Version: 0.2.8
Summary: Python Plant Extract Document processor
Home-page: https://github.com/lashex/ped.git
Author: Brett Francis
Author-email: UNKNOWN
License: Apache License, Version 2.0
Description: Plant Extract Document processor
        ================================
        A package for interacting with [SunSpec](http://sunspec.org) Plant Extract
        Documents and the standard blocks contained therein.
        
        Installation
        ------------
        Using pip::
        
            pip install plantextract
        
        Usage
        -------
        Typical usage looks like this::
        
            #!/usr/bin/env python
        
            from plantextract.ped import PlantExtract
            from plantextract.smdx import SMDX
        
            ped = PlantExtract('ped-file-to-process') # automatic parsing of envelope
            ped.parse_data()    # will parse an included sunSpecData block
            print ped.plant     # the Plant Info block
            print ped.plant.name    # the Plant's name attribute
            # ...etc...
        
            print ped.sunspec_data  # the sunSpecData block
            print ped.sunspec_data.device_records[0].models[0].smdx # SMDX info of model
            print ped.sunspec_data.device_records[0].models[0].points[0] # block structure
        
        Requires [lxml](http://lxml.de) 3.0.1.
Keywords: sunspec plant extract
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Other Audience
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development
Classifier: Topic :: Text Processing :: Markup :: XML
Classifier: Operating System :: OS Independent
