-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthors_recommendations.txt
More file actions
35 lines (35 loc) · 2.83 KB
/
authors_recommendations.txt
File metadata and controls
35 lines (35 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Libraries:
perf_counter: performance timer
Pingo: uniform API to program devices like the Raspberry Pi,pcDuino
Functional Programming HOWTO: https://docs.python.org/3/howto/functional.html
Design Patterns: Elements of Reusable Object-Oriented Software. (Addison-Wesley, 1995)
Alex Martelli DP Talk: https://pyvideo.org/europython-2011/python-design-patterns.html
Learning Python Design Patterns: by Gennadiy Zlobin (Packt, 2013)
Decorators blog: http://blog.dscpl.com.au/2014/01/how-you-implemented-your-python.html
Decorators examples: https://pypi.org/project/decorator/
Vector space model: https://en.wikipedia.org/wiki/Vector_space_model
Vector space modeling nlp python lib gemsim: https://pypi.org/project/gensim/
python module of the week: https://pymotw.com/3/
Tkinter GUI toolkit
Classy Class-Based Views: http://ccbv.co.uk/
cpython code with different versions: https://hg.python.org/cpython/file/3.4/Lib/_collections_abc.py
Python super() use cases article: https://rhettinger.wordpress.com/2011/05/26/super-considered-super/
object oriented thinking: Grady Booch’s Object Oriented Analysis and Design
coroutines: http://www.dabeaz.com/coroutines/
Case study: generators in a database conversion utility
https://github.com/fluentpython/isis2json
itertools module documentation: https://docs.python.org/3/library/itertools.html
itertools Recipes: https://docs.python.org/3/library/itertools.html#itertools-recipes
From ISIS to CouchDB: Databases and Data Models for Bibliographic Records: https://journal.code4lib.org/articles/4893
PyCon US 2013 keynote: https://pyvideo.org/pycon-us-2013/keynote-3.html
David Beazley generators tutorials: http://www.dabeaz.com/generators/ http://www.dabeaz.com/coroutines/ http://www.dabeaz.com/finalgenerator/
James Powell: https://code.activestate.com/recipes/tags/coroutine/
ActiveState Code Recipies: https://code.activestate.com/recipes/
Yield From examples: https://www.cosc.canterbury.ac.nz/greg.ewing/python/yield-from/yield_from.html
Effective Python coroutines: https://effectivepython.com/2015/03/10/consider-coroutines-to-run-many-functions-concurrently
Conway's Game of Life: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life
Conway's Game of Life PYthon Code: https://gist.github.com/ramalho/da5590bc38c973408839
Comparing two CSV files using Python by Peter Otten: https://mail.python.org/pipermail/tutor/2015-February/104200.html
Rock-Paper-Scissors game in Ian Ward’s Iterables, Iterators and Generators: https://nbviewer.jupyter.org/github/wardi/iterables-iterators-generators/blob/master/Iterables,%20Iterators,%20Generators.ipynb
Guido van Rossum The difference between yield and yield-from: https://groups.google.com/g/python-tulip/c/bmphRrryuFk/m/aB45sEJUomYJ?pli=1
Ashish Gupta’s Writing a Discrete Event Simulation: ten easy lessons: https://users.cs.northwestern.edu/~agupta/_projects/networking/QueueSimulation/mm1.html