NLP: How to tell wether a text is talking about which topic - python

I am a noob in python I was just making a website for studying for children so, I wanted the student to enter their response to a question and then their text response is reviewed and then it checks whether the child has given a response on a particular topic and whether the answer talks about a few key points, so how do I make it and implement it using Django, btw I started web dev a week ago so I am very new to this. Please help me!
thank you !!

You can check the Django tutorial. It will help you understand how django works, and the tutorial could lead you close to your need.

Related

Is it possible to save the matterpoll responses to a file automatically using python?

I need to make a chat bot which posts a poll in a mattermost chat and collects/saves the responses. I want to know if there is a way to use the matterpoll plugin to do this or if I should use some other way of creating a chat bot. Please let me know if there is an easy way to do this.
These are some of the resources I found related to this. I could not find one that has a capability to save the responses. Please let me know if there is a way to do that in the following resources and I clearly missed it
To create a chat bot using err bot - https://mattermost.com/blog/how-to-create-your-chatops-bot/#adding-features
To create plugins for a mattermost bot - https://mmpy-bot.readthedocs.io/en/latest/plugins.html
matterpoll - https://github.com/matterpoll/matterpoll
The following two links discuss ways to save the poll answer. But I could not figure how to use them
4. link1
5. link2
I have never done anything like this before. I would greatly appreciate it if you could point me in a good direction. Thank you!

Question about Web Scraping - with Discord

I want to create discord bot that will get some information through the Internet from google docs for example. I was searching a lot for any information about this problem but I could not find anything. I hope somebody will help me a bit with that issue. Thanks a lot to helpful people!
i write it on python

Need help in understand Django-Facebook API and the Post extraction from a profile using Python2

I am working on my machine learning project where I am in a great need to access the textual posts of the people from Facebook, of course with permission, and then process it to find the best personality traits.
I am struggling to find a way to merge my application with something that can give me the post of the people from their profiles. Hence, I found something in the documentation of the Django-Facebook API. Here is the link for the documentation.
Here what I am not able to understand is how can I use this for extracting the post of the people? Can anyone give me a small example that can be helpful in understanding what I can do to extract the text from the people profile and use it in my application.

Creating Gui for python client server

Help needed with my python project.
Unable to get the code for the client or server implemented with the Gui i created.
it is one based on book seller where the client is the buyer and the server is the seller.
Code written so far could be supplied upon request.
please and thanks :)
If you want to develop a GUI then please visit this question. Here you can read different opinions regarding how to develop a GUI with python.
I personally would suggest you wxPython.
Also, upon googling for a second I found this link , which maybe be helpful.

Unable to get Python to POST on html

I've been trying to get my python code to post. I have tried using the Postman Plugin to test the post method and I would get a 405 method error. I am planning to have the user post the information and have it displayed.
Currently if I press submit I would get a error loading page, changing the form to get results in the submit button working and returning to the previous page. If I change the handler to post the screen would instantly display '405 Method Not Allowed'. I've looked through the Google App Engine logs and there are no errors. Can someone help me with what I done wrong and advise me on how to the post method functioning?
Thanks for the time.
You're getting '405 method not allowed' because the POST is going to the same url that served up the page, but the handler for that path (MainPage) does not have a post method.
That's the same diagnosis that you were given when you asked this question two hours earlier under a different user id.
Stepping back further to address the "what have I done wrong" question: It seems to me that you've gotten quite far along before discovering that what you have doesn't work. So far along that the example is cluttered with irrelevant code that's unrelated to the failure. That makes it harder for you for figure this out for yourself, and it makes it more difficult for people here to help you.
In this situation, you help yourself (and help others help you) by seeing how much code you can eliminate while still demonstrating the failure.

Categories