From 236ddc7bfbb370658e2848bbb8526cef28fde422 Mon Sep 17 00:00:00 2001 From: Willow McLarney Date: Mon, 22 Sep 2025 12:00:16 -0700 Subject: [PATCH 01/11] added willow intro --- scripts/hello_willow.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/hello_willow.py diff --git a/scripts/hello_willow.py b/scripts/hello_willow.py new file mode 100644 index 0000000..9375a7e --- /dev/null +++ b/scripts/hello_willow.py @@ -0,0 +1,11 @@ +""" +A simple hello world script by [Your Name] +""" +name = "Willow" +print(f"Hello from {name}!") +print("This is my first script in our group project.") + +# Add a simple calculation +favorite_number = 3 # Change this to your actual favorite number +result = favorite_number * 2 +print(f"My favorite number times 2 is: {result}") \ No newline at end of file From 0a52fd64936c5a62008b0932afd1d48b4beaf133 Mon Sep 17 00:00:00 2001 From: Rachel Avram <75150847+ravram193@users.noreply.github.com> Date: Mon, 22 Sep 2025 12:02:50 -0700 Subject: [PATCH 02/11] creating name file --- scripts/hello_rachel.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/hello_rachel.py diff --git a/scripts/hello_rachel.py b/scripts/hello_rachel.py new file mode 100644 index 0000000..8cd0ffc --- /dev/null +++ b/scripts/hello_rachel.py @@ -0,0 +1,11 @@ +""" +A simple hello world script by Rachel. +""" +name = "Rachel" +print(f"Hello from {name}!") +print("This is my first script in our group project.") + +# Add a simple calculation +favorite_number = 42 # Change this to your actual favorite number +result = favorite_number * 2 +print(f"My favorite number times 2 is: {result}") \ No newline at end of file From 716610db7a0e7d3808376ee06c38bb34dfd9c4b8 Mon Sep 17 00:00:00 2001 From: shreyannamaneni Date: Mon, 22 Sep 2025 12:06:10 -0700 Subject: [PATCH 03/11] Create hello_shreya.py --- scripts/hello_shreya.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/hello_shreya.py diff --git a/scripts/hello_shreya.py b/scripts/hello_shreya.py new file mode 100644 index 0000000..3506e0b --- /dev/null +++ b/scripts/hello_shreya.py @@ -0,0 +1,11 @@ +""" +A simple hello world script by [Your Name] +""" +name = "[Shreya Annamaneni]" +print(f"Hello from {shreya}!") +print("This is my first script in our group project.") + +# Add a simple calculation +favorite_number = 14 # Change this to your actual favorite number +result = favorite_number * 2 +print(f"My favorite number times 2 is: {result}") \ No newline at end of file From 645411fc26d3645f50d98f124a7fc981b11567c7 Mon Sep 17 00:00:00 2001 From: Willow McLarney Date: Mon, 22 Sep 2025 12:11:03 -0700 Subject: [PATCH 04/11] add willow to contributors section --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 5201399..4a1507f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # COMPSS-211-Final-Project-Template-Repo Template repository for COMPSS-211 Final Projects + +##Contributors +##Willow +I will be contributing in data analysis and presentation. \ No newline at end of file From 9c5ef01faf3077ce3e2b7e16ba12b5f1b644187c Mon Sep 17 00:00:00 2001 From: Rachel Avram <75150847+ravram193@users.noreply.github.com> Date: Mon, 22 Sep 2025 12:12:33 -0700 Subject: [PATCH 05/11] adding text to README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5201399..aea4719 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # COMPSS-211-Final-Project-Template-Repo Template repository for COMPSS-211 Final Projects + +Hi this is Rachel From 56783458beac9d2bdf6a512d74d0d3d472459961 Mon Sep 17 00:00:00 2001 From: shreyannamaneni Date: Mon, 22 Sep 2025 12:13:23 -0700 Subject: [PATCH 06/11] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 5201399..e7f111d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # COMPSS-211-Final-Project-Template-Repo Template repository for COMPSS-211 Final Projects +## Contributors + +### Shreya Annamaneni +Hi this is shreya. \ No newline at end of file From 2b3730f9e1ad20efb7bd738d467e17c68d68f722 Mon Sep 17 00:00:00 2001 From: Rachel Avram <75150847+ravram193@users.noreply.github.com> Date: Mon, 6 Oct 2025 12:18:41 -0700 Subject: [PATCH 07/11] in class lab --- src/mypkg/mymodule.py | 2 +- src/mypkg/utils.py | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 src/mypkg/utils.py diff --git a/src/mypkg/mymodule.py b/src/mypkg/mymodule.py index 40be556..967cfa9 100644 --- a/src/mypkg/mymodule.py +++ b/src/mypkg/mymodule.py @@ -1,3 +1,3 @@ def test(): - print("Hello world!") + print("Hello world! I speak Python!") diff --git a/src/mypkg/utils.py b/src/mypkg/utils.py new file mode 100644 index 0000000..944bdf1 --- /dev/null +++ b/src/mypkg/utils.py @@ -0,0 +1,11 @@ +def calculate_average(numbers): + """Calculate the average of a list of numbers.""" + if not numbers: + return 0 + return sum(numbers) / len(numbers) + +def format_currency(amount, currency="USD"): + """Format a number as currency.""" + symbols = {"USD": "$", "EUR": "€", "GBP": "£"} + symbol = symbols.get(currency, "$") + return f"{symbol}{amount:.2f}" \ No newline at end of file From 77c842f9e949679a74f22e082a2853da1eed6bc0 Mon Sep 17 00:00:00 2001 From: Rachel Avram <75150847+ravram193@users.noreply.github.com> Date: Mon, 6 Oct 2025 12:24:06 -0700 Subject: [PATCH 08/11] pushing pyproject.toml --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c0fe43e..ffc2dce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] -name = "mypkg" +name = "nlp_us_presidents" version = "0.0.1" -description = "Final Project Group Repository for COMPSS-211" +description = "Analyzes US presidential speeches using NLP methods to analyze trends in the definition of 'What it means to be an American' over time." readme = "README.md" requires-python = ">=3.10" dependencies = [] From 8d1965183f020929073dae64c6ea1a55717ed6e2 Mon Sep 17 00:00:00 2001 From: Rachel Avram <75150847+ravram193@users.noreply.github.com> Date: Mon, 6 Oct 2025 12:25:24 -0700 Subject: [PATCH 09/11] changing word --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ffc2dce..eba8487 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "nlp_us_presidents" version = "0.0.1" -description = "Analyzes US presidential speeches using NLP methods to analyze trends in the definition of 'What it means to be an American' over time." +description = "Analyzes US presidential speeches using NLP methods to identify trends in the definition of 'What it means to be an American' over time." readme = "README.md" requires-python = ">=3.10" dependencies = [] From 0d9b55888646ee0034e8771e5be224de6eeecbeb Mon Sep 17 00:00:00 2001 From: Willow McLarney Date: Mon, 6 Oct 2025 12:28:43 -0700 Subject: [PATCH 10/11] incorporate 10/6 lab changes, from rachel --- pyproject.toml => american-analyzer.toml | 0 {src => american_analyzer}/__init__.py | 0 {src => american_analyzer}/mypkg/mymodule.py | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename pyproject.toml => american-analyzer.toml (100%) rename {src => american_analyzer}/__init__.py (100%) rename {src => american_analyzer}/mypkg/mymodule.py (100%) diff --git a/pyproject.toml b/american-analyzer.toml similarity index 100% rename from pyproject.toml rename to american-analyzer.toml diff --git a/src/__init__.py b/american_analyzer/__init__.py similarity index 100% rename from src/__init__.py rename to american_analyzer/__init__.py diff --git a/src/mypkg/mymodule.py b/american_analyzer/mypkg/mymodule.py similarity index 100% rename from src/mypkg/mymodule.py rename to american_analyzer/mypkg/mymodule.py From 91bfc0cf5c5ffa1d58b0672133284d736bbd1a27 Mon Sep 17 00:00:00 2001 From: Willow McLarney Date: Mon, 6 Oct 2025 12:41:35 -0700 Subject: [PATCH 11/11] sync with main branch --- american-analyzer.toml => pyproject.toml | 0 {american_analyzer => src}/__init__.py | 0 {american_analyzer => src}/mypkg/mymodule.py | 0 {american_analyzer => src}/mypkg/utils.py | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename american-analyzer.toml => pyproject.toml (100%) rename {american_analyzer => src}/__init__.py (100%) rename {american_analyzer => src}/mypkg/mymodule.py (100%) rename {american_analyzer => src}/mypkg/utils.py (100%) diff --git a/american-analyzer.toml b/pyproject.toml similarity index 100% rename from american-analyzer.toml rename to pyproject.toml diff --git a/american_analyzer/__init__.py b/src/__init__.py similarity index 100% rename from american_analyzer/__init__.py rename to src/__init__.py diff --git a/american_analyzer/mypkg/mymodule.py b/src/mypkg/mymodule.py similarity index 100% rename from american_analyzer/mypkg/mymodule.py rename to src/mypkg/mymodule.py diff --git a/american_analyzer/mypkg/utils.py b/src/mypkg/utils.py similarity index 100% rename from american_analyzer/mypkg/utils.py rename to src/mypkg/utils.py