A million requests per second with Python

2017-06-27 Thread Sam Chats
https://medium.freecodecamp.com/million-requests-per-second-with-python-95c137af319 -- https://mail.python.org/mailman/listinfo/python-list

How to build a simple neural network in 9 lines of Python code

2017-06-27 Thread Sam Chats
https://medium.com/technology-invention-and-more/how-to-build-a-simple-neural-network-in-9-lines-of-python-code-cc8f23647ca1 -- https://mail.python.org/mailman/listinfo/python-list

School Management System in Python

2017-07-05 Thread Sam Chats
this does a lot more than perhaps all of them, while having a command line REPL interface. One neat thing I wanted to mention is that this project has absolutely no third-party dependencies. https://github.com/schedutron/S-Koo-L Sam Chats -- https://mail.python.org/mailman/listinfo/python-list

Re: School Management System in Python

2017-07-05 Thread Sam Chats
Check message Sorry for this message. Sam -- https://mail.python.org/mailman/listinfo/python-list

Re: School Management System in Python

2017-07-05 Thread Sam Chats
Thanks for your suggestions. I would've not used pickle had I been aware about other tools while developing this. I was thinking about migrating to sqlite3. How about that? And yes, I need more comprehanesive documentation. Will work on that soon. Thanks, Sam Chats -- https://mail.pytho

Re: School Management System in Python

2017-07-05 Thread Sam Chats
On Wednesday, July 5, 2017 at 6:56:06 PM UTC+5:30, Thomas Nyberg wrote: > On 07/05/2017 03:18 PM, YOUR_NAME_HERE wrote: > > On Wed, 5 Jul 2017 13:02:36 + (UTC) YOUR_NAME_HERE wrote: > >> I can use either tsv or csv. Which one would be better? > > > > > > Some people complain that tsv has prob

How to write raw strings to Python

2017-07-05 Thread Sam Chats
I want to write, say, 'hello\tworld' as-is to a file, but doing f.write('hello\tworld') makes the file look like: hello world How can I fix this? Thanks in advance. Sam -- https://mail.python.org/mailman/listinfo/python-list

Re: How to write raw strings to Python

2017-07-05 Thread Sam Chats
ampaign=sig-email&utm_content=webmail> > Virus-free. > www.avast.com > <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> > > On Wed, Jul 5, 2017 a

Re: How to write raw strings to Python

2017-07-05 Thread Sam Chats
On Wednesday, July 5, 2017 at 9:09:18 PM UTC+5:30, Grant Edwards wrote: > On 2017-07-05, Sam Chats wrote: > > > I want to write, say, 'hello\tworld' as-is to a file, but doing > > f.write('hello\tworld') makes the file look like: > [...] > > How can

Re: poplib's POP3_SSL not downloading latest email

2017-07-08 Thread Sam Chats
On Sat, 8 Jul 2017 08:48:52 + (UTC), Sm Chats wrote: > I have a small script which checks whether a mail sent by me to myself(i.e > delivered to myself) has the same body as the sent message. The problem is > that the sent message (sent by SMTP) isn't received by the POP3_SSL object > I'm us

Re: poplib's POP3_SSL not downloading latest email

2017-07-08 Thread Sam Chats
On Sat, 08 Jul 2017 20:08:12 +1000, Steve D'Aprano wrote: > On Sat, 8 Jul 2017 06:48 pm, Sm Chats wrote: > > > I have a small script which checks whether a mail sent by me to myself(i.e > > delivered to myself) has the same body as the sent message. The problem is > > that the sent message (sent b

Synchronization Primitives in Python

2017-08-17 Thread Sam Chats
A good introductory article on synchronizing threads in Python: https://hackernoon.com/synchronization-primitives-in-python-564f89fee732 -- https://mail.python.org/mailman/listinfo/python-list