Metadata-Version: 2.1
Name: econometrics01
Version: 1.0.1
Summary: This is the simplest modufwle for work with files. v2
Author: fertic
Author-email: foxmine852@gmail.com
Keywords: files speedfiles
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Speed File Library #

## What is this? ##
The module allows you to work with files in just one line of code, without the need to manually open and close the file each time

## Quick Guide ##
The module is based on the following structure:

    
    f = open('data.txt')
    data = f.readlines()
    f.close()
    
Which Python provides by standard.
