erdogant / pypickle

pypickle is for saving and loading files in pickle format.

Home Page:https://erdogant.github.io/pypickle/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pypickle

Python PyPI Version GitHub Repo stars License Downloads Downloads DOI Sphinx

  • pypickle is for saving data and loading the files in pickle format.

⭐️ Star this repo if you like it ⭐️

On the documentation pages you can find more information about pypickle with examples.

Install bnlearn from PyPI
pip install pypickle     # normal install
pip install -U pypickle  # update if needed

Import pypickle package

import pypickle

import pypickle
filepath = 'test.pkl'

# Some data
data = [1,2,3,4,5]

# Save
status = pypickle.save(filepath, data)

# Load file
data = pypickle.load(filepath)

Contribute

  • All kinds of contributions are welcome!

Citation

Please cite pypickle in your publications if this is useful for your research. See column right for citation information.

Maintainer

  • Erdogan Taskesen, github: erdogant
  • Contributions are welcome.
  • If you wish to buy me a Coffee for this work, it is very appreciated :)

About

pypickle is for saving and loading files in pickle format.

https://erdogant.github.io/pypickle/

License:Other


Languages

Language:Python 90.1%Language:Shell 9.9%