Huge News!Announcing our $40M Series B led by Abstract Ventures.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 to save and load variables in/from pickle files

  • 1.1.0
  • PyPI
  • Socket score

Maintainers
1

pypickle

Python PyPI Version 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 :)

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc