Skip to content

Commit

Permalink
Update year; simplify pip; file i/o chapter
Browse files Browse the repository at this point in the history
  • Loading branch information
s2t2 committed Jan 4, 2025
1 parent cefaf69 commit c1179ed
Show file tree
Hide file tree
Showing 5 changed files with 428 additions and 420 deletions.
7 changes: 6 additions & 1 deletion docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,11 @@ book:
- notes/python-modules/datetime.qmd
#- notes/python-modules/getpass.ipynb

- part: "The Programming Environment"
#href: notes/python-modules/index.qmd
chapters:
- notes/python-lang/file-operations.qmd

- part: "Custom Functions In-Depth"
chapters:
- notes/python-lang/control-flow/function-docs.qmd
Expand All @@ -249,7 +254,7 @@ book:
#body-footer: "© Copyright 2024, Your Name Here"

page-footer:
center: "© Copyright 2024, Michael J Rossetti"
center: "© Copyright 2024 - 2025, Michael J Rossetti"


#bibliography: references.bib
Expand Down
14 changes: 13 additions & 1 deletion docs/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,23 @@
![](/images/python-banner.jpeg){fig-align="center" fig-alt="Intro to Software Development in Python (banner image)"}
-->

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


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.

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.

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.


<script type="text/javascript">

today = new Date();
thisYear = today.getFullYear();
console.log("THE YEAR IS: ", thisYear);

var year = document.getElementById("auto-copyright-year");
year.innerText = thisYear;

</script>
1 change: 1 addition & 0 deletions docs/notes/api-integrations/sending-email.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Sending Email in Python
Loading

0 comments on commit c1179ed

Please sign in to comment.