6 Usage: python MDC-upload.py <file> <MDC-path>
7 Please set MDC_USER and MDC_PASSWORD in the environment
12 wikiuser
= os
.environ
['MDC_USER']
13 wikipw
= os
.environ
['MDC_PASSWORD']
15 (file, wikipath
) = sys
.argv
[1:]
17 wiki
= deki
.Deki("http://developer.mozilla.org/@api/deki/", wikiuser
, wikipw
)
18 wiki
.create_page(wikipath
, open(file).read(), overwrite
=True)