Skip to content

Commit c1179ed

Browse files
committed
Update year; simplify pip; file i/o chapter
1 parent cefaf69 commit c1179ed

5 files changed

Lines changed: 428 additions & 420 deletions

File tree

docs/_quarto.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,11 @@ book:
223223
- notes/python-modules/datetime.qmd
224224
#- notes/python-modules/getpass.ipynb
225225

226+
- part: "The Programming Environment"
227+
#href: notes/python-modules/index.qmd
228+
chapters:
229+
- notes/python-lang/file-operations.qmd
230+
226231
- part: "Custom Functions In-Depth"
227232
chapters:
228233
- notes/python-lang/control-flow/function-docs.qmd
@@ -249,7 +254,7 @@ book:
249254
#body-footer: "© Copyright 2024, Your Name Here"
250255

251256
page-footer:
252-
center: "© Copyright 2024, Michael J Rossetti"
257+
center: "© Copyright 2024 - 2025, Michael J Rossetti"
253258

254259

255260
#bibliography: references.bib

docs/index.qmd

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,23 @@
55
![](/images/python-banner.jpeg){fig-align="center" fig-alt="Intro to Software Development in Python (banner image)"}
66
-->
77

8-
Welcome to the \"Intro to Software Development in Python\" book (2024 edition, online)!
8+
Welcome to the \"Intro to Software Development in Python\" book (<span id="auto-copyright-year">2024</span> edition, online)!
99

1010

1111
Whether you are a professional seeking to enhance technical skills, or a student aspiring to enter the field, this book should serve as a valuable resource.
1212

1313
The notes and exercises in this book are aimed to help you achieve a working knowledge of Python, and gain confidence in using Python to solve problems and create software applications.
1414

1515
We hope this book inspires you to harness the power of Python, helps you develop marketable technology skills, and opens up new avenues for innovation and efficiency in your work.
16+
17+
18+
<script type="text/javascript">
19+
20+
today = new Date();
21+
thisYear = today.getFullYear();
22+
console.log("THE YEAR IS: ", thisYear);
23+
24+
var year = document.getElementById("auto-copyright-year");
25+
year.innerText = thisYear;
26+
27+
</script>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Sending Email in Python

0 commit comments

Comments
 (0)