Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Crans Passwords
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nounous
Crans Passwords
Commits
8eb2e3e2
Commit
8eb2e3e2
authored
12 years ago
by
Daniel STAN
Browse files
Options
Downloads
Patches
Plain Diff
converter n'écrase plus
parent
0026f5bc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
converter.py
+11
-2
11 additions, 2 deletions
converter.py
with
11 additions
and
2 deletions
converter.py
+
11
−
2
View file @
8eb2e3e2
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import
json
import
json
import
glob
import
glob
import
os
import
os
,
sys
# Basic converter to json, avec roles nounous partout
# Basic converter to json, avec roles nounous partout
init_path
=
'
/home/dstan/crans/passwords/
'
init_path
=
'
/home/dstan/crans/passwords/
'
...
@@ -12,7 +15,13 @@ filenames = glob.glob('*.asc')
...
@@ -12,7 +15,13 @@ filenames = glob.glob('*.asc')
encoder
=
json
.
JSONEncoder
()
encoder
=
json
.
JSONEncoder
()
for
filename
in
filenames
:
for
filename
in
filenames
:
nf
=
file
(
final_path
+
filename
[:
-
4
]
+
'
.json
'
,
'
w
'
)
fname
=
final_path
+
filename
[:
-
4
]
+
'
.json
'
if
os
.
path
.
exists
(
fname
):
print
"
%s already exists, ignored
"
%
filename
continue
else
:
print
"
Traitement de %s
"
%
filename
nf
=
file
(
fname
,
'
w
'
)
nf
.
write
(
encoder
.
encode
({
'
roles
'
:[
'
nounous
'
]
\
nf
.
write
(
encoder
.
encode
({
'
roles
'
:[
'
nounous
'
]
\
,
'
contents
'
:
open
(
filename
).
read
()}))
,
'
contents
'
:
open
(
filename
).
read
()}))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment