#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
"""this is Vyzbot used to creating pages automatically from file containing
the contents
"""
'''
"""
This bot takes its input from a file that contains a number of
pages to be put on the wiki. The pages should all have the same
begin and end text (which may not overlap).
By default the text should have the intended title of the page
as the first text in bold (that is, between ''' and '''),
you can modify this behavior with command line options.
The default is not to include the begin and
end text in the page, if you want to include that text, use
the -include option.
Specific arguments:
-start:xxx Specify the text that is the beginning of a page
-end:xxx Specify the text that is the end of a page
-file:xxx Give the filename we are getting our material from
-include The beginning and end text should be included
in the page.
-titlestart:xxx Use xxx in place of ''' for identifying the
beginning of page title
-titleend:xxx Use xxx in place of ''' for identifying the
end of page title
-summary:xxx Use xxx as the summary for the upload
If the page to be uploaded already exists:
-safe do nothing (default)
-appendtop add the text to the top of it
-appendbottom add the text to the bottom of it
-force overwrite the existing page
"""
#
# (C) Andre Engels, 2004
#
# Distributed under the terms of the MIT license.
#
__version__='$Id: Exp $'
import config
import re, codecs
import login
import wikipedia
msg={
'en': u'Automated import of articles',
'ia': u'Importation automatic de articulos',
}
# The following messages are added to topic when the page already exists
msg_top={
'en': u'append on top',
'it': u'aggiungo in cima'
}
msg_bottom={
'en': u'append on bottom',
'it': u'aggiungo in fondo'
}
msg_force={
'en': u'existing text overwritten',
'it': u'sovrascritto il testo esistente'
}
# Adapt these to the file you are using. 'starttext' and 'endtext' are
# the beginning and end of each entry. Take text that should be included
# and does not occur elsewhere in the text.
# TODO: Why not use the entire file contents?
starttext = "{{-start-}}"
endtext = "{{-stop-}}"
filename = "x.txt"
include = False
#exclude = False
titlestart = u"name = "
titleend = u"\|"
search_string = u""
force = False
append = "False"
def findpage(t):
search_string = titlestart + "(.*?)" + titleend
try:
location = re.search(starttext+"([^\Z]*?)"+endtext,t)
if include:
contents = location.group()
else:
contents = location.group(1)
except AttributeError:
print 'Start or end marker not found.'
return
try:
title = re.search(search_string, contents).group(1)
except AttributeError:
wikipedia.output(u"No title found - skipping a page.")
return
else:
page = wikipedia.Page(mysite, title)
wikipedia.output(page.title())
if page.exists():
if append == "Top":
old_text = page.get(get_redirect=True)
contents += old_text
commenttext_top = commenttext + " - " + wikipedia.translate(mysite,msg_top)
wikipedia.output(u"Page %s already exists, appending on top!"%title)
page.put(contents, comment = commenttext_top, minorEdit = False)
elif append == "Bottom":
old_text = page.get(get_redirect=True)
contents = old_text + contents
commenttext_bottom = commenttext + " - " + wikipedia.translate(mysite,msg_bottom)
wikipedia.output(u"Page %s already exists, appending on bottom!"%title)
page.put(contents, comment = commenttext_bottom, minorEdit = False)
elif force:
commenttext_force = commenttext + " *** " + wikipedia.translate(mysite,msg_force) + " ***"
wikipedia.output(u"Page %s already exists, ***overwriting!"%title)
page.put(contents, comment = commenttext_force, minorEdit = False)
else:
wikipedia.output(u"Page %s already exists, not adding!"%title)
else:
page.put(contents, comment = commenttext, minorEdit = False)
findpage(t[location.end()+1:])
return
def main():
text = []
f = codecs.open(filename,'r', encoding = config.textfile_encoding)
text = f.read()
findpage(text)
mysite = wikipedia.Site('te')
login.LoginManager('xxxxx', False, mysite) #replace xxxxx with your bot login's password
commenttext = u'వైజ్బాట్:యాంత్రిక పేజీ సృష్టి'
starttext=u'begin'
endtext=u'stop'
filename="inputfile.txt" #this is the text file into which you would put your content
include = False
force=False
append = "Bottom"
#titlestart = 'name ='
#titleend = '|'
try:
main()
except:
wikipedia.stopme()
raise
else:
wikipedia.stopme()