Python 3.4-3.7 support;
[librarian.git] / scripts / book2fb2
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
5 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 #
7 from __future__ import unicode_literals
8
9 from librarian.book2anything import Book2Anything
10
11
12 class Book2Fb2(Book2Anything):
13     format_name = "FB2"
14     ext = "fb2"
15     uses_cover = False
16     uses_provider = True
17
18
19 if __name__ == '__main__':
20     Book2Fb2.run()