Skip to content

Commit 81a74ef

Browse files
authored
Merge pull request #2 from Miras3210/Mira
Project Description update
2 parents 814ccfb + 7f1a477 commit 81a74ef

File tree

3 files changed

+29
-21
lines changed

3 files changed

+29
-21
lines changed

README.md

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,29 @@ _A lightweight frontend Python project_
55
## Information
66

77
This 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
```
1313
project/
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
6063
class 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
6871
def do_something():
6972
'''
70-
Performs a single-step operation.
73+
Perform a single-step operation.
7174
@author Mira
7275
'''
7376
...

public/templates/apptemplate.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
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>

pyproject.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
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."
66
authors = [
7-
{ name = "Your Name" }
7+
{ name = "Mira"},
8+
{ name = "Julien"},
9+
{ name = "Jont"},
10+
{ name = "Philip"},
11+
{ name = "Ricky P"},
12+
{ name = "Mark"}
813
]
914
version = "0.1.0"
1015
readme = "README.md"

0 commit comments

Comments
 (0)