Giter Site home page Giter Site logo

rimo_storage's Introduction

莉沫酱存储!

做实验的时候经常要存一些数据,用手写with open很麻烦,就想着,啊那不如直接搞一个存硬盘的dict吧!

样例

from rimo_storage import 超dict
d = 超dict('./savedata')
d['x'] = 114514
d['y'] = '好!'

然后下次运行程序的时候就还可以读d里面的内容了。

嗯,就是这么简单!

接口

rimo_storage.超dict(path, compress=None, serialize='json')

基本上就相当于普通的Dict[str, Any]

其中compressserialize的类型是Union[str, Tuple[Callable, Callable], None],它的行为是这样——

  • compress可以选择zlib或者lzmaserialize可以选择jsonpickle
  • 如果传Tuple[Callable, Callable],则第一个函数会在写入的时候用,第二个函数会在读取的时候用。
  • 如果是None,则什么都不做。

究竟能存什么东西依赖serialize,如果是json就只能存可json化的东西,如果是pickle就只能存可以pickle的东西(我又在讲废话了)

rimo_storage.cache.disk_cache(*, path=None, compress=None, serialize='json')

一个装饰器,差不多就是标准库的functools.cache的存硬盘版本,参数的意思和上面一样。

安装

只要使用pip安装就行啦!

pip install rimo-storage

结束

就这样,大家88,我继续回去做实验啦!

rimo_storage's People

Contributors

rimochan avatar

Stargazers

結束バンドbocchi avatar Jin & Hai. avatar  avatar Hecate2 avatar 咕谷酱 avatar  avatar XTY avatar Mist avatar MistEO avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.