Metadata-Version: 2.4
Name: localstorage
Version: 1.0.1
Summary: Localstorage for python with more tools
Author: tromoSM
Maintainer-email: tromoSM <tromoSM7@gmail.com>
Project-URL: Homepage, https://tromosm.gt.tc/?utm_source=pypiOthr_localstorage#project
Project-URL: Source, https://github.com/tromoSM/LocalStorage
Project-URL: Feedback/requests, https://tromosm.gt.tc/?utm_source=pypiFeed_localstorage&feedback=true
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# LocalStorage 
### Localstorage for python with more features
---
## Installation 
```bash
pip install localstorage
```
## Usage (example)
```python
import localstorage

# Create localstorage file if doesnt exist
if localstorage.LocalstorageFileExists('example.localstorage'):
 localstorage.load('example.localstorage')
else:
 localstorage.load(localstorage.CreateLocalstorageFile('example.localstorage'))

# Set Item
localstorage.setItem('Example',"123")
# Get item
print(localstorage.getItem('Example'))

# Clear all items in storage
localstorage.clear()

# Debugging
localstorage.LocalStorageSettings(debugging=True) # set this before other functions to debug correctly
```
### Features
- support info if the file is unreadable
- identifier
- full control over which file contains the data
- change encoding
- add metadata (supportlink,supportmail,identifier)

### About
- [feedback or requests](https://tromosm.gt.tc/?feedback=true&utm_source=feedpylocal_st_readmeorpypi)
- [other projects from developer](https://tromosm.gt.tc/?utm_source=othrpylocal_st_readmeorpypi)
