I am new to python. I have a task to access wikipedia. For this I am using the client pywikipedia to access mediawiki api. WHen I am running login.py it is asking me password. how will I get the password? has somebody worked on pywikipedia tool? Any suggestion which client can I use?

link|improve this question

40% accept rate
feedback

1 Answer

up vote 3 down vote accepted

pywikipedia asks for your Wikipedia login. You can register an account on Wikipedia, as well as any other MediaWiki wiki, to assign your edits. When you use pywikipedia, it usually expects you to use an account (instead of editing anonymously).

Note that some wikis may have special requirements for people to run bots; some might require you to ask for a bot status first, and some might disallow you to make changes via the API (I don’t exactly know how it is done on Wikipedia, you’ll need to find that out yourself).

For configuration, please take a look at the user-config.py file inside of the pywikipedia directory. This is where you define on which wiki you are working on (family), and also which username to use (usernames[familyname][language]).

See also:

link|improve this answer
On the English Wikipedia, you must apply at WP:BRFA and get approved before running a bot which edits pages. Smaller wikis are usually more relaxed and only require preregistration if your bot edits frequently or does controversial things. – Tgr Nov 9 '11 at 20:47
Hi I am able to login – user1036348 Nov 9 '11 at 22:17
Thanx guys I am able to login now but as I am not approved there is a prompt: * Your username is not listed on [[[u'Wikipedia:Bots/Status', 'BotS']]]. * Please make sure you are allowed to use the robot before actually using it! I will only be most of the time getting data for viewing. Shall I still get Bots/Requests for approval ?? – user1036348 Nov 9 '11 at 22:20
In doubt: Yes, ask them about it. They’ll probably tell you what to do, so you can access the wiki from your bot without such errors. – poke Nov 9 '11 at 23:10
Is pywikipedia only for making edits ? I want to just retrive the content of page is that possible and for putting the new data we use page.put() what funtion is used to see the content of page on our console – user1036348 Nov 9 '11 at 23:44
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.