Metadata-Version: 1.0
Name: e
Version: 1.1
Summary: Evaluate and display command line expressions with ``python -me expr``
Home-page: http://www.voidspace.org.uk/python/weblog/index.shtml/
Author: Michael Foord
Author-email: michael@voidspace.org.uk
License: UNKNOWN
Description: Evaluate and display command line expressions with ``python -me expr``
        For example::
        
            $ python -me 1+1
            2
        
        Like `python -c` but no need for a print statement.
        
        It allows multiple expressions::
        
            $ python -me 1+1 2+2
            2
            4
        
        As a bonus, if the first argument is a module name then it will output the location
        of the module source code::
        
            $ python -me os
            /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/os.py
        
        
Keywords: console,interpreter,expressions
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
