Metadata-Version: 2.1
Name: dsomit
Version: 1.0.0
Summary: Removes all .DS_Store files from a list
Home-page: https://github.com/anjandash/dsomit
Author: anjandash
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Description

A simple package that removes all *.DS_Store* files from a list.

# Usage

```python
import dsomit as ds

old_files_list = ["getJob.java", ".DS_Store", "root.xml"]
new_files_list = ds.omit(old_files_list) # Removes the .DS_Store 

print(old_files_list)
print(new_files_list)
```




