Skip to main content

Standardized public MediaWiki events for tools and Science.

Project description

MediaWiki events

Wiki-tool builders & researchers rely on various sources of information about what’s happened and is currently happening in Wikipedia. These data sources tend to be structured in differently and contain incomplete or poorly structured information. Some datasources are queryable, but require complexity to “listen” to ongoing events while others are intended to only be used to “listen” to current events. ‘’MediaWiki events’’ is designed to minimize the frustration involved in process MediaWiki’s events.

Instal with pip: pip install mwevents

Note: Use of this library requires Python 3 or later.

Documentation: Comming soon!

Example:
from mwevents.sources import API
from mwevents import RevisionSaved, PageCreated

api_source = API.from_api_url("http://en.wikipedia.org/w/api.php")
listener = api_source.listener(events={RevisionSaved, PageCreated})

for event in listener:
    if isinstance(event, RevisionSaved):
        print(event.revision)
    else: # isinstance(event, PageCreated):
        print(event.page)

About the author

name:

Aaron Halfaker

email:

aaron.halfaker@gmail.com

website:

http://halfaker.infohttp://en.wikipedia.org/wiki/User:EpochFail

Contributors

None yet. See http://github.com/halfak/MediaWiki-events. Pull requests are encouraged.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mwevents-0.1.0.tar.gz (17.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page