Skip to content
Snippets Groups Projects
Commit 0131740f authored by Sébastien DA ROCHA's avatar Sébastien DA ROCHA Committed by Moul
Browse files

[mod] #100: Create a silkaj package for pip installation:

- move sources in silkaj folder
- import silkaj from the package
- remove executable rights on silkaj/silkaj.py
parent 36a15c0c
No related branches found
No related tags found
1 merge request!80100 pip install
src/silkaj.py
\ No newline at end of file
from tools import get_publickey_from_seed, b58_decode, xor_bytes, message_exit
from silkaj.tools import get_publickey_from_seed, b58_decode, xor_bytes, message_exit
from nacl import encoding
import nacl.hash
from scrypt import hash
......
import urllib
from tabulate import tabulate
from auth import auth_method
from tools import get_publickey_from_seed, message_exit, sign_document_from_seed
from network_tools import get_current_block, post_request
from license import license_approval
from constants import NO_MATCHING_ID
from wot import is_member, get_pubkey_from_id, get_pubkeys_from_id,\
from silkaj.auth import auth_method
from silkaj.tools import get_publickey_from_seed, message_exit, sign_document_from_seed
from silkaj.network_tools import get_current_block, post_request
from silkaj.license import license_approval
from silkaj.constants import NO_MATCHING_ID
from silkaj.wot import is_member, get_pubkey_from_id, get_pubkeys_from_id,\
get_uid_from_pubkey
......
......@@ -5,10 +5,10 @@ from collections import OrderedDict
from tabulate import tabulate
from operator import itemgetter
from wot import get_uid_from_pubkey
from network_tools import discover_peers, get_request, best_node, get_current_block
from tools import convert_time, get_currency_symbol, message_exit
from constants import NO_MATCHING_ID
from silkaj.wot import get_uid_from_pubkey
from silkaj.network_tools import discover_peers, get_request, best_node, get_current_block
from silkaj.tools import convert_time, get_currency_symbol, message_exit
from silkaj.constants import NO_MATCHING_ID
def currency_info(ep):
......
File moved
File moved
from network_tools import get_request, get_current_block
from tools import get_currency_symbol, get_publickey_from_seed
from auth import auth_method
from wot import check_public_key
from silkaj.network_tools import get_request, get_current_block
from silkaj.tools import get_currency_symbol, get_publickey_from_seed
from silkaj.auth import auth_method
from silkaj.wot import check_public_key
def cmd_amount(ep, cli_args):
......
File moved
......@@ -3,17 +3,16 @@
from sys import stderr
from commandlines import Command
from tx import send_transaction
from money import cmd_amount
from cert import send_certification
from commands import currency_info, difficulties, set_network_sort_keys,\
from silkaj.tx import send_transaction
from silkaj.money import cmd_amount
from silkaj.cert import send_certification
from silkaj.commands import currency_info, difficulties, set_network_sort_keys,\
network_info, argos_info, list_issuers
from tools import message_exit
from network_tools import check_port, best_node
from wot import received_sent_certifications, id_pubkey_correspondence
from auth import generate_auth_file
from license import display_license
from constants import SILKAJ_VERSION, G1_SYMBOL, GTEST_SYMBOL, G1_DEFAULT_ENDPOINT, G1_TEST_DEFAULT_ENDPOINT
from silkaj.tools import message_exit
from silkaj.wot import received_sent_certifications, id_pubkey_correspondence
from silkaj.auth import generate_auth_file
from silkaj.license import display_license
from silkaj.constants import SILKAJ_VERSION, G1_SYMBOL, GTEST_SYMBOL, G1_DEFAULT_ENDPOINT, G1_TEST_DEFAULT_ENDPOINT
def usage():
......
......@@ -3,7 +3,7 @@ from nacl import encoding, signing, hash, bindings
from re import compile, search
from sys import exit
from constants import G1_SYMBOL, GTEST_SYMBOL
from silkaj.constants import G1_SYMBOL, GTEST_SYMBOL
def convert_time(timestamp, kind):
......
......@@ -5,13 +5,13 @@ from sys import exit
import urllib
from tabulate import tabulate
from network_tools import get_request, post_request, get_current_block
from tools import get_currency_symbol, get_publickey_from_seed, sign_document_from_seed,\
from silkaj.network_tools import get_request, post_request, get_current_block
from silkaj.tools import get_currency_symbol, get_publickey_from_seed, sign_document_from_seed,\
check_public_key, message_exit
from auth import auth_method
from wot import get_uid_from_pubkey
from money import get_last_ud_value, get_amount_from_pubkey
from constants import NO_MATCHING_ID
from silkaj.auth import auth_method
from silkaj.wot import get_uid_from_pubkey
from silkaj.money import get_last_ud_value, get_amount_from_pubkey
from silkaj.constants import NO_MATCHING_ID
def send_transaction(ep, cli_args):
......
......@@ -3,9 +3,9 @@ from time import time
from tabulate import tabulate
from collections import OrderedDict
from network_tools import get_request
from tools import message_exit, check_public_key, convert_time
from constants import NO_MATCHING_ID
from silkaj.network_tools import get_request
from silkaj.tools import message_exit, check_public_key, convert_time
from silkaj.constants import NO_MATCHING_ID
def get_sent_certifications(certs, time_first_block, params):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment