包括
import streamlit as st import # your database manager here! from cryptography.fernet import Fernet from PIL import Image, PngImagePlugin import base64, hashlib, uuid
如果需要,请使用 Streamlit 初始化会话
def initialize_session_state(): pass
主要脚本:
class BadgeConfig: def __init__(self): initialize_session_state() # Ensure badge_id is stored as a class attribute self.badge_id = None # Generate a SHA-256 hash from image data def generate_image_hash(self, image_data): return hashlib.sha256(image_data).hexdigest() # Create the encryption signature using Fernet def create_signature(self, unique_id): id_image_bytes = unique_id.encode("utf-8") # Ensure 32-byte length padded_id_image_bytes = id_image_bytes.ljust(32)[:32] encoded_key = base64.urlsafe_b64encode(padded_id_image_bytes) return Fernet(encoded_key) # Check if image was created on Canva using PngImagePlugin def is_canva_image(self, image): if isinstance(image, PngImagePlugin.PngImageFile): # Extract metadata from the image metadata = image.info # Info contains the metadata # Checking if 'Canva' appears in the 'xmp:CreatorTool' field xmp_metadata = metadata.get('XML:com.adobe.xmp', '') if "Canva" in xmp_metadata: return True return False # Display the uploaded badge and validate its dimensions and source def process_image(self, user_badge): try: image = Image.open(user_badge) WIDTH, HEIGHT = image.size if WIDTH != 1080 or HEIGHT != 1920: st.warning("This is not a valid dnakey-badge!") st.stop() # Check if the image is created on Canva if not self.is_canva_image(image): st.warning("The uploaded image is not a Canva PNG image!") st.stop() st.image(user_badge, caption="Uploaded Image", use_column_width=True) # Reset the file pointer and read the image data for hashing user_badge.seek(0) return user_badge.read() except Exception as e: st.error(f"Error processing the image: {str(e)}") st.stop() # Handle badge activation and update session def activate_badge(self, badge_usage, config_manager): if not st.session_state['toast_shown']: st.toast("**:blue[Your Id Badge is activated now!]**", icon="?") st.session_state['toast_shown'] = True if not st.session_state['usage_updated'] and badge_usage > 0: config_manager.update_usage_badge_count() st.session_state['usage_updated'] = True # Main function to create a session and handle badge logic def create_session(self, user_badge): # Process image and generate its unique ID image_data = self.process_image(user_badge) unique_id = self.generate_image_hash(image_data) # Create an encryption signature signature = self.create_signature(unique_id) # Create a UUID (version 5) based on the existing unique_id self.badge_id = str(uuid.uuid5(uuid.NAMESPACE_DNS, unique_id)) # Initialize config manager config_manager = ConfigManager(self.badge_id) badge_usage = config_manager.get_badge_usage() # Handle badge activation and session updates self.activate_badge(badge_usage, config_manager) return signature, self.badge_id # Return the badge_id as well # call the script with st.sidebar: st.title("Log-In Here:") with st.popover("Upload Your Agent Badge!", use_container_width=True): user_badge = st.file_uploader("Your Agent Badge!", type=["png"], key="agent_badge") if user_badge: # User badge is uploaded signature, badge_id = BadgeConfig().create_session(user_badge)
以上是如何使用 python Streamlit 和 Canva 创建图像认证系统!的详细内容。更多信息请关注PHP中文网其他相关文章!

本教程演示如何使用Python处理Zipf定律这一统计概念,并展示Python在处理该定律时读取和排序大型文本文件的效率。 您可能想知道Zipf分布这个术语是什么意思。要理解这个术语,我们首先需要定义Zipf定律。别担心,我会尽量简化说明。 Zipf定律 Zipf定律简单来说就是:在一个大型自然语言语料库中,最频繁出现的词的出现频率大约是第二频繁词的两倍,是第三频繁词的三倍,是第四频繁词的四倍,以此类推。 让我们来看一个例子。如果您查看美国英语的Brown语料库,您会注意到最频繁出现的词是“th

本文解释了如何使用美丽的汤库来解析html。 它详细介绍了常见方法,例如find(),find_all(),select()和get_text(),以用于数据提取,处理不同的HTML结构和错误以及替代方案(SEL)

处理嘈杂的图像是一个常见的问题,尤其是手机或低分辨率摄像头照片。 本教程使用OpenCV探索Python中的图像过滤技术来解决此问题。 图像过滤:功能强大的工具 图像过滤器

Python是数据科学和处理的最爱,为高性能计算提供了丰富的生态系统。但是,Python中的并行编程提出了独特的挑战。本教程探讨了这些挑战,重点是全球解释

本文比较了Tensorflow和Pytorch的深度学习。 它详细介绍了所涉及的步骤:数据准备,模型构建,培训,评估和部署。 框架之间的关键差异,特别是关于计算刻度的

本教程演示了在Python 3中创建自定义管道数据结构,利用类和操作员超载以增强功能。 管道的灵活性在于它能够将一系列函数应用于数据集的能力,GE

Python 对象的序列化和反序列化是任何非平凡程序的关键方面。如果您将某些内容保存到 Python 文件中,如果您读取配置文件,或者如果您响应 HTTP 请求,您都会进行对象序列化和反序列化。 从某种意义上说,序列化和反序列化是世界上最无聊的事情。谁会在乎所有这些格式和协议?您想持久化或流式传输一些 Python 对象,并在以后完整地取回它们。 这是一种在概念层面上看待世界的好方法。但是,在实际层面上,您选择的序列化方案、格式或协议可能会决定程序运行的速度、安全性、维护状态的自由度以及与其他系

Python的statistics模块提供强大的数据统计分析功能,帮助我们快速理解数据整体特征,例如生物统计学和商业分析等领域。无需逐个查看数据点,只需查看均值或方差等统计量,即可发现原始数据中可能被忽略的趋势和特征,并更轻松、有效地比较大型数据集。 本教程将介绍如何计算平均值和衡量数据集的离散程度。除非另有说明,本模块中的所有函数都支持使用mean()函数计算平均值,而非简单的求和平均。 也可使用浮点数。 import random import statistics from fracti


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

WebStorm Mac版
好用的JavaScript开发工具

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中

禅工作室 13.0.1
功能强大的PHP集成开发环境