Metadata-Version: 1.0
Name: pyICSParser
Version: 0.5.1
Summary: Parses ics files and converts into python array of dates description and uid.
Home-page: http://ical2list.appspot.com
Author: Oberron
Author-email: one.annum@gmail.com
License: LICENSE.txt
Description: =============
        pyICALParser
        =============
        
        pyICALParser parses ics (RFC5545 aka ical) files and converts into python array 
        [[dates, description, uid]]
        
        Typical usage often looks like this::
        
        	#!/usr/bin/env python
        	
        	from pyICSParser import ical
        	
        	mycal = ical.ics(start,end)
        	#start and end are string objects of yyyymmdd type
        	mycal.local_load(file)
        	#file being string representation of file location
        	mycal.parse_loaded()
        	mycal.flatten()
        	dates = sorted(mycal.flat_events)
        	#dates will contain the array with all explicit events spec'ed by the ics
        
        Paragraphs are separated by blank lines. *Italics*, **bold**,
        and ``monospace`` look like this.
        
        
        Versions
        =========
        
        * Pre-alpha
        	-v0.0.1: first pre-alpha
        	
        	-v0.0.27: fixed the dtstart to dtend problem for holiday
        
        * alpha
        	-0.4.x: first fully tested handling days - remains to be done is handling of
        	time of events
        	-0.5.x: added support for EXDATE
        	
        Future developments
        --------------------
        1. handle of datetime (currently only handles date)
        2. handle of EXRULE
        
        Thanks
        -------
        * http://www.tele3.cz/jbar/rest/rest.html: reST to HTML & reST validator
        * http://guide.python-distribute.org/contributing.html: registering a package on pypi and password information
        * http://guide.python-distribute.org/creation.html: uploading a package to pypi
        * http://blog.msbbc.co.uk/2007/06/using-googles-free-svn-repository-with.html: how to use google codes, subclipse and eclipse
Keywords: ICS parser
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License
