معرفی شرکت ها


deltas-0.7.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

An experimental diff library for generating operation deltas that represent the difference between two sequences of comparable items.
ویژگی مقدار
سیستم عامل -
نام فایل deltas-0.7.0
نام deltas
نسخه کتابخانه 0.7.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Aaron Halfaker
ایمیل نویسنده aaron.halfaker@gmail.com
آدرس صفحه اصلی https://github.com/halfak/deltas
آدرس اینترنتی https://pypi.org/project/deltas/
مجوز MIT
Deltas ====== An open licensed (MIT) library for performing generating deltas (A.K.A sequences of operations) representing the difference between two sequences of comparable tokens. * **Installation:** ``pip install deltas`` * **Repo**: http://github.com/halfak/Deltas * **Documentation**: http://pythonhosted.org/deltas * Note this library requires Python 3.3 or newer This library is intended to be used to make experimental difference detection strategies more easily available. There are currently two strategies available: ``deltas.sequence_matcher.diff(a, b)``: A shameless wrapper around `difflib.SequenceMatcher` to get it to work within the structure of *deltas*. ``deltas.segment_matcher.diff(a, b, segmenter=None)``: A generalized difference detector that is designed to detect block moves and copies based on the use of a ``Segmenter``. :Example: >>> from deltas import segment_matcher, text_split >>> >>> a = text_split.tokenize("This is some text. This is some other text.") >>> b = text_split.tokenize("This is some other text. This is some text.") >>> operations = segment_matcher.diff(a, b) >>> >>> for op in operations: ... print(op.name, repr(''.join(a[op.a1:op.a2])), ... repr(''.join(b[op.b1:op.b2]))) ... equal 'This is some other text.' 'This is some other text.' insert ' ' ' ' equal 'This is some text.' 'This is some text.' delete ' ' ''


نیازمندی

مقدار نام
- yamlconf


نحوه نصب


نصب پکیج whl deltas-0.7.0:

    pip install deltas-0.7.0.whl


نصب پکیج tar.gz deltas-0.7.0:

    pip install deltas-0.7.0.tar.gz