From b08a66b5b3b71d14694d52f1b91c35dd49b555ff Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 13 Dec 2021 00:06:56 -0500 Subject: [PATCH] [+] Add sample config --- .gitignore | 2 +- src/config.json5 | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 src/config.json5 diff --git a/.gitignore b/.gitignore index 8d55ce9..33c0c44 100644 --- a/.gitignore +++ b/.gitignore @@ -124,6 +124,6 @@ dmypy.json *.xml *.out -config.json5 +./config.json5 data/ /report/ diff --git a/src/config.json5 b/src/config.json5 new file mode 100644 index 0000000..395d658 --- /dev/null +++ b/src/config.json5 @@ -0,0 +1,8 @@ +{ + // Twitter official V2 API keys + // Register for them on the Twitter api portal + consumer_key: 'Your_consumer_key', + consumer_secret: 'Your_consumer_secret', + access_token: 'Your_access_token', + access_secret: 'Your_access_secret', +}