From ce0a06ae0a7657a9dd61108471d040c937c0d920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?GOLDERWEB=20=E2=80=93=20Jonathan=20Golder?= Date: Fri, 13 Nov 2015 10:31:42 +0100 Subject: [PATCH] SummaryPage-Module: Add new module for handling summarypage related actions --- summarypage.py | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 summarypage.py diff --git a/summarypage.py b/summarypage.py new file mode 100644 index 0000000..6a2b286 --- /dev/null +++ b/summarypage.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# +# summarypage.py +# +# Copyright 2015 GOLDERWEB – Jonathan Golder +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301, USA. +# +# +""" +Provides classes for handling Charts summary page +""" + +import locale +from datetime import datetime, timedelta + +import pywikibot +import mwparserfromhell as mwparser + +from countrylist import CountryList + +class SummaryPage(): + """ + Handles summary page related actions + """ + pass