├── .github └── workflows │ ├── python-publish.yml │ └── python-pytest.yml ├── .gitignore ├── .python-version ├── Examples ├── Test Questions by Student ID │ └── ladder_problem.png ├── Test Solutions by Student ID │ └── ladder_problem.png ├── eqn_lib.py ├── ladder_problem-Copy1.png ├── ladder_problem.png └── streamlit_example.py ├── LICENSE ├── README.md ├── docs ├── README.md ├── about.md ├── cell_magic.md ├── decorator.md ├── features.md ├── images │ ├── Screenshot 2020-09-18 222151.png │ ├── basic_demo.gif │ ├── basic_demo1.gif │ ├── call_recorder.gif │ ├── cell_magic_overrides_example.png │ ├── comments.gif │ ├── comments.png │ ├── conditionals.gif │ ├── conditionals.png │ ├── coverage.svg │ ├── custom_symbols.png │ ├── decimal_separator.png │ ├── decorator.gif │ ├── decorator.png │ ├── display_var.png │ ├── example_papermill.gif │ ├── example_streamlit.gif │ ├── forallpeople.gif │ ├── forallpeople.png │ ├── funcs.gif │ ├── functions.png │ ├── greek.png │ ├── greeks.gif │ ├── greeks.png │ ├── handcalcs.jpg │ ├── handcalcs_education.gif │ ├── handcalcs_rect.jpg │ ├── integration.gif │ ├── integration.png │ ├── ladder_problem.png │ ├── long.gif │ ├── long1.png │ ├── long2.png │ ├── more_complicated.gif │ ├── no_subs.png │ ├── outputs.gif │ ├── parameters.gif │ ├── params.png │ ├── prime.png │ ├── quadratic_formula_basic.png │ ├── quadratic_formula_long.png │ ├── quadratic_formula_params.png │ ├── quadratic_formula_precision.png │ ├── quadratic_formula_short.png │ ├── quadratic_formula_symbolic.png │ ├── render.png │ ├── short1.png │ ├── short2.png │ ├── shortandlong.gif │ ├── skip_subs.gif │ ├── subscripts.gif │ ├── subscripts.png │ ├── symbolic.gif │ ├── symbolic1.png │ ├── symbolic2.png │ ├── sympy.png │ ├── sympy1.png │ ├── sympy2.png │ ├── tex.gif │ ├── tex.png │ └── wrong_brackets.gif ├── index.md ├── installation.md ├── overrides.md └── sympy.md ├── mkdocs.yml ├── pyproject.toml ├── requirements.txt ├── src └── handcalcs │ ├── __init__.py │ ├── config.json │ ├── constants.py │ ├── conversion_funcs.py │ ├── decorator.py │ ├── global_config.py │ ├── handcalcs.py │ ├── handcalcs_html │ ├── __init__.py │ └── classic │ │ ├── base.html.j2 │ │ ├── conf.json │ │ ├── index.html.j2 │ │ └── static │ │ └── style.css │ ├── integrations.py │ ├── py.typed │ ├── render.py │ └── sympy_kit.py ├── test_handcalcs ├── #test_handcalcs.py ├── __init__.py ├── cell_1.py ├── cell_10.py ├── cell_11.py ├── cell_2.py ├── cell_2b.py ├── cell_3.py ├── cell_4.py ├── cell_5.py ├── cell_6.py ├── cell_7.py ├── cell_7b.py ├── cell_8.py ├── cell_9.py ├── error_cell.py ├── function_mocks.py ├── test_decorator_file.py ├── test_handcalcs_file.py ├── test_pint.py ├── test_render_file.py └── test_sympy_kit.py ├── vis_pyproject.toml └── wiki_text.md /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/.github/workflows/python-pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /Examples/Test Questions by Student ID/ladder_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/Examples/Test Questions by Student ID/ladder_problem.png -------------------------------------------------------------------------------- /Examples/Test Solutions by Student ID/ladder_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/Examples/Test Solutions by Student ID/ladder_problem.png -------------------------------------------------------------------------------- /Examples/eqn_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/Examples/eqn_lib.py -------------------------------------------------------------------------------- /Examples/ladder_problem-Copy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/Examples/ladder_problem-Copy1.png -------------------------------------------------------------------------------- /Examples/ladder_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/Examples/ladder_problem.png -------------------------------------------------------------------------------- /Examples/streamlit_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/Examples/streamlit_example.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/cell_magic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/cell_magic.md -------------------------------------------------------------------------------- /docs/decorator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/decorator.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/images/Screenshot 2020-09-18 222151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/Screenshot 2020-09-18 222151.png -------------------------------------------------------------------------------- /docs/images/basic_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/basic_demo.gif -------------------------------------------------------------------------------- /docs/images/basic_demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/basic_demo1.gif -------------------------------------------------------------------------------- /docs/images/call_recorder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/call_recorder.gif -------------------------------------------------------------------------------- /docs/images/cell_magic_overrides_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/cell_magic_overrides_example.png -------------------------------------------------------------------------------- /docs/images/comments.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/comments.gif -------------------------------------------------------------------------------- /docs/images/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/comments.png -------------------------------------------------------------------------------- /docs/images/conditionals.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/conditionals.gif -------------------------------------------------------------------------------- /docs/images/conditionals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/conditionals.png -------------------------------------------------------------------------------- /docs/images/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/coverage.svg -------------------------------------------------------------------------------- /docs/images/custom_symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/custom_symbols.png -------------------------------------------------------------------------------- /docs/images/decimal_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/decimal_separator.png -------------------------------------------------------------------------------- /docs/images/decorator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/decorator.gif -------------------------------------------------------------------------------- /docs/images/decorator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/decorator.png -------------------------------------------------------------------------------- /docs/images/display_var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/display_var.png -------------------------------------------------------------------------------- /docs/images/example_papermill.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/example_papermill.gif -------------------------------------------------------------------------------- /docs/images/example_streamlit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/example_streamlit.gif -------------------------------------------------------------------------------- /docs/images/forallpeople.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/forallpeople.gif -------------------------------------------------------------------------------- /docs/images/forallpeople.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/forallpeople.png -------------------------------------------------------------------------------- /docs/images/funcs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/funcs.gif -------------------------------------------------------------------------------- /docs/images/functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/functions.png -------------------------------------------------------------------------------- /docs/images/greek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/greek.png -------------------------------------------------------------------------------- /docs/images/greeks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/greeks.gif -------------------------------------------------------------------------------- /docs/images/greeks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/greeks.png -------------------------------------------------------------------------------- /docs/images/handcalcs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/handcalcs.jpg -------------------------------------------------------------------------------- /docs/images/handcalcs_education.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/handcalcs_education.gif -------------------------------------------------------------------------------- /docs/images/handcalcs_rect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/handcalcs_rect.jpg -------------------------------------------------------------------------------- /docs/images/integration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/integration.gif -------------------------------------------------------------------------------- /docs/images/integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/integration.png -------------------------------------------------------------------------------- /docs/images/ladder_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/ladder_problem.png -------------------------------------------------------------------------------- /docs/images/long.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/long.gif -------------------------------------------------------------------------------- /docs/images/long1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/long1.png -------------------------------------------------------------------------------- /docs/images/long2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/long2.png -------------------------------------------------------------------------------- /docs/images/more_complicated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/more_complicated.gif -------------------------------------------------------------------------------- /docs/images/no_subs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/no_subs.png -------------------------------------------------------------------------------- /docs/images/outputs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/outputs.gif -------------------------------------------------------------------------------- /docs/images/parameters.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/parameters.gif -------------------------------------------------------------------------------- /docs/images/params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/params.png -------------------------------------------------------------------------------- /docs/images/prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/prime.png -------------------------------------------------------------------------------- /docs/images/quadratic_formula_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/quadratic_formula_basic.png -------------------------------------------------------------------------------- /docs/images/quadratic_formula_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/quadratic_formula_long.png -------------------------------------------------------------------------------- /docs/images/quadratic_formula_params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/quadratic_formula_params.png -------------------------------------------------------------------------------- /docs/images/quadratic_formula_precision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/quadratic_formula_precision.png -------------------------------------------------------------------------------- /docs/images/quadratic_formula_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/quadratic_formula_short.png -------------------------------------------------------------------------------- /docs/images/quadratic_formula_symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/quadratic_formula_symbolic.png -------------------------------------------------------------------------------- /docs/images/render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/render.png -------------------------------------------------------------------------------- /docs/images/short1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/short1.png -------------------------------------------------------------------------------- /docs/images/short2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/short2.png -------------------------------------------------------------------------------- /docs/images/shortandlong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/shortandlong.gif -------------------------------------------------------------------------------- /docs/images/skip_subs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/skip_subs.gif -------------------------------------------------------------------------------- /docs/images/subscripts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/subscripts.gif -------------------------------------------------------------------------------- /docs/images/subscripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/subscripts.png -------------------------------------------------------------------------------- /docs/images/symbolic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/symbolic.gif -------------------------------------------------------------------------------- /docs/images/symbolic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/symbolic1.png -------------------------------------------------------------------------------- /docs/images/symbolic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/symbolic2.png -------------------------------------------------------------------------------- /docs/images/sympy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/sympy.png -------------------------------------------------------------------------------- /docs/images/sympy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/sympy1.png -------------------------------------------------------------------------------- /docs/images/sympy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/sympy2.png -------------------------------------------------------------------------------- /docs/images/tex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/tex.gif -------------------------------------------------------------------------------- /docs/images/tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/tex.png -------------------------------------------------------------------------------- /docs/images/wrong_brackets.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/images/wrong_brackets.gif -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/overrides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/overrides.md -------------------------------------------------------------------------------- /docs/sympy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/docs/sympy.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/handcalcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/__init__.py -------------------------------------------------------------------------------- /src/handcalcs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/config.json -------------------------------------------------------------------------------- /src/handcalcs/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/constants.py -------------------------------------------------------------------------------- /src/handcalcs/conversion_funcs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/handcalcs/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/decorator.py -------------------------------------------------------------------------------- /src/handcalcs/global_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/global_config.py -------------------------------------------------------------------------------- /src/handcalcs/handcalcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/handcalcs.py -------------------------------------------------------------------------------- /src/handcalcs/handcalcs_html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/handcalcs_html/__init__.py -------------------------------------------------------------------------------- /src/handcalcs/handcalcs_html/classic/base.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/handcalcs_html/classic/base.html.j2 -------------------------------------------------------------------------------- /src/handcalcs/handcalcs_html/classic/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/handcalcs_html/classic/conf.json -------------------------------------------------------------------------------- /src/handcalcs/handcalcs_html/classic/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/handcalcs_html/classic/index.html.j2 -------------------------------------------------------------------------------- /src/handcalcs/handcalcs_html/classic/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/handcalcs_html/classic/static/style.css -------------------------------------------------------------------------------- /src/handcalcs/integrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/integrations.py -------------------------------------------------------------------------------- /src/handcalcs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/handcalcs/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/render.py -------------------------------------------------------------------------------- /src/handcalcs/sympy_kit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/src/handcalcs/sympy_kit.py -------------------------------------------------------------------------------- /test_handcalcs/#test_handcalcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/#test_handcalcs.py -------------------------------------------------------------------------------- /test_handcalcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_handcalcs/cell_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_1.py -------------------------------------------------------------------------------- /test_handcalcs/cell_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_10.py -------------------------------------------------------------------------------- /test_handcalcs/cell_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_11.py -------------------------------------------------------------------------------- /test_handcalcs/cell_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_2.py -------------------------------------------------------------------------------- /test_handcalcs/cell_2b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_2b.py -------------------------------------------------------------------------------- /test_handcalcs/cell_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_3.py -------------------------------------------------------------------------------- /test_handcalcs/cell_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_4.py -------------------------------------------------------------------------------- /test_handcalcs/cell_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_5.py -------------------------------------------------------------------------------- /test_handcalcs/cell_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_6.py -------------------------------------------------------------------------------- /test_handcalcs/cell_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_7.py -------------------------------------------------------------------------------- /test_handcalcs/cell_7b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_7b.py -------------------------------------------------------------------------------- /test_handcalcs/cell_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_8.py -------------------------------------------------------------------------------- /test_handcalcs/cell_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/cell_9.py -------------------------------------------------------------------------------- /test_handcalcs/error_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/error_cell.py -------------------------------------------------------------------------------- /test_handcalcs/function_mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/function_mocks.py -------------------------------------------------------------------------------- /test_handcalcs/test_decorator_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/test_decorator_file.py -------------------------------------------------------------------------------- /test_handcalcs/test_handcalcs_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/test_handcalcs_file.py -------------------------------------------------------------------------------- /test_handcalcs/test_pint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/test_pint.py -------------------------------------------------------------------------------- /test_handcalcs/test_render_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/test_render_file.py -------------------------------------------------------------------------------- /test_handcalcs/test_sympy_kit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/test_handcalcs/test_sympy_kit.py -------------------------------------------------------------------------------- /vis_pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/vis_pyproject.toml -------------------------------------------------------------------------------- /wiki_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorferster/handcalcs/HEAD/wiki_text.md --------------------------------------------------------------------------------