معرفی شرکت ها


Aglyph-3.0.0.post1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Aglyph is a Dependency Injection framework for Python.
ویژگی مقدار
سیستم عامل -
نام فایل Aglyph-3.0.0.post1
نام Aglyph
نسخه کتابخانه 3.0.0.post1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Matthew Zipay
ایمیل نویسنده mattz@ninthtest.info
آدرس صفحه اصلی http://ninthtest.info/aglyph-python-dependency-injection/
آدرس اینترنتی https://pypi.org/project/Aglyph/
مجوز MIT License
# Aglyph - Dependency Injection for Python http://ninthtest.info/aglyph-python-dependency-injection/ [![Aglyph PyPI version](https://img.shields.io/pypi/v/Aglyph.svg)](https://pypi.python.org/pypi/Aglyph) ![Aglyph supported Python version](https://img.shields.io/pypi/pyversions/Aglyph.svg) ![Aglyph supported Python implementation](https://img.shields.io/pypi/implementation/Aglyph.svg) ![Aglyph License](https://img.shields.io/pypi/l/Aglyph.svg) [![Aglyph Wheel availability](https://img.shields.io/pypi/wheel/Aglyph.svg)](https://pypi.python.org/pypi/Aglyph) ## Introduction Aglyph is a Dependency Injection framework for Python that... * supports type 2 (setter) and type 3 (constructor) dependency injection * can assemble *prototype*, *singleton*, *borg*, and *weakref* components * supports templates (i.e. component inheritance) and lifecycle methods * works with any kind of object creation pattern you'll encounter: * constructor * factory function or method * object creation hidden behind attribute or property access * is configured declaratively, either programmatically through a fluent API or using a simple XML syntax (see the [Aglyph DTD]( https://github.com/mzipay/Aglyph/blob/master/resources/aglyph-context.dtd)) * is non-intrusive: * only one dependency ([Autologging]( http://ninthtest.info/python-autologging/)) beyond the Python standard library * does not require modification of existing source code (i.e. no decorators, specific naming conventions, or any other kind of syntactic "magic" necessary) * can inject not only 3rd-party dependencies, but also **dependents** * runs on Python 2.7 and 3.4+ using the same codebase * is proactively tested on [CPython](https://www.python.org/), [Jython](http://www.jython.org/), [IronPython](http://ironpython.net/), [PyPy](http://pypy.org/>), and [Stackless Python](https://github.com/stackless-dev/stackless) * is fully logged *and traced* for ease of troubleshooting (note: tracing is disabled by default, and can be activated by setting an environment variable) ## Installation The easiest way to install Aglyph is to use [pip](https://pip.pypa.io/): ```bash $ pip install Aglyph ``` To verify that an installation was successful: ```python >>> import aglyph >>> aglyph.__version__ '3.0.0.post1' ``` After installing, take a look at [Getting started with Aglyph]( http://aglyph.readthedocs.io/en/latest/get-started.html) and the [Aglyph cookbook](http://aglyph.readthedocs.io/en/latest/cookbook.html). Alternative source and binary installation options are described below. ### Source installation Clone or fork the repository: ```bash $ git clone https://github.com/mzipay/Aglyph.git ``` Alternatively, download and extract a source _.zip_ or _.tar.gz_ archive from https://github.com/mzipay/Aglyph/releases, https://pypi.python.org/pypi/Aglyph/ or https://sourceforge.net/projects/aglyph/files/aglyph/. Run the test suite and install the `aglyph` package: ```bash $ cd Aglyph $ python setup.py test $ python setup.py install ``` ### Binary installation Download the Python wheel (_.whl_) or _.exe_/_.msi_ Windows installer from https://pypi.python.org/pypi/Aglyph/ or https://sourceforge.net/projects/aglyph/files/aglyph/. Use [pip](https://pip.pypa.io/) or [wheel](https://pypi.python.org/pypi/wheel) to install the _.whl_, or run the Windows installer.


نیازمندی

مقدار نام
==1.2.0 Autologging


نحوه نصب


نصب پکیج whl Aglyph-3.0.0.post1:

    pip install Aglyph-3.0.0.post1.whl


نصب پکیج tar.gz Aglyph-3.0.0.post1:

    pip install Aglyph-3.0.0.post1.tar.gz