Toggle navigation
Toggle navigation
This project
Loading...
Sign in
조수연
/
Find_your_own_personal_color
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
starbucksdolcelatte
2019-05-23 18:04:11 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
18fb4d2d2b038df4fa4f84b0ed017883e13842c4
18fb4d2d
1 parent
c8df162c
Get personal color standard from JSON file
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
getjson.py
getjson.py
0 → 100644
View file @
18fb4d2
import
json
class
GetJson
:
def
get_standard
(
self
,
filename
):
with
open
(
filename
,
mode
=
'r'
)
as
f
:
json_data
=
json
.
load
(
f
)
# 아래와 같은 계절별 기준값이 들어갈 리스트
result_list
=
[[[],[]],[[],[]],[[],[]],[[],[]]]
'''
spr[standard_1[skin[R,G,B], hair[R,G,B], eye[R,G,B]],
...
standard_n[skin[R,G,B], hair[R,G,B], eye[R,G,B]]],
smr[standard_1[skin[R,G,B], hair[R,G,B], eye[R,G,B]],
...
standard_n[skin[R,G,B], hair[R,G,B], eye[R,G,B]]],
...
wnt[standard_1[skin[R,G,B], hair[R,G,B], eye[R,G,B]],
...
standard_n[skin[R,G,B], hair[R,G,B], eye[R,G,B]]]]
'''
# iterate over each dictionary in our list
i
=
0
j
=
0
for
season
in
json_data
:
for
std
in
json_data
[
season
]:
for
body_part
in
json_data
[
season
][
std
]:
result_list
[
i
][
j
]
.
append
(
json_data
[
season
][
std
][
body_part
])
j
+=
1
i
+=
1
j
=
0
return
result_list
Please
register
or
login
to post a comment