使用Python在本地生成助记词

简介: 使用Python在本地生成助记词

新建并打开一个空文件夹

逐行 执行命令

python3 -m pip install --upgrade pip
 
pip3 install eth_account
 
pip3 install web3
 
touch acco.py

然后看到文件夹下面会有个acco.py文件

将把下面的代码粘贴到acco.py中保存。

import os
from eth_account import Account
 
if __name__ == '__main__':
    # account = Account.create()
    # print('%s,%s'%(account.address,account.key.hex()))
    file_name = input('请输入文件名:')
    if os.path.exists(file_name):
        print("文件已存在,请换个名字:")
    else:
        j=1
        n = int(input('请输入需要创建的钱包数:'))
 
        for i in range(n):
            Account.enable_unaudited_hdwallet_features()
            account, mnemonic = Account.create_with_mnemonic()
            num = '第%d个钱包' % j
            print(num)
            line =('%s,%s,%s,%d' % (account.address, account.key.hex(), mnemonic, j)) #mnemonic助记词
            print(line)
            j = j + 1
            with open(file_name+'.csv', 'a') as f: 
                f.write(line + '\n')

执行命令

python3 acco.py

然后输入要导出的文件名、生成数量。

如:


生成完毕如下:

相关文章
|
2月前
|
存储 数据可视化 数据处理
【Python篇】快速理解Python语法:全面指南
【Python篇】快速理解Python语法:全面指南
50 1
|
6月前
|
Python
python中使用双星号(``)
【6月更文挑战第11天】
35 4
|
6月前
|
存储 Python
Python处理文件的常用代码
Python处理文件的常用代码
36 0
|
7月前
|
Python
【Python进阶(四)】——魔术命令
【Python进阶(四)】——魔术命令
|
7月前
|
缓存 运维 前端开发
第十六章 Python正则表达式
第十六章 Python正则表达式
|
7月前
|
IDE Shell 开发工具
[oeasy]python0004_游乐场_和python一起玩耍_python解释器_数学运算
[oeasy]python0004_游乐场_和python一起玩耍_python解释器_数学运算
31 0
#PY小贴士# 别弄错了 Python 里的这几个运算符
会出现这样问题的同学,多半是之前用过其他的编程语言,所以习惯性地认为 ^ 是表示次方,& 是表示逻辑与(同时满足条件)、| 是表示逻辑或(满足条件之一)。
|
存储 Python
python 星号(*) 还能这么用
python 星号(*) 还能这么用
|
计算机视觉 Python
python制作字符画视频来啦~
python制作字符画视频来啦~
233 0
python制作字符画视频来啦~
|
算法 Python 容器
【干货】Python的魔数方法一览表 | Python 主题月
【干货】Python的魔数方法一览表 | Python 主题月
236 0