Compare commits
2 commits
f9dec8a947
...
881fb6104b
Author | SHA1 | Date | |
---|---|---|---|
|
881fb6104b | ||
|
25cbebca65 |
2 changed files with 13 additions and 5 deletions
4
no_credentials.json
Normal file
4
no_credentials.json
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"user": "",
|
||||
"password": ""
|
||||
}
|
|
@ -15,13 +15,10 @@ default_categories = [
|
|||
'Technology',
|
||||
'Deployments',
|
||||
'Dataset',
|
||||
'City',
|
||||
'Country',
|
||||
# 'City',
|
||||
# 'Country',
|
||||
]
|
||||
|
||||
username = "Ruben2@SemanticGraphFetcher"
|
||||
password = "bdqjse4jodn34rbj73l0agrtb306v693"
|
||||
|
||||
parser = argparse.ArgumentParser(description='Turn wiki into nodes & links, usable by d3-force.')
|
||||
parser.add_argument('--categories', metavar='categories', default=default_categories, nargs='+',
|
||||
help='Categories')
|
||||
|
@ -29,9 +26,16 @@ parser.add_argument('--url', default="https://www.securityvision.io/wiki/api.ph
|
|||
help='Wiki API URL')
|
||||
parser.add_argument('--output', default="semantic_data.json",
|
||||
help='Output JSON file')
|
||||
parser.add_argument('--credentials', default="no_credentials.json",
|
||||
help="JSON file containing the Bot's credentials")
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
with open(args.credentials) as fp:
|
||||
credentials = json.load(fp)
|
||||
username = credentials['user']
|
||||
password = credentials['password']
|
||||
|
||||
|
||||
def get_session():
|
||||
S = requests.Session()
|
||||
|
|
Loading…
Reference in a new issue