Metadata-Version: 2.1
Name: numplot
Version: 1.0.1
Summary: Package mathstats contains mathematical and statistical functions, distributions, tests
Author: amogusbazed
Author-email: amogusbazed@gmail.com
Keywords: files speedfiles
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests >=2.28.0

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


----------
