python-ox/ox/__init__.py

39 lines
717 B
Python
Raw Normal View History

2008-04-27 16:54:37 +00:00
# -*- coding: utf-8 -*-
2008-06-19 09:21:21 +00:00
# vi:si:et:sw=4:sts=4:ts=4
2011-10-06 20:05:01 +00:00
# GPL 2011
2014-10-01 09:03:39 +00:00
try:
from . import __version
__version__ = __version.VERSION
except:
2023-07-27 16:40:38 +00:00
__version__ = '3.0.x'
2011-10-06 20:05:01 +00:00
2014-09-30 19:04:46 +00: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 16:54:37 +00:00
2014-09-30 19:04:46 +00:00
from .api import *
from .file import *
from .format import *
from .geo import *
from .html import *
2012-01-16 06:09:31 +00:00
#image depends on PIL, not easy enough to instal on osx
try:
2014-09-30 19:04:46 +00:00
from .image import *
2012-01-16 06:09:31 +00:00
except:
pass
2014-09-30 19:04:46 +00: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 *