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
!134
#160
: Include examples into Python package
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
#160
: Include examples into Python package
160_include_examples
into
dev
Overview
1
Commits
5
Pipelines
27
Changes
32
Merged
Moul
requested to merge
160_include_examples
into
dev
4 years ago
Overview
1
Commits
5
Pipelines
27
Changes
32
Expand
Define functions in examples
Allow to pass files path in f() prompt as arg
Introduce
__init__.py
in examples which imports all examples
Include
examples
folder into the Python package
Document examples usage from Python interpreter
Rework send-documents examples since
urllib
usage switch
Close
#160 (closed)
.
Edited
4 years ago
by
Moul
0
0
Merge request reports
Compare
dev
version 13
83fdb957
4 years ago
version 12
96443ee8
4 years ago
version 11
f25af8e9
4 years ago
version 10
c5d02640
4 years ago
version 9
31998fe6
4 years ago
version 8
5aeb72fb
4 years ago
version 7
d481b956
4 years ago
version 6
23f45e97
4 years ago
version 5
2cce4efa
4 years ago
version 4
13881fab
4 years ago
version 3
59456766
4 years ago
version 2
f0d3b8c1
4 years ago
version 1
55d3cb6d
4 years ago
dev (base)
and
latest version
latest version
a86b1295
5 commits,
4 years ago
version 13
83fdb957
5 commits,
4 years ago
version 12
96443ee8
4 commits,
4 years ago
version 11
f25af8e9
4 commits,
4 years ago
version 10
c5d02640
4 commits,
4 years ago
version 9
31998fe6
4 commits,
4 years ago
version 8
5aeb72fb
4 commits,
4 years ago
version 7
d481b956
4 commits,
4 years ago
version 6
23f45e97
4 commits,
4 years ago
version 5
2cce4efa
4 commits,
4 years ago
version 4
13881fab
4 commits,
4 years ago
version 3
59456766
4 commits,
4 years ago
version 2
f0d3b8c1
5 commits,
4 years ago
version 1
55d3cb6d
5 commits,
4 years ago
32 files
+
363
−
234
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
32
Search (e.g. *.vue) (Ctrl+P)
examples/__init__.py
0 → 100644
+
46
−
0
Options
"""
Copyright 2014-2021 Vincent Texier <vit@free.fr>
DuniterPy is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DuniterPy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
from
.create_public_key
import
create_public_key
from
.listen_ws2p
import
listen_ws2p
from
.load_binary_encrypted_message
import
load_binary_encrypted_message
from
.load_binary_signed_message
import
load_binary_signed_message
from
.load_cleartext_ascii_armor_message
import
load_cleartext_ascii_armor_message
from
.load_credentials_file
import
load_credentials_file
from
.load_encrypted_ascii_armor_message
import
load_encrypted_ascii_armor_message
from
.load_local_blockchain
import
load_local_blockchain
from
.load_scuttlebutt_file
import
load_scuttlebutt_file
from
.request_available_nodes
import
request_available_nodes
from
.request_data
import
request_data
from
.request_data_async
import
request_data_async
from
.request_data_elasticsearch
import
request_data_elasticsearch
from
.request_data_graphql
import
request_data_graphql
from
.request_web_socket_block
import
request_web_socket_block
from
.request_ws2p
import
request_ws2p
from
.save_and_load_private_key_file
import
save_and_load_private_key_file
from
.save_and_load_private_key_file_ewif
import
save_and_load_private_key_file_ewif
from
.save_and_load_private_key_file_pubsec
import
save_and_load_private_key_file_pubsec
from
.save_and_load_private_key_file_wif
import
save_and_load_private_key_file_wif
from
.save_binary_encrypted_message
import
save_binary_encrypted_message
from
.save_binary_signed_message
import
save_binary_signed_message
from
.save_cleartext_ascii_armor_message
import
save_cleartext_ascii_armor_message
from
.save_encrypted_ascii_armor_message
import
save_encrypted_ascii_armor_message
from
.save_revoke_document
import
save_revoke_document
from
.send_certification
import
send_certification
from
.send_identity
import
send_identity
from
.send_membership
import
send_membership
from
.send_transaction
import
send_transaction
Loading