Skip to content

Commit cb9403b

Browse files
committed
2 parents c8d86a7 + e7c7825 commit cb9403b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Python Fundamentals/Module_1.2_Required_Code_Python_Fundamentals.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
},
6161
"outputs": [],
6262
"source": [
63-
"# [] create words after \"G\" following the Assignment requirements use of functions, menhods and kwyowrds\n",
63+
"# [] create words after \"G\" following the Assignment requirements use of functions, methods and keywords\n",
6464
"# Sample quote: \"Wheresoever you go, go with all your heart\" ~ Confucius (551 BC - 479 BC)\n",
6565
"\n",
6666
"\n",

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ The projects included here include working code and some experimental code. Some
1010
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.
1212
3. calcGUI
13-
> 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.
13+
> 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
15-
> This project demonstrates how to connect Python to a local MySQL database server. It requires that you download and install MySQL server on your local machine first. 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.
15+
> 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.
1616
5. RaspberryPi button
17-
> This project requires some wiring as well as a RaspberryPi computer and associated peripherals.
17+
> This project requires some wiring as well as a RaspberryPi computer and associated peripherals. You can simulate a RaspberryPi on your computer using an extension in Visual Studio Code. Search the Extensions library for a current one.
1818
6. Web Page with Flask
19-
> This project requires that you install the flask module. After that, when you run it, it will create a web server on your machine and host your Python and HTML files in dynamic web pages.
19+
> This project requires that you install the flask module. After that, when you run it, it will create a web server on your machine and host your Python and HTML files in dynamic web pages. This demo will not run in a web browser or Jupyter code editor, because those editors do not have access to the operating system properties of your computer. You need to run it in Visual Studio Code or another method directly on your computer for it to work.
2020
7. Data Analytics with Jupyter and Pandas
2121
> COMING SOON

0 commit comments

Comments
 (0)