Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DuniterPy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
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
clients
python
DuniterPy
Merge requests
!103
Small changes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Small changes
104_contributing
into
dev
Overview
2
Commits
2
Pipelines
2
Changes
3
Merged
Moul
requested to merge
104_contributing
into
dev
5 years ago
Overview
2
Commits
2
Pipelines
2
Changes
3
Expand
#104 (closed)
: Rename file to
CONTRIBUTING.md
to be recognised by GitLab
#77 (closed)
,
#123 (closed)
: Improve examples usages, and exit.
Edited
4 years ago
by
Moul
0
0
Merge request reports
Compare
dev
version 1
32e6df46
5 years ago
dev (base)
and
latest version
latest version
ffbffd02
2 commits,
5 years ago
version 1
32e6df46
1 commit,
5 years ago
3 files
+
4
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
examples/load_credentials_file.py
+
2
−
7
Options
@@ -3,14 +3,9 @@ import sys
from
duniterpy.key
import
SigningKey
if
__name__
==
"
__main__
"
:
if
len
(
sys
.
argv
)
<
2
:
print
(
"""
Usage:
python load_credentials_file.py FILEPATH
"""
)
print
(
"
Usage: python load_credentials_file.py FILEPATH
"
)
sys
.
exit
(
1
)
# capture filepath argument
credentials_filepath
=
sys
.
argv
[
1
]
Loading