Metadata-Version: 2.1
Name: CacheSys
Version: 0.0.6
Summary: Basic caching tool
Home-page: 
Author: LeahYes
Author-email: LeahYesX@gmail.com
License: MIT
Keywords: cache
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
License-File: LICENSE.txt

Basic caching tool

Use example:

CacheSys.WriteCache("example.txt", "example text", ".")

a = CacheSys.ReadCache("example.txt", ".", True)

if a == "example text":
    print(a)
