公开信息查询的一些方法,查征信,查婚姻状况,查询公开个人信息

  1. 中国执行信息公开网
    访问网址:http://zxgk.court.gov.cn/?dt_dapp=1
    注释:输入姓名或shen/份证号就可以查到一个人的失信记录,借钱之前查看是否是老赖!
    在这里插入图片描述
  2. 全国标准信息公共服务平台
    访问网址:http://www.std.gov.cn
    注释:我们生活中各行各业的行业标准,包括行业标准、团体标准、国外标准,已废止的、现行的、即将实施的都能查到。
  3. 征信中心(银行一般规定:一个月不要查询超过三次)
    访问网址:https://ipcrs.pbccrc.org.cn/
    注释:这个是用来查询自己的个人信用记录,违约、延迟还款和查询是否存在不良记录,信用不足会影响银行贷款等行为!在这里插入图片描述
  4. 中国裁判文书网
    访问网址:http://wenshu.court.gov.cn
    注释:输入你要查询的人物姓名,检索对方的名字,刑事案件,个人经济纠纷,债权债务信息一目了然!在这里插入图片描述
  5. 国家药品监督管理局
    访问网址:http://www.nmpa.gov.cn/WS04/CL2042/
    注释:输入检索项目搜索,凡是没有通过国家药监局备案的产品都是三无产品!在这里插入图片描述
  6. 商务部直销行业管理
    访问网址:http://zxgl.mofcom.gov.cn
    注释:可以查询所处单位是是传销还是直销!在这里插入图片描述
  7. 全国企业信用信息公示系统
    访问网址:http://www.gsxt.gov.cn/index.html
    注释:毕业学生找工作不知道公司靠不靠谱,可以上这里查询面试公司是不是正规公司。在这里插入图片描述
  8. 滚蛋吧!莆田系
    访问网址:https://putianxi.github.io/index.html
    注释:可以查询全国各地的莆田系医院!在这里插入图片描述
  9. 支付宝查个人婚姻状况
    查询方法:https://www.douban.com/group/topic/142322388/

企业查询

  • 天眼查
    天眼查是由柳超博士领衔开发的商业安全工具,是行业内第一家获得央行企业征信备案的机构,被誉为“普惠型浅度尽调工具”。构建完备的集数据采集、数据清洗、数据聚合、数据建模、数据产品化为一体的大数据解决方案。

在这里插入图片描述

  • 钉钉
区块链技术可以实现学生信息征信系统的优势在于其分布式账本的特性,可以确保学生信息的透明性、可靠性和不可篡改性。以下是实现该系统的一种可能的Python代码示例: 1. 导入所需的模块和库: ```python from datetime import datetime import hashlib import json import time from flask import Flask, jsonify, request ``` 2. 创建一个区块类: ```python class Block: def __init__(self, index, timestamp, data, previous_hash): self.index = index self.timestamp = timestamp self.data = data self.previous_hash = previous_hash self.hash = self.calculate_hash() def calculate_hash(self): return hashlib.sha256(str(self.index) + self.timestamp + self.data + self.previous_hash).hexdigest() ``` 3. 创建一个区块链类: ```python class Blockchain: def __init__(self): self.chain = [self.create_genesis_block()] def create_genesis_block(self): return Block(0, str(datetime.now()), "Genesis Block", "0") def get_latest_block(self): return self.chain[len(self.chain) - 1] def add_block(self, new_block): new_block.previous_hash = self.get_latest_block().hash new_block.hash = new_block.calculate_hash() self.chain.append(new_block) def is_chain_valid(self): for i in range(1, len(self.chain)): current_block = self.chain[i] previous_block = self.chain[i - 1] if current_block.hash != current_block.calculate_hash() or current_block.previous_hash != previous_block.hash: return False return True ``` 4. 创建一个Flask应用以供用户访问: ```python app = Flask(__name__) blockchain = Blockchain() @app.route('/add_student', methods=['POST']) def add_student(): data = request.get_json() index = blockchain.get_latest_block().index + 1 timestamp = str(datetime.now()) student_info = { 'index': index, 'timestamp': timestamp, 'name': data['name'], 'id': data['id'] } blockchain.add_block(Block(index, timestamp, json.dumps(student_info, sort_keys=True), blockchain.get_latest_block().hash)) response = {'message': 'Student information added successfully.'} return jsonify(response), 201 @app.route('/get_student/<int:index>', methods=['GET']) def get_student(index): block = blockchain.chain[index] student_info = json.loads(block.data) response = { 'name': student_info['name'], 'id': student_info['id'] } return jsonify(response), 200 @app.route('/is_chain_valid', methods=['GET']) def is_chain_valid(): is_valid = blockchain.is_chain_valid() response = { 'is_valid': is_valid } return jsonify(response), 200 if __name__ == '__main__': app.run(port=5000) ``` 通过以上Python代码实现了一个简单的区块链学生信息征信系统。用户可以通过发送POST请求来添加学生信息,例如: ``` URL: http://localhost:5000/add_student Request Body: {'name': 'John Doe', 'id': '123456789'} ``` 用户也可以通过发送GET请求来获取学生信息,例如: ``` URL: http://localhost:5000/get_student/1 ``` 以上代码仅为示例,实际部署时需要考虑更多的安全性和性能问题。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

OceanSec

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值