An open API service indexing awesome lists of open source software.

https://github.com/nragland37/python-projects

Collection of Python Projects, Jupyter Notebooks, & Learning Materials
https://github.com/nragland37/python-projects

jupyter jupyter-notebooks jupyterlab learning-python object-oriented-programming python python-programming python-projects python3

Last synced: 5 months ago
JSON representation

Collection of Python Projects, Jupyter Notebooks, & Learning Materials

Awesome Lists containing this project

README

        

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/558fae1bc9664d3ca9bb09c632e06bff)](https://app.codacy.com/gh/nragland37/python-projects/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![License](https://img.shields.io/badge/license-MIT-blue)](https://github.com/nragland37/python-projects/blob/main/LICENSE)

#

Hello, World! :snake:

'''

This is an introductory collection of Python projects, covering basics to intermediate topics, including `Jupyter notebooks` with countless runnable programs and descriptions.

## Anaconda & Jupyter

Anaconda is a package and environment manager that includes Jupyter Notebook and Jupyter Lab.

### Installation
- [Anaconda (Recommended)](https://www.anaconda.com/products/distribution)
- [Jupyter Only](https://jupyter.org/install)

### Running Jupyter
1. **VS Code**: [Jupyter Notebooks in VS Code](https://code.visualstudio.com/docs/datascience/jupyter-notebooks)
2. **Anaconda Navigator**: GUI for managing environments and launching apps (included with Anaconda).
3. **Command Line**:
```bash
jupyter notebook
```
```bash
jupyter lab
```

'''

### [Projects](/src)
* [Documents](src/docs/)

| # | Project |
|:---:|:---|
| 1 | [Grapevine Farming Calculator](./src/01-grapevineFarmingCalculator) |
| 2 | [Population Growth Calculator](./src/02-populationGrowthCalculator) |
| 3 | [Math Quiz](./src/03-mathQuiz) |
| 4 | [World Series Winners Tracker](./src/04-worldSeriesWinnersTracker) |
| 5 | [US Population Trends Analyzer](./src/05-USPopulationTrendsAnalyzer) |
| 6 | [LoShu Magic Square Validator](./src/06-loShuMagicSquareValidator) |
| 7 | [Camel Case To Pig Latin Converter](./src/07-camelCaseToPigLatinConverter) |
| 8 | [World Series Winners Tracker (Continued)](./src/08-updated_worldSeriesWinnersTracker) |
| 9 | [Retail Management System](./src/09-retailManagementSystem) |
| 10 | [Serialized Employee Management System](./src/10-serializedEmployeeManagementSystem) |
| 11 | [Temperature Converter App](./src/11-temperatureConverterApp) |
| 12 | [Ticket Calculator App](./src/12-ticketCalculatorApp) |


### [Jupyter](/jupyter)

| # | Notebooks |
|:---:|:---|
| 1 | [Python Programming Notes](./jupyter/python_notes.ipynb) |


### [Notes](/notes)

| # | Topics |
|:---:|:---|
| 1 | [Classes](./notes/classes) |
| 2 | [SQLite3 Database](./notes/database) |
| 3 | [Files](./notes/files) |
| 4 | [Matplotlib](./notes/matplotlib) |
| 5 | [Tkinter GUI Apps](./notes/tkinter) |
| 6 | [Turtle Graphics](./notes/turtle) |