My Python Network Programming Notes: Difference between revisions

From GotOpinion
Jump to navigation Jump to search
initial page creation
 
m added timeit
Line 1: Line 1:
== Resources ==
== Resources ==
Python [https://docs.python.org/3/library/timeit.html timeit] module, use it to measure execution time of small code snippets


=== Books ===
=== Books ===
Line 5: Line 7:
[https://www.amazon.com/Foundations-Python-Network-Programming-Brandon/dp/1430258543/ Foundations of Python Network Programming 3rd ed. Edition] by Brandon Rhodes and associated [https://github.com/brandon-rhodes/fopnp/tree/m/py3 scripts and examples] on [https://github.com/ github]
[https://www.amazon.com/Foundations-Python-Network-Programming-Brandon/dp/1430258543/ Foundations of Python Network Programming 3rd ed. Edition] by Brandon Rhodes and associated [https://github.com/brandon-rhodes/fopnp/tree/m/py3 scripts and examples] on [https://github.com/ github]


<center>[[Python Programming|To Python Programming]]</center>
<center>[[Python programming|To Python programming]]</center>

Revision as of 20:12, 27 March 2019

Resources

Python timeit module, use it to measure execution time of small code snippets

Books

Foundations of Python Network Programming 3rd ed. Edition by Brandon Rhodes and associated scripts and examples on github

To Python programming