├── .gitignore ├── README.md ├── adivinhe.py ├── cap1.t2t ├── cap12.html ├── cap12.t2t ├── cap14.html ├── cap14.t2t ├── cap3.t2t ├── cap5.t2t ├── cap8.t2t ├── chapter1.html ├── chapter1 └── index.html ├── chapter10.1 ├── chapter10.html ├── chapter10 └── index.html ├── chapter11.html ├── chapter11 └── index.html ├── chapter12.html ├── chapter12 ├── 12-1.png ├── 12-10.png ├── 12-11.png ├── 12-12.png ├── 12-2.png ├── 12-3.png ├── 12-4.png ├── 12-5.png ├── 12-6.png ├── 12-7.png ├── 12-8.png ├── 12-9.png └── index.html ├── chapter13.1 ├── chapter13.html ├── chapter13 └── index.html ├── chapter14.1 ├── chapter14.html ├── chapter14 ├── 14-1.png ├── 14-2.png └── index.html ├── chapter15.1 ├── chapter15.html ├── chapter15 └── index.html ├── chapter16.1 ├── chapter16.html ├── chapter16 └── index.html ├── chapter17.1 ├── chapter17.html ├── chapter17 └── index.html ├── chapter18.1 ├── chapter18.html ├── chapter18 └── index.html ├── chapter19.1 ├── chapter19.html ├── chapter19 └── index.html ├── chapter2.html ├── chapter2 └── index.html ├── chapter20.1 ├── chapter20.html ├── chapter20 └── index.html ├── chapter3.html ├── chapter3 ├── 3-1.png ├── 3-2.png ├── 3-3.png ├── 3-4.png ├── 3-5.png └── index.html ├── chapter4.1 ├── chapter4.html ├── chapter4 └── index.html ├── chapter5.1 ├── chapter5.html ├── chapter5 ├── index.html └── piadas.py ├── chapter6.1 ├── chapter6.html ├── chapter6 └── index.html ├── chapter7.html ├── chapter7 └── index.html ├── chapter8.html ├── chapter8 ├── 8-1.png ├── 8-2.png ├── 8-3.png ├── 8-4.png ├── 8-5.png ├── 8-6.png ├── 8-7.png ├── 8-8.png ├── 8-9.png └── index.html ├── chapter9.1 ├── chapter9.html ├── chapter9 └── index.html ├── chapters.1 ├── chapters └── index.html ├── contrib └── pre-commit ├── favicon.ico ├── images ├── 1-1.png ├── 2-1.png ├── 2-2.png ├── 2-3.png ├── 2-4.png ├── 2-5.png ├── 4-1.png ├── 4-1.svg ├── 4-2.png ├── 4-2.svg ├── buyad.png ├── chap1.png ├── chap1.svg ├── chap2.png ├── chap2.svg ├── chap3.png ├── chap3.svg ├── chap4.png ├── chap4.svg ├── header.png ├── header.svg ├── icon_pdf.gif ├── mainback.gif ├── otherbooks1.png └── otherbooks2.png ├── index.html ├── inventbook.css ├── inventweb.css └── source └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.pdf 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/README.md -------------------------------------------------------------------------------- /adivinhe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/adivinhe.py -------------------------------------------------------------------------------- /cap1.t2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/cap1.t2t -------------------------------------------------------------------------------- /cap12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/cap12.html -------------------------------------------------------------------------------- /cap12.t2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/cap12.t2t -------------------------------------------------------------------------------- /cap14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/cap14.html -------------------------------------------------------------------------------- /cap14.t2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/cap14.t2t -------------------------------------------------------------------------------- /cap3.t2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/cap3.t2t -------------------------------------------------------------------------------- /cap5.t2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/cap5.t2t -------------------------------------------------------------------------------- /cap8.t2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/cap8.t2t -------------------------------------------------------------------------------- /chapter1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter1.html -------------------------------------------------------------------------------- /chapter1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter1/index.html -------------------------------------------------------------------------------- /chapter10.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter10.1 -------------------------------------------------------------------------------- /chapter10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter10.html -------------------------------------------------------------------------------- /chapter10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter10/index.html -------------------------------------------------------------------------------- /chapter11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter11.html -------------------------------------------------------------------------------- /chapter11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter11/index.html -------------------------------------------------------------------------------- /chapter12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12.html -------------------------------------------------------------------------------- /chapter12/12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-1.png -------------------------------------------------------------------------------- /chapter12/12-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-10.png -------------------------------------------------------------------------------- /chapter12/12-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-11.png -------------------------------------------------------------------------------- /chapter12/12-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-12.png -------------------------------------------------------------------------------- /chapter12/12-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-2.png -------------------------------------------------------------------------------- /chapter12/12-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-3.png -------------------------------------------------------------------------------- /chapter12/12-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-4.png -------------------------------------------------------------------------------- /chapter12/12-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-5.png -------------------------------------------------------------------------------- /chapter12/12-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-6.png -------------------------------------------------------------------------------- /chapter12/12-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-7.png -------------------------------------------------------------------------------- /chapter12/12-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-8.png -------------------------------------------------------------------------------- /chapter12/12-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/12-9.png -------------------------------------------------------------------------------- /chapter12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter12/index.html -------------------------------------------------------------------------------- /chapter13.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter13.1 -------------------------------------------------------------------------------- /chapter13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter13.html -------------------------------------------------------------------------------- /chapter13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter13/index.html -------------------------------------------------------------------------------- /chapter14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter14.1 -------------------------------------------------------------------------------- /chapter14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter14.html -------------------------------------------------------------------------------- /chapter14/14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter14/14-1.png -------------------------------------------------------------------------------- /chapter14/14-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter14/14-2.png -------------------------------------------------------------------------------- /chapter14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter14/index.html -------------------------------------------------------------------------------- /chapter15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter15.1 -------------------------------------------------------------------------------- /chapter15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter15.html -------------------------------------------------------------------------------- /chapter15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter15/index.html -------------------------------------------------------------------------------- /chapter16.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter16.1 -------------------------------------------------------------------------------- /chapter16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter16.html -------------------------------------------------------------------------------- /chapter16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter16/index.html -------------------------------------------------------------------------------- /chapter17.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter17.1 -------------------------------------------------------------------------------- /chapter17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter17.html -------------------------------------------------------------------------------- /chapter17/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter17/index.html -------------------------------------------------------------------------------- /chapter18.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter18.1 -------------------------------------------------------------------------------- /chapter18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter18.html -------------------------------------------------------------------------------- /chapter18/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter18/index.html -------------------------------------------------------------------------------- /chapter19.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter19.1 -------------------------------------------------------------------------------- /chapter19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter19.html -------------------------------------------------------------------------------- /chapter19/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter19/index.html -------------------------------------------------------------------------------- /chapter2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter2.html -------------------------------------------------------------------------------- /chapter2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter2/index.html -------------------------------------------------------------------------------- /chapter20.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter20.1 -------------------------------------------------------------------------------- /chapter20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter20.html -------------------------------------------------------------------------------- /chapter20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter20/index.html -------------------------------------------------------------------------------- /chapter3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter3.html -------------------------------------------------------------------------------- /chapter3/3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter3/3-1.png -------------------------------------------------------------------------------- /chapter3/3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter3/3-2.png -------------------------------------------------------------------------------- /chapter3/3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter3/3-3.png -------------------------------------------------------------------------------- /chapter3/3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter3/3-4.png -------------------------------------------------------------------------------- /chapter3/3-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter3/3-5.png -------------------------------------------------------------------------------- /chapter3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter3/index.html -------------------------------------------------------------------------------- /chapter4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter4.1 -------------------------------------------------------------------------------- /chapter4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter4.html -------------------------------------------------------------------------------- /chapter4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter4/index.html -------------------------------------------------------------------------------- /chapter5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter5.1 -------------------------------------------------------------------------------- /chapter5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter5.html -------------------------------------------------------------------------------- /chapter5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter5/index.html -------------------------------------------------------------------------------- /chapter5/piadas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter5/piadas.py -------------------------------------------------------------------------------- /chapter6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter6.1 -------------------------------------------------------------------------------- /chapter6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter6.html -------------------------------------------------------------------------------- /chapter6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter6/index.html -------------------------------------------------------------------------------- /chapter7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter7.html -------------------------------------------------------------------------------- /chapter7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter7/index.html -------------------------------------------------------------------------------- /chapter8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8.html -------------------------------------------------------------------------------- /chapter8/8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8/8-1.png -------------------------------------------------------------------------------- /chapter8/8-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8/8-2.png -------------------------------------------------------------------------------- /chapter8/8-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8/8-3.png -------------------------------------------------------------------------------- /chapter8/8-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8/8-4.png -------------------------------------------------------------------------------- /chapter8/8-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8/8-5.png -------------------------------------------------------------------------------- /chapter8/8-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8/8-6.png -------------------------------------------------------------------------------- /chapter8/8-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8/8-7.png -------------------------------------------------------------------------------- /chapter8/8-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8/8-8.png -------------------------------------------------------------------------------- /chapter8/8-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8/8-9.png -------------------------------------------------------------------------------- /chapter8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter8/index.html -------------------------------------------------------------------------------- /chapter9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter9.1 -------------------------------------------------------------------------------- /chapter9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter9.html -------------------------------------------------------------------------------- /chapter9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapter9/index.html -------------------------------------------------------------------------------- /chapters.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapters.1 -------------------------------------------------------------------------------- /chapters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/chapters/index.html -------------------------------------------------------------------------------- /contrib/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/contrib/pre-commit -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/1-1.png -------------------------------------------------------------------------------- /images/2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/2-1.png -------------------------------------------------------------------------------- /images/2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/2-2.png -------------------------------------------------------------------------------- /images/2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/2-3.png -------------------------------------------------------------------------------- /images/2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/2-4.png -------------------------------------------------------------------------------- /images/2-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/2-5.png -------------------------------------------------------------------------------- /images/4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/4-1.png -------------------------------------------------------------------------------- /images/4-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/4-1.svg -------------------------------------------------------------------------------- /images/4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/4-2.png -------------------------------------------------------------------------------- /images/4-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/4-2.svg -------------------------------------------------------------------------------- /images/buyad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/buyad.png -------------------------------------------------------------------------------- /images/chap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/chap1.png -------------------------------------------------------------------------------- /images/chap1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/chap1.svg -------------------------------------------------------------------------------- /images/chap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/chap2.png -------------------------------------------------------------------------------- /images/chap2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/chap2.svg -------------------------------------------------------------------------------- /images/chap3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/chap3.png -------------------------------------------------------------------------------- /images/chap3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/chap3.svg -------------------------------------------------------------------------------- /images/chap4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/chap4.png -------------------------------------------------------------------------------- /images/chap4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/chap4.svg -------------------------------------------------------------------------------- /images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/header.png -------------------------------------------------------------------------------- /images/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/header.svg -------------------------------------------------------------------------------- /images/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/icon_pdf.gif -------------------------------------------------------------------------------- /images/mainback.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/mainback.gif -------------------------------------------------------------------------------- /images/otherbooks1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/otherbooks1.png -------------------------------------------------------------------------------- /images/otherbooks2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/images/otherbooks2.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/index.html -------------------------------------------------------------------------------- /inventbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/inventbook.css -------------------------------------------------------------------------------- /inventweb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/inventweb.css -------------------------------------------------------------------------------- /source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutomaia/inventwithpython/HEAD/source/index.html --------------------------------------------------------------------------------