Metadata-Version: 1.1
Name: atomgen
Version: 0.1.2
Summary: Creates Apple Newsstand Atom Feed
Home-page: https://github.com/erasmose/atomgen
Author: Erasmose
Author-email: xpower3d@yahoo.com
License: MIT
Download-URL: https://github.com/erasmose/atomgen/tarball/master
Description: ##atomgen v 0.1.2
        =======
        
        Creates Apple Newsstand Atom Feed that is compatible with v1.2 of Atom Feed
        
        *Author: Erasmose*
        * [Github](https://github.com/erasmose)
        * [Linkedin](http://www.linkedin.com/in/sepehr)
        
        
        ##Installation
        
        Install from PyPi::
        
            pip install atomgen
        
        ##Example usage
            
        
            >>> import datetime
            >>> from atomgen.atomgen import AtomGen
            >>> my_atom = AtomGen()
            >>> a=[{'id':'1','updated':datetime.datetime(2013, 12, 10, 1, 9, 53, 977342),'published':datetime.datetime(2013, 12, 10, 1, 10, 53, 977342),'summary':"This is the summary 1",'icon':"http://ccc.com/img.png"},{'id':2,'updated':datetime.datetime(2013, 12, 9, 1, 9, 53, 977342),'published':datetime.datetime(2013, 12, 10, 1, 7, 53, 977342),'summary':"This is the summary 2",'icon':"http://ccc2.com/img2.png"}]
            >>> print my_atom.run(a, update_time=datetime.datetime(2013, 12, 10, 1, 9, 53, 977342))
                <?xml version='1.0' encoding='UTF-8'?>
                <feed xmlns="http://www.w3.org/2005/Atom" xmlns:news="http://itunes.apple.com/2011/Newsstand"><updated>2013-12-10T01:09:53Z</updated><entry><id>1</id><updated>2013-12-10T01:09:53Z</updated><published>2013-12-10T01:10:53Z</published><summary>This is the summary 1</summary><news:cover_art_icons><news:cover_art_icon size="SOURCE" src="http://ccc.com/img.png" /></news:cover_art_icons></entry><entry><id>2</id><updated>2013-12-09T01:09:53Z</updated><published>2013-12-10T01:07:53Z</published><summary>This is the summary 2</summary><news:cover_art_icons><news:cover_art_icon size="SOURCE" src="http://ccc2.com/img2.png" /></news:cover_art_icons></entry></feed>
        
        
        ##Documents
        
        * [Documentations](http://atomgen.readthedocs.org/en/latest/)
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
