معرفی شرکت ها


class-namespaces-0.6.3


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Class Namespaces
ویژگی مقدار
سیستم عامل -
نام فایل class-namespaces-0.6.3
نام class-namespaces
نسخه کتابخانه 0.6.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Max Woerner Chase
ایمیل نویسنده max.chase@gmail.com
آدرس صفحه اصلی https://github.com/mwchase/class-namespaces
آدرس اینترنتی https://pypi.org/project/class-namespaces/
مجوز MIT
================ class-namespaces ================ .. image:: https://readthedocs.org/projects/class-namespaces/badge/?version=latest :target: http://class-namespaces.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status .. image:: https://travis-ci.org/mwchase/class-namespaces.svg?branch=master :target: https://travis-ci.org/mwchase/class-namespaces .. image:: https://coveralls.io/repos/github/mwchase/class-namespaces/badge.svg?branch=master :target: https://coveralls.io/github/mwchase/class-namespaces?branch=master .. image:: https://api.codacy.com/project/badge/Grade/f73ed5e3849c4049b8c9e3f17f6589da :target: https://www.codacy.com/app/max-chase/class-namespaces?utm_source=github.com&utm_medium=referral&utm_content=mwchase/class-namespaces&utm_campaign=Badge_Grade .. image:: https://codecov.io/gh/mwchase/class-namespaces/branch/master/graph/badge.svg :target: https://codecov.io/gh/mwchase/class-namespaces .. image:: https://landscape.io/github/mwchase/class-namespaces/master/landscape.svg?style=flat :target: https://landscape.io/github/mwchase/class-namespaces/master :alt: Code Health .. image:: https://scrutinizer-ci.com/g/mwchase/class-namespaces/badges/quality-score.png?b=master :target: https://scrutinizer-ci.com/g/mwchase/class-namespaces/?branch=master :alt: Scrutinizer Code Quality .. image:: https://scrutinizer-ci.com/g/mwchase/class-namespaces/badges/coverage.png?b=master :target: https://scrutinizer-ci.com/g/mwchase/class-namespaces/?branch=master :alt: Code Coverage .. image:: https://scrutinizer-ci.com/g/mwchase/class-namespaces/badges/build.png?b=master :target: https://scrutinizer-ci.com/g/mwchase/class-namespaces/build-status/master :alt: Build Status .. image:: https://codeclimate.com/github/mwchase/class-namespaces/badges/gpa.svg :target: https://codeclimate.com/github/mwchase/class-namespaces :alt: Code Climate .. image:: https://codeclimate.com/github/mwchase/class-namespaces/badges/coverage.svg :target: https://codeclimate.com/github/mwchase/class-namespaces/coverage :alt: Test Coverage .. image:: https://codeclimate.com/github/mwchase/class-namespaces/badges/issue_count.svg :target: https://codeclimate.com/github/mwchase/class-namespaces :alt: Issue Count Well-behaved class namespacing in Python. Inspired by https://erezsh.wordpress.com/2008/06/27/namespaces-lets-do-more-of-those-python-hackery/ Basic Usage ----------- Example code:: import class_namespaces as cn class MyCls(cn.Namespaceable): var = 1 with cn.Namespace() as my_ns: var = 2 assert MyCls.var == 1 assert MyCls.my_ns.var == 2 Other things that work: * Descriptors (methods, classmethods, staticmethods, properties, custom descriptors) * super() * Prepopulating Namespaces. The constructor takes the same arguments as a dict. * abstractmethods. See the compat module. Things that don't work: * Various ways of putting a Namespace in a Namespace that I didn't see an obvious way to handle. In particular... * There is no way to put an established namespace directly into another namespace. * Some pytest constructs behave weirdly inside the class definitions. Hopefully, this doesn't matter to anyone not writing tests for the package. * No way to have instance Namespaces on non-hashable types, or subclasses of some built-in types, particularly tuple. Try using data descriptors instead. Things that might work: * New namespace features in Python 3.6. Current testing is spotty. * Combining with other metaclasses. Unfortunately, the current setup is somewhat brittle. It may be necessary to experiment with the ordering of bases.


نیازمندی

مقدار نام
xtr coverage;
xtr pytest;


نحوه نصب


نصب پکیج whl class-namespaces-0.6.3:

    pip install class-namespaces-0.6.3.whl


نصب پکیج tar.gz class-namespaces-0.6.3:

    pip install class-namespaces-0.6.3.tar.gz