Skip to content

Commit aba09e9

Browse files
committed
Readme update
1 parent e342a34 commit aba09e9

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Python Teaching Code
2-
This repository ("repo") contains a variety of starter project code and demo code for showing different capabilities and how to use them in Python.
2+
This code repository ("repo") contains a variety of starter project code and demo code for showing different capabilities and how to use them in Python. It also contains structured Python tutorials and practice exercises to help you learn and apply your skills.
33

4-
Begin by forking this repository to your own Github account. Next, you can clone it to your machine and run the examples and customize the code. If you do not fork it first, you will not be able to save changes, as you do not have permission to change this original template in my account.
4+
Begin by forking this repository to your own Github account. Next, you can clone it to your machine and run the examples and customize the code. If you do not fork it first, you will not be able to save changes, as you do not have permission to change this original respository.
55

6-
The projects included here include working code and some experimental code. Some also require additional libraries and capabilities on your computer in order for you to use them. Those are noted below.
6+
The projects included here include working code for you to run and customize. Some also require additional libraries and capabilities on your computer in order for you to use them. Those are noted below.
77

88
1. Gradetracker
9-
> This project is a simple demonstration of an application in fewer than 100 lines of code. You can see functions and other capabilities used here. The code requires the built-in statistics library to be imported. It should run on any version of Python 3.
10-
2. KSU scrape
9+
> This project is a simple demonstration of an application in fewer than 100 lines of code. You can see functions and other capabilities used here. The code requires the built-in statistics library to be imported. Like all the others, it should run on any version of Python 3.
10+
2. KSU Scrape
1111
> This project demonstrates how Python can be used to grab data from a web page and process it into orderly results that can be used for further analysis and actions. It requires several add-on libraries. You will especially need to install the beautiful soup library and the lxml parser library in order to use this code. The command line command for installing is '''pip install bs4''' This may work for you. Otherwise, you may need to try '''python -m pip install bs4''' On a Mac, you will need to guide the install to your Python 3 installation, since Macs also already have Python 2 associated with the command '''python''' by default. So, you would run '''pip3 install bs4'''. Similarly, you can install other modules by putting their official name instead of '''bs4''' in the preceding commands. For more info, watch https://www.youtube.com/watch?v=jnpC_Ib_lbc.
12-
3. calcGUI
12+
3. CalcGUI
1313
> This project shows you a Python application working in a graphical user interface window with buttons and bindings to your keyboard keys. It should work on all Python 3.6 or newer versions, because they have the GUI library tkinter pre-installed. This demo will not run in a web browser or Jupyter code editor, because those editors do not have access to the Display properties of your computer. You need to run it in Visual Studio Code or another method directly on your computer for it to work.
1414
4. DB in Python
1515
> This project demonstrates how to connect Python to a local SQLite file and a MySQL database server. The SQLite part will run on your local machine (SQLite is built in to Python by default). The MySQL part requires that you download and install MySQL server on your local machine first (or you can setup an online instance and connect to it for more advanced users). Next, you have to import the database of student data (.sql file) into your MySQL server. Then, you need to edit the code to use the password for your MySQL server on your machine and install and import the library to connect to MySQL. Then, it can work! There is also a folder here with experimental code for transforming gradetracker into GUI and DB-driven versions. These may not work, but you are welcome to test them and upgrade them.

0 commit comments

Comments
 (0)