Skip to content

denisecase/datafun-02-project-setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

datafun-02-project-setup

Utilities for scripting project folders

Project Requirements

  • VS Code
  • Git
  • Python

Professional Python Workflow

See pro-analytics-01

Commands to Manage Virtual Environment

For Windows PowerShell (change if using Mac/Linux). Verify that all required packages are included in requirements.txt (and have NOT been commented out).

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 Scripts

Remember to activate your .venv (and install packages if they haven't been installed yet) before running files.

TODO: Change these to reflect your Python file names and remove this TODO.

py utils_case.py
py dirbot_case.py

Commands to Git add-commit-push

git add .
git commit -m "custom message"
git push -u origin main

Reference Projects

Custom implementation of the example project at datafun-02-project-setup

About

Utilities for scripting project folders

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages