Skip to content

Commit 6313149

Browse files
authored
Refine KSU Scrape project README section
Updated the KSU Scrape project description for clarity and installation instructions.
1 parent cc939d8 commit 6313149

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The projects included here include working code for you to run and customize. So
88
1. Gradetracker
99
> 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.
1010
2. KSU Scrape
11-
> 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.
11+
> 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 the path to your Python install plus "-m" followed by '''pip install bs4'''. Sometimes '''pip install bs4''' may work for you. Otherwise, you may need to try '''python -m pip install bs4''' or in place of the word "python" put your Python path (which you need to check on your system) such as /usr/local/bin/python. For more info, watch https://www.youtube.com/watch?v=jnpC_Ib_lbc.
1212
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

0 commit comments

Comments
 (0)