|
1 | 1 | #!/usr/bin/env python3 |
| 2 | +""" |
| 3 | +This program is free software: you can redistribute it and/or modify it under |
| 4 | +the terms of the GNU General Public License as published by the Free Software |
| 5 | +Foundation, either version 3 of the License, or (at your option) any later |
| 6 | +version. |
| 7 | +This program is distributed in the hope that it will be useful, but WITHOUT |
| 8 | +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
| 9 | +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
| 10 | +You should have received a copy of the GNU General Public License along with |
| 11 | +this program. If not, see <http://www.gnu.org/licenses/>. |
| 12 | +""" |
| 13 | + |
| 14 | +__author__="Armin Felder" |
| 15 | +__contact__="armin.felder@osalliance.com" |
| 16 | +__copyright__="Copyright 2019, Armin Felder" |
| 17 | +__credits__= ["all contributers"] |
| 18 | +__date__="2019.05.05" |
| 19 | +__deprecated__=False |
| 20 | +__email__="armin.felder@osalliance.com" |
| 21 | +__license__="GPLv3" |
| 22 | +__maintainer__="Armin Felder" |
| 23 | +__status__="Production" |
| 24 | +__version__="1.0.0" |
| 25 | + |
2 | 26 | frompymongoimportMongoClient |
3 | 27 | importgridfs |
4 | 28 | frompprintimportpprint |
|