معرفی شرکت ها


anglicize-0.0.3


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A simple package to help sort non-English names.
ویژگی مقدار
سیستم عامل -
نام فایل anglicize-0.0.3
نام anglicize
نسخه کتابخانه 0.0.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Radu Ciorba
ایمیل نویسنده radu@devrandom.ro
آدرس صفحه اصلی https://github.com/rciorba/python-anglicize
آدرس اینترنتی https://pypi.org/project/anglicize/
مجوز BSD-2-Clause
======== Overview ======== A simple package to help sort non-English names. * Free software: BSD 2-Clause License Installation ============ :: pip install anglicize You can also install the in-development version with:: pip install https://github.com/rciorba/python-anglicize/archive/master.zip Documentation ============= This library provides one function, which takes a string and substitutes characters. To use:: # call the function directly: anglicize("Łukasz") == "Lukasz" # or use it to sort a list: sorted(["Ana", "Łukasz", "Zack"], key=anglicize) == ["Ana", "Łukasz", "Zack"] # there we go, that's much better than this: sorted(["Ana", "Łukasz", "Zack"]) == ["Ana", "Zack", "Łukasz"] Rationale ========= The purpose of this library is to help you sort non-English names writen in Latin-based alphabets. Different languages have wildly different rules for sorting, for example ``Ö`` comes after ``Z`` in Finnish but after ``O`` in Hungarian. The approach taken here is to treat visually similar letters the same, so basically ``ÖÔÓÒṌṎ`` (and others) should all become ``O``. Handling letters that have little similarity to A-Z =================================================== The German ß is the main issue here. I chose to handle it like an S, mostly because it's different enough from B (the most similar visually) and because it's well known as a version of S to most Europeans. Languages covered ================= - Albanian - Azerbaijani - Bosnian - Bulgarian transliteration - Croatian - Dutch - Estonian - Finnish - French - Gagauz - German - Hungarian - Icelandic - Latvian - Lithuanian - Luxembourgish - Montenegrin - Norwegian - Polish - Portuguese - Romanian - Serbian - Spanish - Swedish - Tatar - Turkish - Turkmen Contributing ============ Do you know a language written in a Latin alphabet and want to check it's correctly handled? Have a look in ``tests/test_anglicize.py``. If the language is there please check all "special" letters are handled. This list has been mostly compiled off of Wikipedia, so I would not be surprised to hear about errors :) You can either make the changes and submit a PR or just create an issue mentioning - language - characters which need handling Development =========== To run tests for all Python environments run:: tox Changelog ========= 0.0.3 (2020-03-08) ------------------ * Fix rationale example. 0.0.2 (2020-03-08) ------------------ * Fix readme example. 0.0.1 (2020-03-07) ------------------ * First release on PyPI.


زبان مورد نیاز

مقدار نام
>=3.5 Python


نحوه نصب


نصب پکیج whl anglicize-0.0.3:

    pip install anglicize-0.0.3.whl


نصب پکیج tar.gz anglicize-0.0.3:

    pip install anglicize-0.0.3.tar.gz