🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

pypickle

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pypickle

pypickle is a Python library to save and load variables in pickle files.

1.1.5
PyPI
Maintainers
1

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 ⭐️

Documentation pages

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

Example: Saving

import pypickle
filepath = 'test.pkl'

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

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

Example: Loading


# 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 :)

Keywords

Python

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts