Metadata-Version: 1.0
Name: Cooker
Version: 0.2
Summary: Python CodeChef Utilities
Home-page: http://pypi.python.org/pypi/Cooker/
Author: Nayan Shah
Author-email: nayan@nayanshah.com
License: LICENSE.txt
Description: =======
        Cooker
        =======
        
        Cooker provides easy access to various programming sites such as
        `CodeChef <http://www.codechef.com>`_.
        
        It eases up repetitive tasks like setting up directory for solving
        a new problem.
        Typical usage::
        
            #!/usr/bin/env python
        
            from cooker import Cooker
        
            problem = 'SIMGRAPH'
            contest = 'APRIL12'
            path = '.'
        
            c = Cooker()
            c.cook(problem, contest, path)
            print "Dinner is served!"
        
        
        A Sub-Section
        -------------
        
        The above code will setup the structure for the following problem :
        `CodeChef <http://www.codechef.com/APRIL12/problems/SIMGRAPH>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
