股票的交易费用:佣金<0.3% 、 过户费1元每千股 、 印花税 0.1% A股的涨跌幅限制:主板和中小板10%、创业和科创板20%每天 一、get_price获取股票数据 from jqdatasdk import * #账号是申请时所填写...
门罗币XMR挖矿教程
1、钱包下载安装,并创建一个钱包地址【注意备份助记词】 https://mymonero.com/ 2、打开挖矿平台【右上角点击help可以查看挖矿教程】 https://supportxmr.com/ 3、根据自己的系统下载挖矿软...
【标准代币发行一】solidity文件编写
erc20interface.sol pragma solidity ^0.4.20; contract ERC20Interface{ string public name; //名字 string public symbol; //符号 uint8 public decimals; //小数点位数 uint public...
简单的solidity实现代币交易
1、创建一个simpleToken.sol //使用0.4.20以上0.5以下的solidity定义合约内容 pragma solidity ^0.4.20; contract SimpleToken{ //定义mapping类型的账本信息balanceOf,内容为地址address&余额uin...
【以太坊DAPP开发】2 前端页面及web3的实现
1、完成html和css部分的代码编写 Index.html <html> <head> <title> First DApp Demo</title> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="main.css"...
【以太坊DAPP开发】1 合约编写
1、打开Remix创建合约 老版:http://remix.hubwiz.com/新版:http://remix.app.hubwiz.com/在browser下创建合约文件InfoContract.sol pragma solidity ^0.4.24; contract InfoContract { string name...
手把手教你在Linux环境下安装Python3
1、下载python wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz 2、创建存放python的文件夹 mkdir -p /usr/local/python3 3、解压到制定的文件夹 tar -zxvf Python-3.6.1.tgz -C...
解决pip install 不成功问题
40:441: execution error: The directory ‘/Users/lina/Library/Caches/pip/http’ or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions ...
Mac的python版本从2.7升级到 3.8
1、下载python https://www.python.org/downloads/release/python-381/ image.png 2、安装python 3.8.1 下载好的pkg文件进行安装,安装完成之后,python 3.8.1的默认安装路径如下:执行: ope...
Python使用阿里云镜像
临时使用 pip install -i https://mirrors.aliyun.com/pypi/simple/ 包名 以后都使用阿里云的源 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ 查看设置的结果 pip ...