forked from 0x2620/pandora
s/import Image/from PIL import Image/g
This commit is contained in:
parent
4785f314cb
commit
2cec1b9ad5
14 changed files with 21 additions and 21 deletions
|
@ -29,7 +29,7 @@
|
|||
|
||||
apt-get install git subversion mercurial \
|
||||
python-setuptools python-pip python-virtualenv ipython \
|
||||
python-dev python-imaging python-numpy python-psycopg2 \
|
||||
python-dev python-pil python-numpy python-psycopg2 \
|
||||
python-geoip python-html5lib python-lxml \
|
||||
postgresql postgresql-contrib rabbitmq-server \
|
||||
poppler-utils mkvtoolnix gpac imagemagick \
|
||||
|
|
|
@ -15,11 +15,11 @@ from distutils.spawn import find_executable
|
|||
from glob import glob
|
||||
|
||||
import numpy as np
|
||||
import Image
|
||||
import ox
|
||||
import ox.image
|
||||
from ox.utils import json
|
||||
from django.conf import settings
|
||||
from PIL import Image
|
||||
|
||||
img_extension = 'jpg'
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ from django.db.models import Max
|
|||
from django.contrib.auth.models import User
|
||||
from django.db.models.signals import pre_delete
|
||||
|
||||
import Image
|
||||
from PIL import Image
|
||||
import ox
|
||||
|
||||
from item.models import Item
|
||||
|
|
|
@ -6,7 +6,7 @@ import math
|
|||
import os
|
||||
import re
|
||||
|
||||
import Image
|
||||
from PIL import Image
|
||||
from ox.utils import json
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ from urlparse import urlparse
|
|||
from urllib import quote
|
||||
import time
|
||||
|
||||
import Image
|
||||
from PIL import Image
|
||||
from django.db.models import Count, Sum
|
||||
from django.http import HttpResponse, HttpResponseForbidden, Http404
|
||||
from django.shortcuts import get_object_or_404, redirect, render
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# vi:si:et:sw=4:sts=4:ts=4
|
||||
from __future__ import division
|
||||
import Image
|
||||
import os
|
||||
|
||||
from PIL import Image
|
||||
|
||||
ZONE_INDEX = []
|
||||
for pixel_index in range(64):
|
||||
x, y = pixel_index % 8, int(pixel_index / 8)
|
||||
|
|
|
@ -10,7 +10,7 @@ root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file_
|
|||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
||||
execfile(activate_this, dict(__file__=activate_this))
|
||||
|
||||
import Image
|
||||
from PIL import Image
|
||||
from optparse import OptionParser
|
||||
import sys
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@ root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file_
|
|||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
||||
execfile(activate_this, dict(__file__=activate_this))
|
||||
|
||||
import Image
|
||||
import ImageDraw
|
||||
from PIL import Image
|
||||
from PIL import ImageDraw
|
||||
from optparse import OptionParser
|
||||
from ox.image import drawText, wrapText
|
||||
import sys
|
||||
|
|
|
@ -10,8 +10,8 @@ root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file_
|
|||
#activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
||||
#execfile(activate_this, dict(__file__=activate_this))
|
||||
|
||||
import Image
|
||||
import ImageDraw
|
||||
from PIL import Image
|
||||
from PIL import ImageDraw
|
||||
import json
|
||||
from optparse import OptionParser
|
||||
import ox
|
||||
|
|
|
@ -11,8 +11,8 @@ activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
|||
execfile(activate_this, dict(__file__=activate_this))
|
||||
|
||||
import hashlib
|
||||
import Image
|
||||
import ImageDraw
|
||||
from PIL import Image
|
||||
from PIL import ImageDraw
|
||||
import json
|
||||
from optparse import OptionParser
|
||||
import ox
|
||||
|
|
|
@ -10,8 +10,8 @@ root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file_
|
|||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
||||
execfile(activate_this, dict(__file__=activate_this))
|
||||
|
||||
import Image
|
||||
import ImageDraw
|
||||
from PIL import Image
|
||||
from PIL import ImageDraw
|
||||
import json
|
||||
from optparse import OptionParser
|
||||
import ox
|
||||
|
|
|
@ -10,8 +10,8 @@ root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file_
|
|||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
||||
execfile(activate_this, dict(__file__=activate_this))
|
||||
|
||||
import Image
|
||||
import ImageDraw
|
||||
from PIL import Image
|
||||
from PIL import ImageDraw
|
||||
import json
|
||||
from optparse import OptionParser
|
||||
import ox
|
||||
|
|
|
@ -10,8 +10,8 @@ root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file_
|
|||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
||||
execfile(activate_this, dict(__file__=activate_this))
|
||||
|
||||
import Image
|
||||
import ImageDraw
|
||||
from PIL import Image
|
||||
from PIL import ImageDraw
|
||||
import json
|
||||
from optparse import OptionParser
|
||||
import ox
|
||||
|
|
|
@ -54,9 +54,8 @@ apt-get install -y \
|
|||
python-setuptools \
|
||||
python-pip \
|
||||
python-virtualenv \
|
||||
python-imaging \
|
||||
python-dev \
|
||||
python-imaging \
|
||||
python-pil \
|
||||
python-numpy \
|
||||
python-psycopg2 \
|
||||
python-pyinotify \
|
||||
|
|
Loading…
Reference in a new issue