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

https://github.com/vra/reuse

Collection of useful python functions (reuse again and again). https://py-reuse.readthedocs.io
https://github.com/vra/reuse

collection linux python script tools utils

Last synced: about 2 months ago
JSON representation

Collection of useful python functions (reuse again and again). https://py-reuse.readthedocs.io

Awesome Lists containing this project

README

          

# reuse
Collection of useful python functions (reuse again and again).

[![Build Status](https://travis-ci.com/vra/reuse.svg?branch=master)](https://travis-ci.com/vra/reuse)

Here is a demo about how to use: [Demo](https://asciinema.org/a/m0fEneiY03JwiEzc20ERG99Vl).

# supported platform
* Linux
* python2.7 and higher
* python3.5 and higher

# installation
```bash
pip3 install --user py-reuse
```

# how to use
```python
import reuse as rs

rs.check_exist('/path/to/dir') # Check if a file or directory exist
rs.create_dir_if_not_exist('/path/to/new/dir') # Create a directory only when it didn't exist
...

```
docs: .