معرفی شرکت ها


demandimport-0.3.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

On-demand imports, taken from mercurial
ویژگی مقدار
سیستم عامل -
نام فایل demandimport-0.3.4
نام demandimport
نسخه کتابخانه 0.3.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Bas Westerbaan
ایمیل نویسنده bas@westerbaan.name
آدرس صفحه اصلی http://github.com/bwesterb/py-demandimport/
آدرس اینترنتی https://pypi.org/project/demandimport/
مجوز GPLv2+
demandimport ************ Delays loading of modules until they are actually used. Perfect for Python apps that need to be snappy like command-line utils. Source-code derived from mercurial. To enable, write .. code:: python import demandimport; demandimport.enable() Imports of the following form will be delayed .. code:: python import a, b.c import a.b as c from a import b, c # a will be loaded immediately, though These imports with not be delayed .. code:: python from a import * b = __import__(a) Delayed loading will confuse some third-party modules. In that case you can disable the delay for just that module. For example .. code:: python demandimport.ignore('Crypto.PublicKey._fastmath') There are also versions that can be used with ``with`` .. code:: python with demandimport.enabled(): # do something with demandimport.disabled(): import troublesome.module with demandimport.ignored('test'): import other.troublemaker Installation ============ To install ``demandimport``, simply run:: pip install demandimport Attribution =========== Matt Mackall <mpm@selenic.com> is the original author of the module in Mercurial on which this module is based. Bas Westerbaan <bas@westerbaan.name> maintains it now. py-demandimport Changelog ************************* 0.3.4 (2017-06-08) ================== - Python 3.6 - Add sip to the default ignore list. #6 0.3.3 (2016-10-20) ================== - Add ``is_loaded`` and ``is_proxy``. Thanks-to: github.com/poke1024 0.3.2 (2015-12-22) ================== - Fixed issue #2: ``import a.b.c`` will incorrectly try to import ``b.c`` 0.3.1 (2015-12-21) ================== - Relicense GPL version 2 or later (GPLv2+) 0.3.0 (2015-12-21) ================== - Do not delay ImportError in a special case. - Add optional logging (for debugging) - Fixed issue #1: ``import a.b`` in a module ``a.c`` was incorrectly executed as a relative ``import c``. - Improve thread safety 0.2.2 (2015-12-05) ================== - Moved to zest.releaser - Add some basic unittests - Python 3 support


نحوه نصب


نصب پکیج whl demandimport-0.3.4:

    pip install demandimport-0.3.4.whl


نصب پکیج tar.gz demandimport-0.3.4:

    pip install demandimport-0.3.4.tar.gz