pyloop

An universal pacakge manager for python


Keywords
package, manger, python, 3
License
MIT
Install
pip install pyloop==0.18

Documentation

Pyloop

An universal npm like package manager for python

How it works?

it uses json data to track your installed packages using channels like pip or pypy . pyloop will help programmers to maintain multiple package installation using multiple channels.

Installation

Grab it using pip

sudo pip3 install pyloop

Usage

intialize pyloop

pyloop init

It will create a pack.json file into the project directory

write

{
    "authorEmail": "",
    "author": "",
    "description": "",
    "name": "pyloop",
    "version": "1.0.0",
    "channels": {
       "pip3": {
            "flask": "0.7" ,
            "flask-WTF": "0.9"
        },
        "pip": {

            "django": "1.9",
        }
    }
}

install packages (from pack.json)

it will install all your packages globally (because pip or pypy install everything globally)

sudo pyloop install

install packages using pyloop (It'll update pack.json)

sudo pyloop get