Metadata-Version: 2.4
Name: mp_locate
Version: 0.1.1
Summary: A utility to recursively locate files by name.
Author: Eduardo Moreno Neto
Author-email: eduardo.mmorenoneto@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

"""
Find file by name recursively from a starting directory.

Args:
    nome_arquivo (str): File name to search for.
    pasta_base (str, optional): Directory to start search. Defaults to current working dir.
    retornar_todos (bool): If True, returns a list of all matches. If False, returns first match.

Returns:
    str or List[str]: Full path(s) to the file(s).

Raises:
    FileNotFoundError: If no matching file is found.
"""
