-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathREADME
More file actions
42 lines (31 loc) · 1.45 KB
/
README
File metadata and controls
42 lines (31 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
==TwittShell==
Version .14
An interactive command line program for posting tweets on twitter.com.
By Jason White for The Geek Group thegeekgroup.org
==License==
TwittShell is licensed under the Modified BSD License see LICENSE for more
details
==INSTALL==
To run TwittShell you MUST install the following Python modules
* python-oath2
* httplib2
* simplejson
* python-twitter
* setup-tools
They are included in the ./dependencies folder follow their README files to
properly install the modules. Basically all you need to do is just run setup.py
in the respective folders as root
==Using This Script With Your Account==
go to https://dev.twitter.com/apps. Click on "Register A New App" fill in the
required information, remembering to give it read and write access. When your
done you should be able to go to "Your Apps" and click on the app you registered
. There should be some information listed on the application page copy
"Consumer key" and "Consumer secret" then paste it into the appropriate global
variables listed at the top of the script, Repeat this on the "My Access Token"
Page with the variables access_key and access_secret. It should look something
like this.
<in twittshell.py lines 40-43>
*40* consumer_key = '2x0h71VcEAk2dAdf886HmA'
*41* consumer_secret = 'WWsaaEJOzCuRtUxhR2kU6LShZNyNBSufuKod91N1U'
*42* access_key = '254290857-CrESL7rXpjMlJnaCqlTwANYS2J4dRObMbdqLTcM'
*43* access_secret = 'voHU42UTprwkfEofwXFWtxnfUumwlxKMdAUB8fouIA'