PyChatVerse is an innovative and user-friendly chat application package for Python, designed to provide a seamless real-time communication experience. With a focus on simplicity, interactivity, and versatility, PyChatVerse enables users to engage in both global and private chat rooms, making it an ideal solution for a wide range of communication needs.
Global Chat: Immerse yourself in the lively atmosphere of the global chat room, where users from various backgrounds and locations converge to share thoughts, opinions, and experiences.
Private Chat Rooms: Foster more intimate and exclusive conversations by creating or joining private chat rooms, enabling focused interactions with specific individuals.
Stylized Input Prompts: Enjoy an aesthetically pleasing and user-friendly input interface that enhances the chat experience by offering visually appealing prompts.
Real-Time Message Updates: Stay connected and engaged with instant updates on new messages, ensuring that you’re always part of the ongoing conversations.
Feedback Integration: Provide valuable insights and suggestions by seamlessly sharing your feedback with the developers from within the application.
pip
command:pip install PyChatVerse
import PyChatVerse as py
# Initialize the chat application and display the main menu
chat = py.pychatverse(start=True)
output:
╭───────────────────────────────╮
│ Py-ChatVerse (Home)
╰───────────────────────────────╯
1. Global Chat. 🌎
2. Private Chat. 🔒
3. Feedback. 💬
4. Help. 📚
5. Exit. ❌
╭───────────────────────────────╮
│ Enter your Choice:
You can easily join the global chat using the PyChatVerse package.
import pychatverse as py
chat = py.pychatverse()
# Join the global chat with user input
chat.GlobalChat()
ouput:
╭───────────────────────────────╮
│ Enter Your Name: Dayanidi
╰───────────────────────────────╯
Successfully Joined Global Room.
import pychatverse as py
chat = py.pychatverse()
# Join the global chat with a specified name
chat.GlobalChat(name = "Dayanidi")
ouput:
Successfully Joined Global Room.
Now open chat windows instantly and start engaging in the global chat with other users.
import pychatverse as py
chat = py.pychatverse()
chat.PrivateChat()
output:
╭───────────────────────────────╮
│ Py-ChatVerse (Room Control)
╰───────────────────────────────╯
1. Create a New Room. ➕
2. Join an Existing Room. ➡️
3. Go Back. ↩️
4. Exit. ❌
╭───────────────────────────────╮
│ Enter your Choice:
chat.PrivateChat(creater=True)
output:
╭───────────────────────────────╮
│ Enter Your Name: Surya
╰───────────────────────────────╯
╭───────────────────────────────╮
│ Enter your Room ID: 123@
╰───────────────────────────────╯
Successfully Room 123@ created
Now open chat windows instantly and start engaging in the global chat with other users.
chat.PrivateChat(joiner=True)
output:
╭───────────────────────────────╮
│ Enter Your Name: Surya
╰───────────────────────────────╯
╭───────────────────────────────╮
│ Enter your Room ID: 123@
╰───────────────────────────────╯
Successfully Room 123@ Joined
Now open chat windows instantly and start engaging in the global chat with other users.
# Create a private chat room as the creator
chat.PrivateChat(creater=True,name="Surya",RoomID="123@")
# Join a private chat room as a participant
chat.PrivateChat(joiner=True,name="Daya",RoomID="123@")
# Provide feedback without a message
chat.feedback()
# Provide feedback with a message
chat.feedback(message="yeah! it's Good")
# Display the help message
chat.help()
Now you can explore and use the various features of PyChatVerse to engage in real-time chats and communication!
For questions, feedback, and inquiries, please email dayanidigv954@gmail.com.