Metadata-Version: 2.1
Name: spaceman
Version: 0.1
Summary: Test everything inside of this suite if you can. Indicators, machine learning models and evern ordering.
Home-page: UNKNOWN
Author: Kevin Hill
Author-email: kevin@funguana.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: cloudpickle
Requires-Dist: funtime
Requires-Dist: coolname

# Spaceman
Spaceman is the checkpoint library for funguana's internal systems. We use it to save models and internal states for later use.

## Installation

### On linux

### On Windows

### On Mac

## Usage

```python
from spaceman import Spaceman

# Declare a class to use contextually
space_man = Spaceman()

with space_man as space:
    info = space.store([{}, 1, 2]) # Returns all information pertaining the storage (location,)
    unserialized_information = space.load()

```

