Metadata-Version: 2.1
Name: updator
Version: 0.1.2
Summary: Automatically upgrade python libraries
Home-page: https://github.com/ShirAvr/updator.git
License: UNKNOWN
Author: Shir Avr
Author-email: shir@bhh.co.il
Requires-Python: >=3
Description-Content-Type: text/x-rst
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: pymongo >=3.10.0
Requires-Dist: astor >=0.8.1
Requires-Dist: click >=7.1.1
Requires-Dist: tabulate >=0.8.7

Updator
-------

Always be up-to-date!

Updator is a tool to automatically upgrade python libraries.
It defines API changes rules which is actually python patterns (with some extras) that will transform into ast.
The rules were designed to be written by the libraries' authors, but that will happen later on.
What it does is basically just transform the python code that should be upgraded into an AST, and search the rules ast within the source code ast. If a rule ast is found - it's transform the pattern into the new pattern.

**Install the package:**


``pip install updator``

**To Use Updator:**


``updator run [lib] [path]``

where:
  - lib is the library you want to upgrade
  - path is the path for your code file you want to upgrade 

