(20241122) Test Callback has been set up for OAuth testing...

This commit is contained in:
2024-11-22 17:12:20 +05:30
parent 28f9f6f91f
commit a6621a5808
24 changed files with 1470 additions and 1 deletions
+55
View File
@@ -0,0 +1,55 @@
"""
AUTHOR:
Khushal P Soonderji
DATE:
Friday, 22nd Nov., 2024
OBJECTIVE:
To keep variables and values that will be shared among various parts of the project.
REFERENCES:
N/A
DOWNLOADS:
N/A
"""
# *****************************************************************************************************************
# ***** ****
# *** IMPORT ***
# ***** ****
# *****************************************************************************************************************
# To make sibling directories accessible for imports:
# ---
import sys
sys.path.append(".")
sys.path.append("..")
# System-level activities:
import os
# For parsing URLs:
import urllib
# *****************************************************************************************************************
# ***** ****
# *** MACROS / ONE-TIME INIT ***
# ***** ****
# *****************************************************************************************************************
APP_VERSION = "1.0.0"
PROJECT_NAME = "utils"
MODULE_NAME = "converse"