Metadata-Version: 2.1
Name: statssc
Version: 0.0.3
Summary: This is the simplest module for quick work with files.
Home-page: https://github.com/alex-past-15/sciipy
Author: alex_past_15
Author-email: pastusenkoalex@mail.ru
Project-URL: GitHub, https://github.com/alex-past-15/sciipy
Keywords: files speedfiles
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.25.1)

# 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.


----------


### Using ###


Using the library is as simple and convenient as possible:
