from __futre__ import print_function

This commit is contained in:
j 2014-09-30 21:27:26 +02:00
commit ec252440d9
14 changed files with 49 additions and 34 deletions

View file

@ -1,5 +1,6 @@
# -*- coding: UTF-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
from __future__ import print_function
import re
@ -40,5 +41,5 @@ def get_url(id):
return "http://www.movieposterdb.com/movie/%s/" % id
if __name__ == '__main__':
print get_data('0060304')
print get_data('0133093')
print(get_data('0060304'))
print(get_data('0133093'))