🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

pyzip

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyzip

Fast and safe Python `zip` with no dependencies

Source
npmnpm
Version
0.0.1
Version published
Weekly downloads
11
120%
Maintainers
1
Weekly downloads
 
Created
Source

pyzip

pyzip

Travis Dependency Status Codecov Version - npm License - npm semantic-release

Python zip, fast and safe

Fast and safe Python zip with no dependencies

Installation

// npm
npm install pyzip
const pyzip = require('pyzip')

Example usage

// intersect() // {}
// intersect({}) // {}
// intersect(null) // {}
// intersect(undefined) // {}

// const obj1 = { a: 'a', b: 'b', c: 'c' }
// const obj2 = { a: 'a', b: 'x', c: 'c' }
// const obj3 = { a: 'a', c: 'c' } // subset of obj
// intersect(obj1, obj2) // { a: 'a', b: 'b', c: 'c' }
// intersect(obj1, obj3, obj2) // { a: 'a', c: 'c' }

Reference

Keywords

zip

FAQs

Package last updated on 28 Aug 2018

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