Metadata-Version: 1.1
Name: timeparse
Version: 0.4.2
Summary: An argparse-extension for parsing command-line arguments as time-, date-, datetime-, or timedelta-objects.
Home-page: https://github.com/thomst/timeparse
Author: Thomas Leichtfuss
Author-email: thomaslfuss@gmx.de
License: GPL
Download-URL: https://pypi.python.org/packages/source/t/timeparse/timeparse-0.4.2.tar.gz
Description: timeparse
        ==========
        
        An argparse-extension for parsing command-line arguments as time-, date-,
        datetime-, or timedelta-objects.
        
        Latest Version
        --------------
        The latest version of this project can be found at : http://github.com/thomst/timeparse.
        
        
        Installation
        ------------
        * Option 1 : Install via pip ::
        
            pip install timeparse
        
        * Option 2 : If you have downloaded the source ::
        
            python setup.py install
        
        
        Documentation
        -------------
        How to use? ::
        
            >>> import argparse
            >>> from timeparse import ParseDatetime
            >>>
            >>> parser = argparse.ArgumentParser()
            >>> parser.add_argument('--datetime', action=ParseDatetime, nargs='+')
            >>>
            >>> parser.parse_args("--datetime 2.4.2013 23:02".split()).datetime
            datetime.datetime(2013, 4, 2, 23, 2)
        
        
        
        
        Reporting Bugs
        --------------
        Please report bugs at github issue tracker:
        https://github.com/thomst/timeparse/issues
        
        
        Author
        ------
        thomst <thomaslfuss@gmx.de>
        Thomas Leichtfuß
        
        * http://github.com/thomst
        
Keywords: parser parse datetime time strings
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.7
