Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Currency Script/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Currency Script/.idea/Currency Script.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions Currency Script/.idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Currency Script/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Currency Script/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Currency Script/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Currency Script/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# TODO IMPORT API / CONVERTER / CURRENCY MODULES
# TODO UPDATE / POPULATE MAIN TO ENSURE THERE IS A INTUITIVE SIMPLE UI
1 change: 1 addition & 0 deletions Currency Script/readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TODO - UPDATE README
1 change: 1 addition & 0 deletions Currency Script/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TODO - UPDATE REQUIREMENTS TO NOTE INSTALLS ARE NOTED
1 change: 1 addition & 0 deletions Currency Script/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# UPDATE SETUP TO NOTE SET UP / PACKAGES
Empty file added Currency Script/src/__init__.py
Empty file.
2 changes: 2 additions & 0 deletions Currency Script/src/api_handler.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# TODO - RELOCATE ALL API CALLING TO THIS MODULE
# TODO - ENSURE API IS WORKING OR ELSE FIND ONE THAT IS
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down