معرفی شرکت ها


betterpath-0.2.2


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Path manipulation library
ویژگی مقدار
سیستم عامل -
نام فایل betterpath-0.2.2
نام betterpath
نسخه کتابخانه 0.2.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Corbin Simpson
ایمیل نویسنده cds@corbinsimpson.com
آدرس صفحه اصلی http://github.com/MostAwesomeDude/betterpath
آدرس اینترنتی https://pypi.org/project/betterpath/
مجوز MIT/X11
========== betterpath ========== betterpath, or "bp", is an adaptation of the classic Twisted ``FilePath`` type and interface. bp provides a simple, robust, well-tested object abstraction over file paths, generalizing the concept of file paths beyond filesystems. File Paths ========== bp exposes an interface, ``bp.abstract.IFilePath``, for file paths, and provides the following concrete implementations: * ``bp.filepath.FilePath``, for the root filesystem * ``bp.zippath.ZipPath``, for ZIP archives * ``bp.memory.MemoryPath``, for in-memory temporary filesystems In addition, there are combining abstract file paths which can be wrapped around other file paths: * ``bp.readonly.ReadOnlyPath``, for read-only filesystems API documentation is available at http://betterpath.rtfd.org/. Vs. the Competition =================== os.path ------- The venerable champ, ``os.path`` has been the cause of (and solution to) most of Python's path problems over the years. Pros ~~~~ * In the standard library Cons ~~~~ * Unsafe * Verbose * Operates on strs * No interfaces or ABCs for functionality * Only covers the root filesystem pathlib ------- pathlib hopes to carve a path towards greatness through PEP 428. Pros ~~~~ * Convenient ``__div__()`` overloading Cons ~~~~ * No interfaces or ABCs for functionality * Only covers the root filesystem Examples ======== Saving Data to Disk ------------------- The Old Way ~~~~~~~~~~~ :: def save(base, fragments, data): # `fragments` could contain unsafe paths! if ".." in fragments or "." in fragments: raise ValueError("Unsafe paths!") path = os.path.join(os.path.abspath(base), os.sep.join(fragments)) # Alternatively: path = os.path.join(os.path.abspath(base), *fragments) # I hope that this doesn't fail mid-write! Also, did the directories # exist? I think so, yes. with open(path, "wb") as handle: handle.write(data) The New Way ~~~~~~~~~~~ :: def save(base, fragments, data): path = base.descendant(fragments) path.parent().makeDirs() path.setContent(data) Changelog ========= 0.2 --- * Initial release


نحوه نصب


نصب پکیج whl betterpath-0.2.2:

    pip install betterpath-0.2.2.whl


نصب پکیج tar.gz betterpath-0.2.2:

    pip install betterpath-0.2.2.tar.gz