diff --git a/Currency Script/.idea/.gitignore b/Currency Script/.idea/.gitignore
new file mode 100644
index 00000000..13566b81
--- /dev/null
+++ b/Currency Script/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/Currency Script/.idea/Currency Script.iml b/Currency Script/.idea/Currency Script.iml
new file mode 100644
index 00000000..f552a87a
--- /dev/null
+++ b/Currency Script/.idea/Currency Script.iml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Currency Script/.idea/inspectionProfiles/Project_Default.xml b/Currency Script/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 00000000..c48cec66
--- /dev/null
+++ b/Currency Script/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Currency Script/.idea/inspectionProfiles/profiles_settings.xml b/Currency Script/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100644
index 00000000..105ce2da
--- /dev/null
+++ b/Currency Script/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Currency Script/.idea/misc.xml b/Currency Script/.idea/misc.xml
new file mode 100644
index 00000000..84dd86c7
--- /dev/null
+++ b/Currency Script/.idea/misc.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/Currency Script/.idea/modules.xml b/Currency Script/.idea/modules.xml
new file mode 100644
index 00000000..ff381672
--- /dev/null
+++ b/Currency Script/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Currency Script/.idea/vcs.xml b/Currency Script/.idea/vcs.xml
new file mode 100644
index 00000000..6c0b8635
--- /dev/null
+++ b/Currency Script/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Currency Script/main.py b/Currency Script/main.py
new file mode 100644
index 00000000..ed705b92
--- /dev/null
+++ b/Currency Script/main.py
@@ -0,0 +1,2 @@
+# TODO IMPORT API / CONVERTER / CURRENCY MODULES
+# TODO UPDATE / POPULATE MAIN TO ENSURE THERE IS A INTUITIVE SIMPLE UI
\ No newline at end of file
diff --git a/Currency Script/readme.txt b/Currency Script/readme.txt
new file mode 100644
index 00000000..3202240d
--- /dev/null
+++ b/Currency Script/readme.txt
@@ -0,0 +1 @@
+# TODO - UPDATE README
\ No newline at end of file
diff --git a/Currency Script/requirements.txt b/Currency Script/requirements.txt
new file mode 100644
index 00000000..ef92400b
--- /dev/null
+++ b/Currency Script/requirements.txt
@@ -0,0 +1 @@
+# TODO - UPDATE REQUIREMENTS TO NOTE INSTALLS ARE NOTED
\ No newline at end of file
diff --git a/Currency Script/setup.py b/Currency Script/setup.py
new file mode 100644
index 00000000..d1322786
--- /dev/null
+++ b/Currency Script/setup.py
@@ -0,0 +1 @@
+# UPDATE SETUP TO NOTE SET UP / PACKAGES
\ No newline at end of file
diff --git a/Currency Script/src/__init__.py b/Currency Script/src/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/Currency Script/src/api_handler.py b/Currency Script/src/api_handler.py
new file mode 100644
index 00000000..99441114
--- /dev/null
+++ b/Currency Script/src/api_handler.py
@@ -0,0 +1,2 @@
+# TODO - RELOCATE ALL API CALLING TO THIS MODULE
+# TODO - ENSURE API IS WORKING OR ELSE FIND ONE THAT IS
diff --git a/Currency Script/currency.py b/Currency Script/src/converter.py
similarity index 95%
rename from Currency Script/currency.py
rename to Currency Script/src/converter.py
index 062e1a3e..fbcc0274 100644
--- a/Currency Script/currency.py
+++ b/Currency Script/src/converter.py
@@ -1,3 +1,4 @@
+# TODO REVIEW AND ENSURE THE PURPOSE OF THIS MODULE IS TO CONVERT
# Python program to convert the currency
# of one country to that of another country
diff --git a/Currency Script/currency_calculator.py b/Currency Script/src/currencies.py
similarity index 95%
rename from Currency Script/currency_calculator.py
rename to Currency Script/src/currencies.py
index e0ae9585..409605f7 100644
--- a/Currency Script/currency_calculator.py
+++ b/Currency Script/src/currencies.py
@@ -1,3 +1,4 @@
+# TODO REVIEW BELOW CODE TO ENSURE THAT WHAT IS IN THIS MODULE FOR FUNCTION RECALLING CURRENCY FROM API
# Importing necessary modules for currency formatting and HTTP requests
from locale import currency
import requests