python-ox/ox/__init__.py

39 lines
717 B
Python
Raw Normal View History

2008-04-27 18:54:37 +02:00
# -*- coding: utf-8 -*-
2008-06-19 11:21:21 +02:00
# vi:si:et:sw=4:sts=4:ts=4
2011-10-06 22:05:01 +02:00
# GPL 2011
2014-10-01 11:03:39 +02:00
try:
from . import __version
__version__ = __version.VERSION
except:
2023-07-27 18:40:38 +02:00
__version__ = '3.0.x'
2011-10-06 22:05:01 +02:00
2014-09-30 21:04:46 +02:00
from . import cache
from . import js
from . import jsonc
from . import net
from . import srt
from . import utils
from . import vtt
2008-04-27 18:54:37 +02:00
2014-09-30 21:04:46 +02:00
from .api import *
from .file import *
from .format import *
from .geo import *
from .html import *
2012-01-16 11:39:31 +05:30
#image depends on PIL, not easy enough to instal on osx
try:
2014-09-30 21:04:46 +02:00
from .image import *
2012-01-16 11:39:31 +05:30
except:
pass
2014-09-30 21:04:46 +02:00
from .location import *
from .movie import *
from .normalize import *
from .oembed import *
from .text import *
#currently broken in python3
try:
from .torrent import *
except:
pass
from .fixunicode import *