-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharguser.py
More file actions
17 lines (13 loc) · 1.18 KB
/
arguser.py
File metadata and controls
17 lines (13 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import argparse
def get_args():
parser = argparse.ArgumentParser()
parser.add_argument('-user', '--user', required=True, action='store', help='Username')
parser.add_argument('-password', '--password', required=True, action='store', help='Password')
parser.add_argument('-target', '--username_target', required=False, action='store', help='Target Username')
parser.add_argument('-option', '--option', required=False, action='store', help='Option with likers or followers or commenters (LOL)')
parser.add_argument('-countsOfFollowers', '--counts_of_follower', required=False, action='store', help='Counts of follower that you want to follow from target (more than 200)')
parser.add_argument('-countsOfLikers', '--counts_of_likers', required=False, action='store', help='Counts of likers that you want to follow from target')
parser.add_argument('-countsOfCommenters', '--counts_of_commenters', required=False, action='store', help='Counts of commenters that you want to follow from target')
parser.add_argument('-countsOfPost', '--counts_of_posts', required=False, action='store', help='Counts of post that you want to gain data from target')
my_args = parser.parse_args()
return my_args