10 lines
144 B
Python
10 lines
144 B
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import zipfile
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
|
class ePUB:
|
|
def __init__(self, filename):
|
|
pass |