I am trying to develop a desktop application using Gtk3 and Python. It's basically a Twitter client. I had intended to store the authentication settings (access token and access token secret) in an XML file. Now I wish to read them on the launch of the application.
The problem I have is where to place the code for reading the XML file.
The authentication requires the following steps:
auth = tweepy.OAuthHandler(cons_key,cons_secret)
auth.set_access_token(access_token,access_token_secret)
api = tweepy.API(auth)
I can't place the read code in the constructor of the main window, as when the window opens, the methods for getting the tweets is called. I have placed my code on github.
The XML file is as follows:
<?xml version="1.0" ?>
<credentials>
<access_token>
76611638-TSnLa31lRXEp3qBNpxKmi2gyiW0jCLpOKeEsK5i6A
</access_token>
<access_token_secret>
wgC9xwGpCMOQQtDazOZF7wtvCA5MrtcaLT6gLv1vdE
</access_token_secret>
</credentials>