Skip to content

Commit 86394c0

Browse files
authored
Merge pull request #1 from linda-seiter/main-newlesson
new lesson on deserialization
2 parents e6971b8 + 2d30538 commit 86394c0

File tree

15 files changed

+1045
-105
lines changed

15 files changed

+1045
-105
lines changed

.gitignore

Lines changed: 31 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,34 @@
1-
# Created by https://www.gitignore.io/api/node
2-
31
.DS_Store
4-
.vscode
2+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
3+
#
4+
# If you find yourself ignoring temporary files generated by your text editor
5+
# or operating system, you probably want to add a global ignore instead:
6+
# git config --global core.excludesfile '.gitignore_global'
7+
8+
# Ignore bundler config.
9+
/.bundle
510

6-
### Node ###
7-
# Logs
8-
logs
9-
*.log
10-
npm-debug.log*
11+
# Ignore the default SQLite database.
12+
/db/*.sqlite3
13+
/db/*.sqlite3-*
14+
15+
# Ignore all logfiles and tempfiles.
16+
/log/*
17+
/tmp/*
18+
!/log/.keep
19+
!/tmp/.keep
1120

1221
# Runtime data
1322
pids
1423
*.pid
1524
*.seed
25+
# Ignore uploaded files in development.
26+
/storage/*
27+
!/storage/.keep
28+
.byebug_history
29+
30+
# Ignore master key for decrypting credentials and more.
31+
/config/master.key
1632

1733
# Directory for instrumented libs generated by jscoverage/JSCover
1834
lib-cov
@@ -36,17 +52,15 @@ jspm_packages
3652
# Ignore bundler config.
3753
/.bundle
3854

39-
# Ignore the default SQLite database.
40-
/db/*.sqlite3
41-
/db/*.sqlite3-journal
42-
43-
# Ignore all logfiles and tempfiles.
44-
/log/*
45-
!/log/.keep
46-
/tmp
47-
4855
# Virtual env metadata
4956
.venv
5057

5158
# pytest cache
5259
.pytest_cache
60+
__pycache__
61+
62+
# database
63+
*.db
64+
instance
65+
.vscode
66+
package-lock.json

Pipfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
marshmallow = "3.20.1"
8+
importlib-metadata = "6.0.0"
9+
importlib-resources = "5.10.0"
10+
pytest = "7.2.0"
11+
12+
[requires]
13+
python_full_version = "3.11.4"

Pipfile.lock

Lines changed: 97 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)