Skip to content

storborg/futurify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Futurify - Manage your __future__ statements

Scott Torborg - Cart Logic

futurify is a simple tool for managing forward-compatible from __future__ import... statements in your Python projects.

Installation

Install with pip:

$ pip install futurify

Example Usage

Add some future statements to a file tree:

$ futurify +absolute_import +print_function myproject/

Add some, remove others:

$ futurify -print_function -with_statement +division hello.py

Dry run:

$ futurify --dry-run -with_statement +absolute_import +print_function myproject/

API Usage

import futurify

futurify.process_tree('myproject',
                      add=['absolute_import', 'print_function'])

futurify.process_file('hello.py',
                      add=['absolute_import'],
                      remove=['division'])

License

Futurify is released under the MIT license. See LICENSE for details.

About

Manage Python __future__ imports

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages