summaryrefslogtreecommitdiffstats
path: root/DeDRM_plugin/__main__.py
blob: 96b4217929262b6a0e169b34cb910d4ea1957cd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# __main__.py for DeDRM_plugin
# (CLI interface without Calibre)
# Copyright © 2021 NoDRM

__license__   = 'GPL v3'
__docformat__ = 'restructuredtext en'

# For revision history see __init__.py

"""
Run DeDRM plugin without Calibre.
"""

# Import __init__.py from the standalone folder so we can have all the 
# standalone / non-Calibre code in that subfolder.

import standalone.__init__ as mdata
import sys

mdata.main(sys.argv)