You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

chat-user

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chat-user

Streamlit component that styles user lists.

1.0.0
pipPyPI
Maintainers
1

chat-user

Streamlit component that allows you to do X

Installation instructions

pip install chat-user

Usage instructions

import streamlit as st

from chat_user import chat_user

user1 = {
  "id": 1,
  "name": "user1",
  "socket": "",
  "admin": False,
}

user2 = {
  "id": 2,
  "name": "user2",
  "socket": "",
  "admin": False,
}

u1 = chat_user(user1, True)
print(u1)

u2 = chat_user(user2, False)
print(u2)

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts