Metadata-Version: 1.0
Name: mr.igor
Version: 1.0
Summary: UNKNOWN
Home-page: http://github.com/davisagli/mr.igor
Author: David Glick
Author-email: dglick@gmail.com
License: MIT
Description: Overview
        --------
        
        Mr. Igor provides the parts you need to build your Frankenprogram.
        
        But how does it know?
        "It'th a knack."
        
        mr.igor is an extension to pyflakes that will learn where you import
        things from, and then automatically fill in missing imports from the
        place they are most often imported.
        
        Usage: igor [--print] filename
        
        This script will record all imports from filename in Igor's database,
        and then add imports at the top of the file for any names that were not
        imported but were found in the database.
        
        If the --print option is specified then the rewritten file will be
        written to stdout. (This allows the use of igor as a filter for editors.)
        Otherwise the file will be modified inplace.
        
        Only "from x import y" style imports are tracked and inserted.  Aliases
        ("from x import y as z") are not supported.
        
        mr.igor stores its database in ~/.mr.igor.db.
        
        
        Usage with TextMate
        -------------------
        
        Go to the TextMate Bundle Editor and add a new command with the following
        settings:
        
        Save
        Current File
        Command(s)
        ::
        
        #!/bin/bash
        igor --print $TM_FILEPATH
        Input
        None
        Output
        Replace Document
        Activation
        Key Equivalent:  ⌘I
        Scope Selector
        source.python
        
        Now you can save the current file and run it through Igor using the ⌘I
        keyboard shortcut.
        
        Changelog
        =========
        
        2009/12/14
        - Released version 1.0. [davisagli]
        - Added functional test. [davisagli]
        - Refactor to improve testability; avoid monkeypatching. [davisagli]
        2009/12/13
        - Add help for console script. [davisagli]
        - Use ~/.mr.igor.db as default database location. [davisagli]
        - Added --print option. [davisagli]
        - Added igor console script. [davisagli]
        2009/12/12
        - Initial proof-of-concept. [davisagli]
        
Keywords: python imports automatic
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Code Generators
