set a web page language by python2019 Community Moderator ElectionCalling an external command in PythonWhat are metaclasses in Python?Is there a way to run Python on Android?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?How to get the current time in PythonHow can I make a time delay in Python?Does Python have a string 'contains' substring method?

Can you move over difficult terrain with only 5 feet of movement?

What should I install to correct "ld: cannot find -lgbm and -linput" so that I can compile a Rust program?

In what cases must I use 了 and in what cases not?

What favor did Moody owe Dumbledore?

Hausdorff dimension of the boundary of fibres of Lipschitz maps

Recruiter wants very extensive technical details about all of my previous work

Print last inputted byte

Probably overheated black color SMD pads

How do hiring committees for research positions view getting "scooped"?

Maths symbols and unicode-math input inside siunitx commands

In Aliens, how many people were on LV-426 before the Marines arrived​?

Is there a term for accumulated dirt on the outside of your hands and feet?

Do I need to be arrogant to get ahead?

Should I use acronyms in dialogues before telling the readers what it stands for in fiction?

Do I need to consider instance restrictions when showing a language is in P?

Describing a chess game in a novel

The average age of first marriage in Russia

What can I do if I am asked to learn different programming languages very frequently?

Asserting that Atheism and Theism are both faith based positions

How to get the n-th line after a grepped one?

What are substitutions for coconut in curry?

Brake pads destroying wheels

Deletion of copy-ctor & copy-assignment - public, private or protected?

How is the partial sum of a geometric sequence calculated?



set a web page language by python



2019 Community Moderator ElectionCalling an external command in PythonWhat are metaclasses in Python?Is there a way to run Python on Android?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?How to get the current time in PythonHow can I make a time delay in Python?Does Python have a string 'contains' substring method?










-1















when I run the following code which used for translating the web pages on wiki to other languages on my desktop the command prompt tell me that I have syntaxError:
(I am install the requests module on my system)



file "try.py" line 66



syntaxError: EOF while scanning triple-quoted string literal



import requests

S = requests.Session()

URL = "https://test.wikipedia.org/w/api.php"

# Step 1: GET Request to fetch login token
PARAMS_0 =
"action": "query",
"meta": "tokens",
"type": "login",
"format": "json"


R = S.get(url=URL, params=PARAMS_0)
DATA = R.json()

LOGIN_TOKEN = DATA['query']['tokens']['logintoken']

# Step 2: POST Request to log in. Use of main account for login is not
# supported. Obtain credentials via Special:BotPasswords
# (https://www.mediawiki.org/wiki/Special:BotPasswords) for lgname & lgpassword
PARAMS_1 =
"action": "login",
"lgname": "bot_user_name",
"lgpassword": "bot_password",
"lgtoken": LOGIN_TOKEN,
"format": "json"


R = S.post(URL, data=PARAMS_1)

# Step 3: GET request to fetch CSRF token
PARAMS_2 =
"action": "query",
"meta": "tokens",
"format": "json"


R = S.get(url=URL, params=PARAMS_2)
DATA = R.json()

CSRF_TOKEN = DATA['query']['tokens']['csrftoken']

# Step 4: POST request to change page language
PARAMS_3 =
"action": "setpagelanguage",
"pageid": "123",
"token": CSRF_TOKEN,
"format": "json",
"lang": "eu"


R = S.post(URL, data=PARAMS_3)
DATA = R.json()

print(DATA)


Can any one explain why this Error please??










share|improve this question
























  • Which line is line 66

    – Neoxidine
    Mar 8 at 11:30











  • I see nothing triple quoted here. In which line does the error occur?

    – user8408080
    Mar 8 at 11:42












  • there is no line 66 on my atom the code reach to line 65 that's why I don't understand the error here

    – Israa
    Mar 8 at 12:27















-1















when I run the following code which used for translating the web pages on wiki to other languages on my desktop the command prompt tell me that I have syntaxError:
(I am install the requests module on my system)



file "try.py" line 66



syntaxError: EOF while scanning triple-quoted string literal



import requests

S = requests.Session()

URL = "https://test.wikipedia.org/w/api.php"

# Step 1: GET Request to fetch login token
PARAMS_0 =
"action": "query",
"meta": "tokens",
"type": "login",
"format": "json"


R = S.get(url=URL, params=PARAMS_0)
DATA = R.json()

LOGIN_TOKEN = DATA['query']['tokens']['logintoken']

# Step 2: POST Request to log in. Use of main account for login is not
# supported. Obtain credentials via Special:BotPasswords
# (https://www.mediawiki.org/wiki/Special:BotPasswords) for lgname & lgpassword
PARAMS_1 =
"action": "login",
"lgname": "bot_user_name",
"lgpassword": "bot_password",
"lgtoken": LOGIN_TOKEN,
"format": "json"


R = S.post(URL, data=PARAMS_1)

# Step 3: GET request to fetch CSRF token
PARAMS_2 =
"action": "query",
"meta": "tokens",
"format": "json"


R = S.get(url=URL, params=PARAMS_2)
DATA = R.json()

CSRF_TOKEN = DATA['query']['tokens']['csrftoken']

# Step 4: POST request to change page language
PARAMS_3 =
"action": "setpagelanguage",
"pageid": "123",
"token": CSRF_TOKEN,
"format": "json",
"lang": "eu"


R = S.post(URL, data=PARAMS_3)
DATA = R.json()

print(DATA)


Can any one explain why this Error please??










share|improve this question
























  • Which line is line 66

    – Neoxidine
    Mar 8 at 11:30











  • I see nothing triple quoted here. In which line does the error occur?

    – user8408080
    Mar 8 at 11:42












  • there is no line 66 on my atom the code reach to line 65 that's why I don't understand the error here

    – Israa
    Mar 8 at 12:27













-1












-1








-1








when I run the following code which used for translating the web pages on wiki to other languages on my desktop the command prompt tell me that I have syntaxError:
(I am install the requests module on my system)



file "try.py" line 66



syntaxError: EOF while scanning triple-quoted string literal



import requests

S = requests.Session()

URL = "https://test.wikipedia.org/w/api.php"

# Step 1: GET Request to fetch login token
PARAMS_0 =
"action": "query",
"meta": "tokens",
"type": "login",
"format": "json"


R = S.get(url=URL, params=PARAMS_0)
DATA = R.json()

LOGIN_TOKEN = DATA['query']['tokens']['logintoken']

# Step 2: POST Request to log in. Use of main account for login is not
# supported. Obtain credentials via Special:BotPasswords
# (https://www.mediawiki.org/wiki/Special:BotPasswords) for lgname & lgpassword
PARAMS_1 =
"action": "login",
"lgname": "bot_user_name",
"lgpassword": "bot_password",
"lgtoken": LOGIN_TOKEN,
"format": "json"


R = S.post(URL, data=PARAMS_1)

# Step 3: GET request to fetch CSRF token
PARAMS_2 =
"action": "query",
"meta": "tokens",
"format": "json"


R = S.get(url=URL, params=PARAMS_2)
DATA = R.json()

CSRF_TOKEN = DATA['query']['tokens']['csrftoken']

# Step 4: POST request to change page language
PARAMS_3 =
"action": "setpagelanguage",
"pageid": "123",
"token": CSRF_TOKEN,
"format": "json",
"lang": "eu"


R = S.post(URL, data=PARAMS_3)
DATA = R.json()

print(DATA)


Can any one explain why this Error please??










share|improve this question
















when I run the following code which used for translating the web pages on wiki to other languages on my desktop the command prompt tell me that I have syntaxError:
(I am install the requests module on my system)



file "try.py" line 66



syntaxError: EOF while scanning triple-quoted string literal



import requests

S = requests.Session()

URL = "https://test.wikipedia.org/w/api.php"

# Step 1: GET Request to fetch login token
PARAMS_0 =
"action": "query",
"meta": "tokens",
"type": "login",
"format": "json"


R = S.get(url=URL, params=PARAMS_0)
DATA = R.json()

LOGIN_TOKEN = DATA['query']['tokens']['logintoken']

# Step 2: POST Request to log in. Use of main account for login is not
# supported. Obtain credentials via Special:BotPasswords
# (https://www.mediawiki.org/wiki/Special:BotPasswords) for lgname & lgpassword
PARAMS_1 =
"action": "login",
"lgname": "bot_user_name",
"lgpassword": "bot_password",
"lgtoken": LOGIN_TOKEN,
"format": "json"


R = S.post(URL, data=PARAMS_1)

# Step 3: GET request to fetch CSRF token
PARAMS_2 =
"action": "query",
"meta": "tokens",
"format": "json"


R = S.get(url=URL, params=PARAMS_2)
DATA = R.json()

CSRF_TOKEN = DATA['query']['tokens']['csrftoken']

# Step 4: POST request to change page language
PARAMS_3 =
"action": "setpagelanguage",
"pageid": "123",
"token": CSRF_TOKEN,
"format": "json",
"lang": "eu"


R = S.post(URL, data=PARAMS_3)
DATA = R.json()

print(DATA)


Can any one explain why this Error please??







python mediawiki






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 8 at 11:26







Israa

















asked Mar 7 at 17:04









IsraaIsraa

11




11












  • Which line is line 66

    – Neoxidine
    Mar 8 at 11:30











  • I see nothing triple quoted here. In which line does the error occur?

    – user8408080
    Mar 8 at 11:42












  • there is no line 66 on my atom the code reach to line 65 that's why I don't understand the error here

    – Israa
    Mar 8 at 12:27

















  • Which line is line 66

    – Neoxidine
    Mar 8 at 11:30











  • I see nothing triple quoted here. In which line does the error occur?

    – user8408080
    Mar 8 at 11:42












  • there is no line 66 on my atom the code reach to line 65 that's why I don't understand the error here

    – Israa
    Mar 8 at 12:27
















Which line is line 66

– Neoxidine
Mar 8 at 11:30





Which line is line 66

– Neoxidine
Mar 8 at 11:30













I see nothing triple quoted here. In which line does the error occur?

– user8408080
Mar 8 at 11:42






I see nothing triple quoted here. In which line does the error occur?

– user8408080
Mar 8 at 11:42














there is no line 66 on my atom the code reach to line 65 that's why I don't understand the error here

– Israa
Mar 8 at 12:27





there is no line 66 on my atom the code reach to line 65 that's why I don't understand the error here

– Israa
Mar 8 at 12:27












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55049279%2fset-a-web-page-language-by-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55049279%2fset-a-web-page-language-by-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page