Planning the future of Botwiki! - Help us bring Botwiki up to date, contribute to our strategy discussion, add bot scripts, and contribute manuals, guides, and tutorials! Almost anything related to bots, particularly those used to edit mediawiki, is welcome.
UNABLE TO EDIT? - We've experienced attacks by spambots lately and now require you to confirm your e-mail before you can edit (go to your preferences, enter an e-mail address, and request a confirmation e-mail, then go to your e-mail and click on the confirmation link). We also require new accounts to make a few edits and wait a few minutes before before you can create a page; however, if this is a problem contact us in #botwiki and we can manually confirm your account. Sorry for the inconvenience.
User contributions
(Latest | Earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 23:02, 23 November 2007 (diff | hist) Botwiki:Administrators (→Other access types: +rfa)
- 23:00, 23 November 2007 (diff | hist) Botwiki:Administrators (cut out wikipedia cruf)
- 19:17, 18 November 2007 (diff | hist) Python:Lonelypages.py (list.append() does not return anything!)
- 21:32, 15 November 2007 (diff | hist) Botwiki:Bot helpboard/Archive00 (→login.py failure: DNS error)
- 21:25, 15 November 2007 (diff | hist) Rewrite (→Available code: add link to mwclient)
- 21:23, 15 November 2007 (diff | hist) Rewrite (→Structure proposed by Misza: + http)
- 21:21, 15 November 2007 (diff | hist) m Rewrite (→Structure proposed by Misza)
- 21:21, 15 November 2007 (diff | hist) Rewrite (→Structure proposed by Misza: re:user-interfaces)
- 20:17, 13 September 2007 (diff | hist) Botwiki:Botwiki (copyedit)
- 20:14, 13 September 2007 (diff | hist) Main Page (__NOEDITSECTION__)
- 20:13, 13 September 2007 (diff | hist) N Template:Did you know (dyk)
- 20:08, 13 September 2007 (diff | hist) m Python:Mwclient (→State: zip)
- 20:08, 13 September 2007 (diff | hist) Python:Mwclient (update)
- 20:06, 13 September 2007 (diff | hist) Manual:Frameworks (→Framework: mwclient up to version 0.5.0)
- 20:05, 13 September 2007 (diff | hist) N Botwiki:Administrator's noticeboard (Botwiki:Administrator's noticeboard moved to Botwiki:Administrators' noticeboard: It's the noticeboard for administrators, no The Administrator) (top)
- 20:05, 13 September 2007 (diff | hist) m Botwiki:Administrators' noticeboard/Archive00 (Botwiki:Administrator's noticeboard moved to Botwiki:Administrators' noticeboard: It's the noticeboard for administrators, no The Administrator)
- 20:03, 13 September 2007 (diff | hist) N File:Mwclient-0.5.0.zip (mwclient-0.5.0. Copyright 2006-2007 Bryan Tong Minh. Licensed under the terms of the MIT license. http://tools.wikimedia.de/websvn/listing.php?repname=bryan&path=%2Fmwclient%2F) (top)
- 10:50, 27 August 2007 (diff | hist) Python:CommonsDelinker (Replacing page with 'This is the rewritten version of CommonsDelinker. See delinker.py and delinker.txt in the Pywikipedia subversion for more information.') (top)
- 21:50, 23 June 2007 (diff | hist) Python:CommonsDelinker/threadpool.py (CVS) (top)
- 21:48, 23 June 2007 (diff | hist) Python:CommonsDelinker/delinker.py (update from cvs) (top)
- 17:31, 1 June 2007 (diff | hist) Python talk:CommonsDelinker (Subversion) (top)
- 17:07, 1 June 2007 (diff | hist) Python:CommonsDelinker (+svn)
- 19:15, 31 May 2007 (diff | hist) Botwiki:Threading (→Using the threadpool module)
- 19:06, 31 May 2007 (diff | hist) Python talk:CommonsDelinker (Delinking is just a special case of replacing...)
- 15:08, 31 May 2007 (diff | hist) Botwiki:Threading (→Thread-safety and pywikipedia: some classes and methods)
- 14:48, 31 May 2007 (diff | hist) Botwiki:Threading (→When not to use threads)
- 14:40, 31 May 2007 (diff | hist) Botwiki:Threading (expanded)
- 14:18, 31 May 2007 (diff | hist) N Botwiki:Threading (New page: When creating a bot that interacts with users or other systems over a network connection, one often faces the problem that lag greatly reduces the performance. This can be avoided by [[w:m...)
- 14:09, 31 May 2007 (diff | hist) User talk:Bryan (→Great job ^__^: re)
- 20:38, 30 May 2007 (diff | hist) Python:CommonsDelinker/delinker.py (prepare code for use with the replacer, catch redirects, catch errors)
- 19:20, 30 May 2007 (diff | hist) Python:Mwclient
- 19:18, 30 May 2007 (diff | hist) N Python:Mwclient/page.py (New page: <source lang="python"> import client, errors from HTMLParser import HTMLParser from htmlentitydefs import name2codepoint import urllib import re class Pages(object): def __init__(self, ...) (top)
- 19:17, 30 May 2007 (diff | hist) N Python:Mwclient/image.py (New page: <source lang="python"> import random class Images(list): def __init__(self, mediawiki): list.__init__(self, ()) self.mediawiki = mediawiki def upload(self, filedata, filename, descri...) (top)
- 19:17, 30 May 2007 (diff | hist) N Python:Mwclient/http.py (New page: <source lang="python"> import urllib2 import cookielib import urlparse import httplib import socket import errors __ver__ = '0.4.0' class Request(urllib2.Request): def __init__(self, u...) (top)
- 19:16, 30 May 2007 (diff | hist) N Python:Mwclient/errors.py (New page: <source lang="python"> class MwClientError(RuntimeError): pass class EditError(MwClientError): pass class ProtectedPageError(EditError): pass class LoginError(MwClientError): pass ...) (top)
- 19:15, 30 May 2007 (diff | hist) N Python:Mwclient/client.py (New page: <source lang="python"> import time import urllib import urlparse import simplejson import http import errors import page import category import image def parse_timestamp(t): return tim...) (top)
- 19:15, 30 May 2007 (diff | hist) N Python:Mwclient/category.py (New page: <source lang="python"> import page, errors class Categories(object): def __init__(self, mediawiki): self.mediawiki = mediawiki def __getitem__(self, key): return Category(self.media...) (top)
- 19:14, 30 May 2007 (diff | hist) m Python:Mwclient/ init .py (top)
- 19:14, 30 May 2007 (diff | hist) N Python:Mwclient/ init .py (New page: <source code="python"> import page, errors class Categories(object): def __init__(self, mediawiki): self.mediawiki = mediawiki def __getitem__(self, key): return Category(self.media...)
- 19:13, 30 May 2007 (diff | hist) N Python:Init.py (New page: <source lang="python"> """ Copyright (c) 2006-2007 Bryan Tong Minh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documen...)
- 18:01, 30 May 2007 (diff | hist) User talk:Bryan (→Resultaat livetest: fixed)
- 17:59, 30 May 2007 (diff | hist) Python:CommonsDelinker/checkusage.py (comments about mysql bug)
- 17:58, 30 May 2007 (diff | hist) Python:CommonsDelinker/delinker.py (fix unicode bug, add preliminary support for monitor module)
- 16:44, 29 May 2007 (diff | hist) Python talk:CommonsDelinker (ToDo/Bug list)
- 16:41, 29 May 2007 (diff | hist) User talk:Bryan (→Delinker livetest: re)
- 07:20, 29 May 2007 (diff | hist) User talk:Bryan (→Delinker livetest: re)
- 20:22, 28 May 2007 (diff | hist) N Python:Mwclient (New page: '''mwclient''' is an alternative Mediawiki client library for Python. It uses persistent HTTP connections and heavily relies on the Query API and API. ...)
- 19:16, 28 May 2007 (diff | hist) Python:CommonsDelinker/delinker.py (fix typo in retirar_imagem())
- 18:47, 28 May 2007 (diff | hist) User talk:Bryan (→Delinker livetest)
- 18:27, 28 May 2007 (diff | hist) Python:CommonsDelinker/delinker.py (add log)
(Latest | Earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)