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 7 months ago.
Improve this question
I'm learning Python and looking at the smtplib module.
I have seen several code examples, and many have smtplib.ehlo() or smtplib.helo()
What do they mean? What are they for?
You really need to read the RFC that defines SMTP, which is https://datatracker.ietf.org/doc/html/rfc5321 . HELO was the original introductory command (in RFC 821, in 1982!). Eventually, extensions were added that were not backward compatible. To say that you wanted to use the extension, you'd use EHLO. EHLO is now recommended for every SMTP transaction.
Related
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.
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 6 days ago.
Improve this question
I have python service project (old, not written well) to get data from third party using web socket client, which is not stable. In order to improve trouble shooting, I would like convert it c# solution.
convert python source code to c#
find all nudget packages to matches with python library
Thanks.
try to find a easy way to do conversion.
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.
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 2 years ago.
Improve this question
Is there any known way to do realtime collaboration stuff (like Google Docs) in Python (not thru the browser)? I'm working on a program, and would like to add said feature to it.
Thanks
You can try Dweet, which is a service that stores JSON data in key values pairs. You can use one of the client libraries listed on their website or you could simply make a request like so:
urllib.urlopen('https://dweet.io/dweet/for/my-thing-name?dweet=awesome')
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 9 years ago.
Improve this question
Can someone help me?
I have a project on Node.js(Cappuccino framework), and I must to use with the project my Python script.
How to do this deal?
You did not consult Google before asking. Searching for 'node.js execute python' got me HERE. I'm guessing this is what you want.
I'm guessing because you're not being very clear. Next time be more specific.