Metadata-Version: 2.1
Name: import-update
Version: 1.0.4
Summary: A small module to support automation of generating valid python variable names from external data.
Home-page: https://github.com/yehonadav/import_update
Author: Yehonadav Bar Elan
Author-email: yonadav.barilan@gmail.com
Maintainer: Yehonadav
Maintainer-email: yonadav.barilan@gmail.com
License: Apache Software
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: dotenv
Provides-Extra: dev
Provides-Extra: dev
Requires-Dist: pytest (>=3); extra == 'dev'
Requires-Dist: coverage; extra == 'dev'
Requires-Dist: tox; extra == 'dev'
Requires-Dist: sphinx; extra == 'dev'
Provides-Extra: dotenv
Requires-Dist: python-dotenv; extra == 'dotenv'

# import_update
automatically update your pkg imports.

# simple usage
from os.path import dirname
from import_update import update_imports_recursively

update_imports_recursively(dirname(__file__))


