Telling if stories are fake or real using Python [closed] - python

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 days ago.
Improve this question
I am looking forward to building a program in python which tells if a text is fake or real. This is a project I want to start for educational purposes. For example, someone is sharing a story, the program will check the input and will determine whether the author is likely telling truth or fiction based on common patterns. I am looking for some things I can start off from, like libaries or documentation. Thanks for anyone who is willimg to help.

Related

New into programming [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 days ago.
Improve this question
How do I start a code in Python? Is there any formula/rule or so I can or have to use/follow?
I have read so much about all different types and functions in python, and still am not able to simply start with a code, although I know in my mind, what is to be considered.
I tried to start, there where error messages I didn't understand, then I went to ChatGPT and all my ideas were most of the time correct, but I can't create the right form of the code.
And somehow I am not able to get it out of all the stuff I already read.

how to built a chatbot using python? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 days ago.
Improve this question
I just want to ask that can we create a chatbot which doesn't work on give statement or command.
I am interested in creating a bot. that can know what a user is really saying or what does he need to execute. straight forward an AI powered bot.
I don't know from where to start and were to focus.
And I ask this question because google also has some limitations.
I was expecting that i need to just make a program using if else and cover the whole english dictionary and use some modules like
import bs4
import wikipedia
import pytube
and many more. I was thinking that I should scap data from these platfroms. I am not able to do that.
Now Thank You!

How to find the widest and narrowest part of an object? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 10 months ago.
Improve this question
I am new to the world of image processing. And I am working on a project, where I need to find the narrowest and widest part of a letter/object like the one I have attached to the post. I have tried many things, but I do not get proper results. Can you help with a way to approach this. I am mostly using Python and OpenCV.
Thanks in advance!

Proper way to periodically check an api for new data? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I was wondering if there is a proper way to periodically check an api for updated data. I'm looking for a more efficient solution than a while loop with a delay timer.
Are there any standard headers that can be checked to see if content was updated (in order to skip comparing previous results to the new ones?)
Additional notes
I using python at the moment but this is a broad question regarding all programming languages.
You probably want to look at the Conditional Requests spec and the Caching spec.

How to make different message windows in python? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am beginner of Python, does anyone knows how to make a different shapes of message windows in python? i want to design a better look and friendly GUI.
Thank you
I think Qt is what may be useful to you. Take a look at the documentation on QtProject homepage. Lots of tutorials can be found on the Internet. For your specific problem take a look at this SO question.

Categories