New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

packy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

packy

Package manager for downloading packages from content providers

0.1.4
PyPI
Maintainers
1

📦 Packy

Build Status

What is packy?

Packy is a simple package manager working like pip which allows downloading packages from content delivery providers like cdnjs.

How does it work?

  • Install it via pip:

    pip install packy
    
  • Install packages

    # Latest version
    packy jquery
    # Specific version
    packy jquery==3.2
    # Version range
    packy jquery>=2.0
    
    # Install from packages.txt (syntax like requirements.txt)
    packy -r packages.txt
    
    # Set CD provider
    packy -p cdnjs ...
    
    # Set installation directory
    packy -o ./static/ ...
    

🔧 API

Additionally, packy can be used directly with Python:

from packy import Packy

packy.install('jquery')

Keywords

package CDNJS JS packet

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