File tree Expand file tree Collapse file tree 3 files changed +29
-21
lines changed Expand file tree Collapse file tree 3 files changed +29
-21
lines changed Original file line number Diff line number Diff line change @@ -5,26 +5,29 @@ _A lightweight frontend Python project_
55## Information
66
77This project uses [ Pyodide] ( https://pyodide.org ) to run Python directly in the browser using WebAssembly (WASM).
8- No JavaScript is required — the frontend is written entirely in Python and HTML/CSS.
8+ Almost no JavaScript is required — the frontend is written entirely in Python and HTML/CSS.
99
1010## Current Project Structure
1111
1212```
1313project/
14- │ .gitignore
15- │ .pre-commit-config.yaml
16- │ LICENSE.txt
17- │ pyproject.toml
18- │ README.md
19- │ template_README.md
20- ├───.github/
21- │ └───workflows/
22- │ lint.yaml
23- ├───samples/
24- │ Pipfile
25- │ pyproject.toml
26- └───src/
27- main.py
14+ │ .gitignore
15+ │ build.py
16+ │ README.md
17+ │
18+ ├─ .github/workflows/
19+ │ lint.yaml
20+ │
21+ ├─ public/
22+ │ index.html
23+ │ templates/apptemplate.html
24+ │
25+ ├─ samples/
26+ │ Pipfile
27+ │
28+ └─ src/
29+ hello.py
30+ main.py
2831```
2932
3033## Dev Code Checks
@@ -59,15 +62,15 @@ pre-commit run check-toml --all-files
5962``` py
6063class ClassName :
6164 '''
62- Handles user input and validation.
65+ Handle user input and validation.
6366 @author Mira
6467 '''
6568 ...
6669
6770# Short function description - Author
6871def do_something ():
6972 '''
70- Performs a single-step operation.
73+ Perform a single-step operation.
7174 @author Mira
7275 '''
7376 ...
Original file line number Diff line number Diff line change 4242 < div class ="console ">
4343 Image editor v2.1 $ ping< br >
4444 pong!< br >
45- Image editor v2.1 $
45+ Image editor v2.1 $
4646 </ div >
4747 </ body >
4848</ html >
Original file line number Diff line number Diff line change 11[project ]
22# This section contains metadata about your project.
33# Don't forget to change the name, description, and authors to match your project!
4- name = " code-jam-template "
5- description = " Add your description here "
4+ name = " command-line-image-editor "
5+ description = " A simple yet interesting image editor. "
66authors = [
7- { name = " Your Name" }
7+ { name = " Mira" },
8+ { name = " Julien" },
9+ { name = " Jont" },
10+ { name = " Philip" },
11+ { name = " Ricky P" },
12+ { name = " Mark" }
813]
914version = " 0.1.0"
1015readme = " README.md"
You can’t perform that action at this time.
0 commit comments