Browse Source

newest

master
Chris Yealy 4 months ago
parent
commit
33793926bc
5 changed files with 2106 additions and 811 deletions
  1. +3
    -1
      01-wordle/Wordle Master.ipynb
  2. +656
    -809
      02-sql/SQL Wizard.ipynb
  3. +8
    -1
      README.md
  4. +1421
    -0
      poetry.lock
  5. +18
    -0
      pyproject.toml

+ 3
- 1
01-wordle/Wordle Master.ipynb View File

@ -3,7 +3,9 @@
{
"cell_type": "markdown",
"id": "76cc981d",
"metadata": {},
"metadata": {
"tags": []
},
"source": [
"# Wordle Master\n",
"\n",

+ 656
- 809
02-sql/SQL Wizard.ipynb
File diff suppressed because it is too large
View File


+ 8
- 1
README.md View File

@ -1,3 +1,10 @@
# jenn-learning
Teach jenn coding with python
Teach jenn coding with python
## Install
1. poetry install
2. python -m ipykernel --user --name=jupyterwithpackages
3. jupyter lab .
4. Make sure you select the jupyerwithpackages kernel to run with

+ 1421
- 0
poetry.lock
File diff suppressed because it is too large
View File


+ 18
- 0
pyproject.toml View File

@ -0,0 +1,18 @@
[tool.poetry]
name = "jenn-learning"
version = "0.1.0"
description = ""
authors = ["Chris Yealy <christopheryealy@yahoo.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
jupysql = "^0.10.7"
duckdb-engine = "^0.10.0"
toml = "^0.10.2"
ipykernel = "^6.27.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

Loading…
Cancel
Save