https://github.com/denisecase/datafun-01-utils
Reusable utilities for my Python projects
https://github.com/denisecase/datafun-01-utils
Last synced: about 1 year ago
JSON representation
Reusable utilities for my Python projects
- Host: GitHub
- URL: https://github.com/denisecase/datafun-01-utils
- Owner: denisecase
- Created: 2023-12-07T17:23:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-12T14:35:41.000Z (about 1 year ago)
- Last Synced: 2025-05-12T15:52:21.443Z (about 1 year ago)
- Language: Python
- Size: 168 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# datafun-01-utils
Reusable module for my Data Analytics Python projects
## Project Requirements
- VS Code
- Git
- Python
## Workflow
See [pro-analytics-01](https://github.com/denisecase/pro-analytics-01/)
## Commands to Manage Virtual Environment
For Windows PowerShell (change if using Mac/Linux)
```powershell
py -m venv .venv
.\.venv\Scripts\activate
py -m pip install --upgrade pip setuptools wheel
py -m pip install --upgrade -r requirements.txt
```
## Commands to Run Python Script
```shell
py utils_case.py
py utils_case_advanced.py
```
## Commands to Git add-commit-push
```shell
git add .
git commit -m "custom message"
git push -u origin main
```
## Reference Project
Custom implementation of the example reusable project at
[datafun-01-util](https://github.com/denisecase/datafun-01-utils)
## Markdown Notes
- A Markdown title starts with: hash space
- A Markdown second-level heading starts with: hash hash space
- A Markdown un-ordered list starts with: dash space
- A Markdown ordered list start with: 1. space
- Markdown code fencing uses three **back tics** on their own line to display code and commands.
- Markdown **bold text** is surrounded by: two asterisks
- Markdown *underline text* is surrounded by: one asterisk
- Markdown is critical for project README files, Jupyter Notebooks, and writing technical papers with Sphinx
## Example Screenshots
