Metadata-Version: 2.1
Name: FileEssentials
Version: 1.1.1
Summary: File Essentials is a package that contains all of the necessary functions for using files
Home-page: http://github.com/DaRubyMiner360/FileEssentials
Author: DaRubyMiner360
Author-email: darubyminer360@gmail.com
License: UNKNOWN
Description: # File Essentials
        
        File Essentials is a package that contains
        all of the necessary functions to create, delete,
        write to, append to, read from, and so on, from files
        
        ---
        
        ### Getting Started
        Add the following to your python file
        ```python
        import FileEssentials
        ```
        
        #### Creating a file
        Just use the `CreateFile(name)` function.
        
        #### Creating a file If It Does Not Exist
        Just use the `CreateFile(name, True)` function.
        
        #### Deleting a file
        Just use the `DeleteFile(name)` function.
        
        #### Reading From a file
        Just use the `ReadFile(name)` function.
        
        #### Reading Lines From a file
        Just use the `ReadFileLines(name)` function.
        
        #### Reading Specific Line From a file
        Just use the `ReadFileLine(name, line)` function.
        
        #### Writing To a file
        Just use the `WriteFile(name, text)` function.
        
        #### Appending To a file
        Just use the `AppendFile(name, text)` function.
        
        #### Checking If a file Exists
        Just use the `CheckFileExists(name)` function.
        
        #### You can also run the same functions, except without the word `File`
Platform: UNKNOWN
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
