René's URL Explorer Experiment


Title: 10. Further object-oriented features — Object-oriented Programming documentation

direct link

Domain: object-oriented-python.github.io

Links:

https://object-oriented-python.github.io/index.html
Bookhttps://object-oriented-python.github.io/index.html
Videoshttps://object-oriented-python.github.io/videos.html
Exerciseshttps://object-oriented-python.github.io/exercises.html
Installationhttps://object-oriented-python.github.io/installation.html
https://object-oriented-python.github.io/10_further_object-oriented_features.html#further-object-oriented-features
https://object-oriented-python.github.io/10_further_object-oriented_features.html#decorators
watch this video on Panoptohttps://imperial.cloud.panopto.eu/Panopto/Pages/Viewer.aspx?id=75d2f2a5-5ab9-464b-8eee-ae1c00dbf366
Chapter 9https://object-oriented-python.github.io/9_trees_and_directed_acyclic_graphs.html#trees
functools.singledispatch()https://docs.python.org/3/library/functools.html#functools.singledispatch
single dispatch functionhttps://object-oriented-python.github.io/9_trees_and_directed_acyclic_graphs.html#term-single-dispatch-function
syntactic sugarhttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-syntactic-sugar
Exercise 9.6https://object-oriented-python.github.io/9_trees_and_directed_acyclic_graphs.html#ex-expr
decoratorhttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-decorator
https://object-oriented-python.github.io/10_further_object-oriented_features.html#id5
Listing 10.1https://object-oriented-python.github.io/10_further_object-oriented_features.html#eg-decorator
functools.wraps()https://docs.python.org/3/library/functools.html#functools.wraps
help()https://docs.python.org/3/library/functions.html#help
https://object-oriented-python.github.io/10_further_object-oriented_features.html#decorators-which-take-arguments
functools.wraps()https://docs.python.org/3/library/functools.html#functools.wraps
functools.wraps()https://docs.python.org/3/library/functools.html#functools.wraps
https://object-oriented-python.github.io/10_further_object-oriented_features.html#the-property-decorator
Chapter 3https://object-oriented-python.github.io/3_objects.html#objects
Polynomialhttps://object-oriented-python.github.io/example_code.html#example_code.polynomial.Polynomial
degree()https://object-oriented-python.github.io/example_code.html#example_code.polynomial.Polynomial.degree
encapsulationhttps://object-oriented-python.github.io/3_objects.html#term-encapsulation
degree()https://object-oriented-python.github.io/example_code.html#example_code.polynomial.Polynomial.degree
methodhttps://object-oriented-python.github.io/3_objects.html#term-method
data attributehttps://object-oriented-python.github.io/3_objects.html#term-data-attribute
polynomialhttps://object-oriented-python.github.io/example_code.html#module-example_code.polynomial
propertyhttps://docs.python.org/3/library/functions.html#property
propertyhttps://docs.python.org/3/library/functions.html#property
attributehttps://object-oriented-python.github.io/3_objects.html#term-attribute
functoolshttps://docs.python.org/3/library/functools.html#module-functools
https://object-oriented-python.github.io/10_further_object-oriented_features.html#the-functools-module
functoolshttps://docs.python.org/3/library/functools.html#module-functools
Python Standard Libraryhttps://docs.python.org/3/library/index.html#library-index
higher order functionshttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-higher-order-function
functoolshttps://docs.python.org/3/library/functools.html#module-functools
functools.cachehttps://docs.python.org/3/library/functools.html#functools.cache
functools.lru_cachehttps://docs.python.org/3/library/functools.html#functools.lru_cache
functools.singledispatchhttps://docs.python.org/3/library/functools.html#functools.singledispatch
Section 9.4.3https://object-oriented-python.github.io/9_trees_and_directed_acyclic_graphs.html#single-dispatch
single dispatch functionhttps://object-oriented-python.github.io/9_trees_and_directed_acyclic_graphs.html#term-single-dispatch-function
https://object-oriented-python.github.io/10_further_object-oriented_features.html#abstract-base-classes
watch this video on Panoptohttps://imperial.cloud.panopto.eu/Panopto/Pages/Viewer.aspx?id=9a9b872a-9499-40b7-a228-ae1c00dbf947
numbers.Numberhttps://docs.python.org/3/library/numbers.html#numbers.Number
example_code.groups.Grouphttps://object-oriented-python.github.io/example_code.html#example_code.groups.Group
Chapter 9https://object-oriented-python.github.io/9_trees_and_directed_acyclic_graphs.html#trees
abstract base classeshttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-abstract-base-class
abchttps://docs.python.org/3/library/abc.html#module-abc
https://object-oriented-python.github.io/10_further_object-oriented_features.html#the-abc-module
abchttps://docs.python.org/3/library/abc.html#module-abc
Standard Libraryhttps://docs.python.org/3/library/index.html#library-index
abchttps://docs.python.org/3/library/abc.html#module-abc
ABChttps://docs.python.org/3/library/abc.html#abc.ABC
ABChttps://docs.python.org/3/library/abc.html#abc.ABC
ABChttps://docs.python.org/3/library/abc.html#abc.ABC
https://object-oriented-python.github.io/10_further_object-oriented_features.html#abstract-methods
Chapter 7https://object-oriented-python.github.io/7_inheritance.html#inheritance
Grouphttps://object-oriented-python.github.io/example_code.html#example_code.groups.Group
class attributehttps://object-oriented-python.github.io/7_inheritance.html#term-class-attribute
example_code.groups_abchttps://object-oriented-python.github.io/example_code.html#module-example_code.groups_abc
example_code.groupshttps://object-oriented-python.github.io/example_code.html#module-example_code.groups
ABChttps://docs.python.org/3/library/abc.html#abc.ABC
Grouphttps://object-oriented-python.github.io/example_code.html#example_code.groups_abc.Group
ABChttps://docs.python.org/3/library/abc.html#abc.ABC
child classeshttps://object-oriented-python.github.io/7_inheritance.html#term-child-class
abstractmethodhttps://docs.python.org/3/library/abc.html#abc.abstractmethod
https://object-oriented-python.github.io/10_further_object-oriented_features.html#id6
Listing 10.2https://object-oriented-python.github.io/10_further_object-oriented_features.html#groups-abc
Grouphttps://object-oriented-python.github.io/example_code.html#example_code.groups_abc.Group
ABChttps://docs.python.org/3/library/abc.html#abc.ABC
Grouphttps://object-oriented-python.github.io/example_code.html#example_code.groups_abc.Group
passhttps://docs.python.org/3/reference/simple_stmts.html#pass
abstractmethodhttps://docs.python.org/3/library/abc.html#abc.abstractmethod
Grouphttps://object-oriented-python.github.io/example_code.html#example_code.groups_abc.Group
ABChttps://docs.python.org/3/library/abc.html#abc.ABC
abstractmethodhttps://docs.python.org/3/library/abc.html#abc.abstractmethod
abstractmethodhttps://docs.python.org/3/library/abc.html#abc.abstractmethod
propertyhttps://docs.python.org/3/library/functions.html#property
abstractmethodhttps://docs.python.org/3/library/abc.html#abc.abstractmethod
Grouphttps://object-oriented-python.github.io/example_code.html#example_code.groups_abc.Group
https://object-oriented-python.github.io/10_further_object-oriented_features.html#duck-typing
duck typinghttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-duck-typing
https://object-oriented-python.github.io/10_further_object-oriented_features.html#virtual-subclasses
watch this video on Panoptohttps://imperial.cloud.panopto.eu/Panopto/Pages/Viewer.aspx?id=fd48b1c1-8e81-4c6d-8415-ae1c00dc07eb
Chapter 3https://object-oriented-python.github.io/3_objects.html#objects
numbers.Numberhttps://docs.python.org/3/library/numbers.html#numbers.Number
floathttps://docs.python.org/3/library/functions.html#float
numbers.Numberhttps://docs.python.org/3/library/numbers.html#numbers.Number
Standard Libraryhttps://docs.python.org/3/library/index.html#library-index
collections.abchttps://docs.python.org/3/library/collections.abc.html#module-collections.abc
collections.abc.Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
Linkhttps://object-oriented-python.github.io/example_code.html#example_code.linked_list.Link
Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
Linkhttps://object-oriented-python.github.io/example_code.html#example_code.linked_list.Link
Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
Linkhttps://object-oriented-python.github.io/example_code.html#example_code.linked_list.Link
Linkhttps://object-oriented-python.github.io/example_code.html#example_code.linked_list.Link
Linkhttps://object-oriented-python.github.io/example_code.html#example_code.linked_list.Link
Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
__iter__()https://docs.python.org/3/reference/datamodel.html#object.__iter__
Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
isinstance()https://docs.python.org/3/library/functions.html#isinstance
issubclass()https://docs.python.org/3/library/functions.html#issubclass
special methodhttps://object-oriented-python.github.io/3_objects.html#term-special-method
__subclasshook__()https://docs.python.org/3/library/abc.html#abc.ABCMeta.__subclasshook__
collections.abc.Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
Git repository for the standard Python language implementationhttps://github.com/python/cpython/blob/master/Lib/_collections_abc.py
https://object-oriented-python.github.io/10_further_object-oriented_features.html#id7
Listing 10.3https://object-oriented-python.github.io/10_further_object-oriented_features.html#subclasshook
Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
[1]https://object-oriented-python.github.io/10_further_object-oriented_features.html#python-in-python
abc.ABChttps://docs.python.org/3/library/abc.html#abc.ABC
object.__iter__()https://docs.python.org/3/reference/datamodel.html#object.__iter__
abstractmethodhttps://docs.python.org/3/library/abc.html#abc.abstractmethod
Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
object.__iter__()https://docs.python.org/3/reference/datamodel.html#object.__iter__
__subclasshook__()https://docs.python.org/3/library/abc.html#abc.ABCMeta.__subclasshook__
__subclasshook__()https://docs.python.org/3/library/abc.html#abc.ABCMeta.__subclasshook__
class methodhttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-class-method
__subclasshook__()https://docs.python.org/3/library/abc.html#abc.ABCMeta.__subclasshook__
NotImplementedhttps://docs.python.org/3/library/constants.html#NotImplemented
Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
NotImplementedhttps://docs.python.org/3/library/constants.html#NotImplemented
Iterablehttps://docs.python.org/3/library/collections.abc.html#collections.abc.Iterable
method resolution orderhttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-method-resolution-order
Truehttps://docs.python.org/3/library/constants.html#True
NotImplementedhttps://docs.python.org/3/library/constants.html#NotImplemented
__subclasshook__()https://docs.python.org/3/library/abc.html#abc.ABCMeta.__subclasshook__
Falsehttps://docs.python.org/3/library/constants.html#False
https://object-oriented-python.github.io/10_further_object-oriented_features.html#glossary
https://object-oriented-python.github.io/10_further_object-oriented_features.html#term-abstract-base-class
parenthttps://object-oriented-python.github.io/7_inheritance.html#term-parent-class
methodshttps://object-oriented-python.github.io/3_objects.html#term-method
child classeshttps://object-oriented-python.github.io/7_inheritance.html#term-child-class
https://object-oriented-python.github.io/10_further_object-oriented_features.html#term-abstract-method
abstract base classhttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-abstract-base-class
https://object-oriented-python.github.io/10_further_object-oriented_features.html#term-class-method
methodhttps://object-oriented-python.github.io/3_objects.html#term-method
classmethodhttps://docs.python.org/3/library/functions.html#classmethod
decoratorhttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-decorator
class attributehttps://object-oriented-python.github.io/7_inheritance.html#term-class-attribute
https://object-oriented-python.github.io/10_further_object-oriented_features.html#term-decorator
higher order functionshttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-higher-order-function
methodhttps://object-oriented-python.github.io/3_objects.html#term-method
https://object-oriented-python.github.io/10_further_object-oriented_features.html#term-duck-typing
typehttps://object-oriented-python.github.io/3_objects.html#term-type
objecthttps://docs.python.org/3/glossary.html#term-object
methodshttps://object-oriented-python.github.io/3_objects.html#term-method
attributeshttps://object-oriented-python.github.io/3_objects.html#term-attribute
https://object-oriented-python.github.io/10_further_object-oriented_features.html#term-higher-order-function
https://object-oriented-python.github.io/10_further_object-oriented_features.html#term-method-resolution-order
https://object-oriented-python.github.io/10_further_object-oriented_features.html#term-MRO
methodshttps://object-oriented-python.github.io/3_objects.html#term-method
attributeshttps://object-oriented-python.github.io/3_objects.html#term-attribute
https://object-oriented-python.github.io/10_further_object-oriented_features.html#term-syntactic-sugar
special methodshttps://object-oriented-python.github.io/3_objects.html#term-special-method
https://object-oriented-python.github.io/10_further_object-oriented_features.html#term-virtual-subclass
https://object-oriented-python.github.io/10_further_object-oriented_features.html#exercises
book websitehttps://object-oriented-python.github.io/edition3/exercises.html
decoratorhttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-decorator
logginghttps://docs.python.org/3/library/logging.html#module-logging
logging.info()https://docs.python.org/3/library/logging.html#logging.info
repr()https://docs.python.org/3/library/functions.html#repr
abstract base classhttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-abstract-base-class
decoratorhttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-decorator
abstract methodhttps://object-oriented-python.github.io/10_further_object-oriented_features.html#term-abstract-method
1https://object-oriented-python.github.io/10_further_object-oriented_features.html#id3
Python Standard Libraryhttps://docs.python.org/3/library/index.html#library-index
2https://object-oriented-python.github.io/10_further_object-oriented_features.html#id4
https://object-oriented-python.github.io/edition3/exercises.htmlhttps://object-oriented-python.github.io/edition3/exercises.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1


URLs of crawlers that visited me.