-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFetchTagUsersBot.py
More file actions
44 lines (32 loc) · 1.5 KB
/
FetchTagUsersBot.py
File metadata and controls
44 lines (32 loc) · 1.5 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
41
42
43
44
# -*- coding: utf-8 -*-
#!/usr/bin/python
"""
-----***-----
Warning!:
This project is a work in progress - what you get may not work out of the proverbial box :)
Twitter places limits on automated activity to prevent abuse.
You undertake ALL activity at YOUR OWN RISK.
-----***-----
Dependencies:
- botTools module (expects botTools.py in the same directory)
- python2.7.x
- python-twitter library
--(https://python-twitter.readthedocs.io/en/latest/installation.html)
- a Twitter "app" attached to your Twitter account, which creates API access keys
-- This can be done at https://apps.twitter.com/
-- See https://python-twitter.readthedocs.io/en/latest/getting_started.html
for more info and a tutorial
Author:
Copyright 2017 Elizabeth Lagesse <github.com/elantrian> <www.elizabethlagesse.com>
This file is part of botsForABetterWorld.
botsForABetterWorld is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
botsForABetterWorld is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with botsForABetterWorld. If not, see <http://www.gnu.org/licenses/>.
"""