An open API service indexing awesome lists of open source software.

https://github.com/alexandrelamarre/pathlib


https://github.com/alexandrelamarre/pathlib

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

# pathlib

[![Actions Status](https://github.com/alexandreLamarre/pathlib/workflows/CI/badge.svg)](https://github.com/alexandreLamarre/pathlib/actions)
[![Actions Status](https://github.com/alexandreLamarre/pathlib/workflows/docs/badge.svg)](https://github.com/alexandreLamarre/pathlib/actions)
[![codecov](https://codecov.io/gh/alexandreLamarre/pathlib/branch/main/graph/badge.svg?token=IUDESEEESZ)](https://codecov.io/gh/alexandreLamarre/pathlib)

Rust implementation of the classic python object oriented filesystem library.


Edit : Seems like rust has an [std::path](https://doc.rust-lang.org/stable/std/path/struct.Path.html) which implements the same functionality.

Nonetheless, this project still seems like fun to learn how to write idiomatic rust, so I'll try and derive my own implementation of python's pathlib and see how closely it resembles std::path's implementation/API.