Skip to content

Instantly share code, notes, and snippets.

View homecoder's full-sized avatar

Michael Ruggiero homecoder

  • Toronto, Canada
View GitHub Profile
@homecoder
homecoder / pipista.py
Created November 28, 2017 03:24 — forked from pudquick/pipista.py
pipista - pip module (for installing other modules) for Pythonista
import os, os.path, sys, urllib2, requests
class PyPiError(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
def _chunk_report(bytes_so_far, chunk_size, total_size):
if (total_size != None):