@@ -15,7 +15,7 @@ Contents
1515**   ;  ;  ; ** ** 5. Data:** **   ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` JSON ` ] ( #json ) ** __ ,__ ** [ ` Pickle ` ] ( #pickle ) ** __ ,__ ** [ ` CSV ` ] ( #csv ) ** __ ,__ ** [ ` SQLite ` ] ( #sqlite ) ** __ ,__ ** [ ` Bytes ` ] ( #bytes ) ** __ ,__ ** [ ` Struct ` ] ( #struct ) ** __ ,__ ** [ ` Array ` ] ( #array ) ** __ ,__ ** [ ` Memory_View ` ] ( #memory-view ) ** __ ,__ ** [ ` Deque ` ] ( #deque ) ** __ .__
1616**   ;  ;  ; ** ** 6. Advanced:** **   ;  ;  ; ** ** [ ` Threading ` ] ( #threading ) ** __ ,__ ** [ ` Operator ` ] ( #operator ) ** __ ,__ ** [ ` Introspection ` ] ( #introspection ) ** __ ,__ ** [ ` Metaprograming ` ] ( #metaprograming ) ** __ ,__ ** [ ` Eval ` ] ( #eval ) ** __ ,__ ** [ ` Coroutines ` ] ( #coroutines ) ** __ .__
1717**   ;  ;  ; ** ** 7. Libraries:** **   ;  ;  ;  ;  ;  ; ** ** [ ` Progress_Bar ` ] ( #progress-bar ) ** __ ,__ ** [ ` Plot ` ] ( #plot ) ** __ ,__ ** [ ` Table ` ] ( #table ) ** __ ,__ ** [ ` Curses ` ] ( #curses ) ** __ ,__ ** [ ` Logging ` ] ( #logging ) ** __ ,__ ** [ ` Scraping ` ] ( #scraping ) ** __ ,__ ** [ ` Web ` ] ( #web ) ** __ ,__ ** [ ` Profile ` ] ( #profiling ) ** __ ,__
18- **   ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` NumPy ` ] ( #numpy ) ** __ ,__ ** [ ` Image ` ] ( #image ) ** __ ,__ ** [ ` Audio ` ] ( #audio ) ** __ ,__ ** [ ` Games ` ] ( #pygame ) ** __ ,__ ** [ ` Data ` ] ( #pandas ) ** __ ,__ ** [ ` GUI ` ] ( #gui ) ** __ .__
18+ **   ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` NumPy ` ] ( #numpy ) ** __ ,__ ** [ ` Image ` ] ( #image ) ** __ ,__ ** [ ` Audio ` ] ( #audio ) ** __ ,__ ** [ ` Games ` ] ( #pygame ) ** __ ,__ ** [ ` Data ` ] ( #pandas ) ** __ ,__ ** [ ` GUI ` ] ( #pysimplegui ) ** __ .__
1919
2020
2121Main
@@ -1196,7 +1196,6 @@ Hello World!
11961196
11971197Iterable Duck Types
11981198-------------------
1199-
12001199### Iterable
12011200* ** Only required method is iter(). It should return an iterator of object's items.**
12021201* ** Contains() automatically works on any object that has iter() defined.**
@@ -1342,7 +1341,6 @@ LogicOp = Enum('LogicOp', {'AND': partial(lambda l, r: l and r),
13421341
13431342Exceptions
13441343----------
1345-
13461344### Basic Example
13471345``` python
13481346try :
@@ -2913,7 +2911,6 @@ simpleaudio.play_buffer(samples_b, 1, 2, F)
29132911
29142912Pygame
29152913------
2916-
29172914### Basic Example
29182915``` python
29192916# $ pip3 install pygame
@@ -3068,7 +3065,6 @@ if __name__ == '__main__':
30683065
30693066Pandas
30703067------
3071-
30723068``` python
30733069# $ pip3 install pandas
30743070import pandas as pd
@@ -3347,7 +3343,6 @@ c 7 8
33473343
33483344Plotly
33493345------
3350-
33513346``` python
33523347# $ pip3 install plotly
33533348from plotly.express import line
@@ -3425,8 +3420,8 @@ if __name__ == '__main__':
34253420```
34263421
34273422
3428- GUI
3429- ---
3423+ PySimpleGUI
3424+ -----------
34303425``` python
34313426# $ pip3 install PySimpleGUI
34323427import PySimpleGUI as sg
@@ -3439,7 +3434,6 @@ print(f'Hello {values[0]}!')
34393434
34403435Appendix
34413436--------
3442-
34433437### Cython
34443438** Library that compiles Python code into C.**
34453439
0 commit comments