Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnnymo87/project.fast.ai
A collection of little utility modules that I'm developing while taking the course.fast.ai MOOC
https://github.com/johnnymo87/project.fast.ai
Last synced: 1 day ago
JSON representation
A collection of little utility modules that I'm developing while taking the course.fast.ai MOOC
- Host: GitHub
- URL: https://github.com/johnnymo87/project.fast.ai
- Owner: johnnymo87
- License: mit
- Created: 2022-08-01T12:00:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-08T13:32:31.000Z (about 2 years ago)
- Last Synced: 2024-10-18T20:17:08.568Z (20 days ago)
- Language: Python
- Homepage: https://course.fast.ai/
- Size: 45.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# project.fast.ai
This code base is a collection of little utility modules that I'm developing while taking [the course.fast.ai MOOC](https://course.fast.ai/).## Table of contents
* [Photo Sandbox](photo_sandbox/README.md)## Install
For the most part, how to install the code is project-specific, so see project-specific README files.## Run
For the most part, how to run the code is project-specific, so see project-specific README files.* Run the auto formatter.
```console
poetry run pre-commit run --all-files
```
* For more usage instructions, see [the pre-commit documentation](https://pre-commit.com/).## Debug
* Documentation [here](https://docs.python.org/3/library/pdb.html).
* Set a breakpoint with `import pdb; pdb.set_trace()`.
* If you're using vim with [a project-specific .vimrc](https://andrew.stwrt.ca/posts/project-specific-vimrc/), you can type this with `db`.
* Show where you are with `list`.
* Continue with `continue`.
* Quit with `quit`.## Add a new python package
This app makes use of [`poetry`](https://python-poetry.org/) to manage packages. See docs there for how to add packages.