@@ -15,7 +15,7 @@ Contents
15
15
**   ;  ;  ; ** ** 5. Data:** **   ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ;  ; ** ** [ ` JSON ` ] ( #json ) ** __ ,__ ** [ ` Pickle ` ] ( #pickle ) ** __ ,__ ** [ ` CSV ` ] ( #csv ) ** __ ,__ ** [ ` SQLite ` ] ( #sqlite ) ** __ ,__ ** [ ` Bytes ` ] ( #bytes ) ** __ ,__ ** [ ` Struct ` ] ( #struct ) ** __ ,__ ** [ ` Array ` ] ( #array ) ** __ ,__ ** [ ` Memory_View ` ] ( #memory-view ) ** __ ,__ ** [ ` Deque ` ] ( #deque ) ** __ .__
16
16
**   ;  ;  ; ** ** 6. Advanced:** **   ;  ;  ; ** ** [ ` Threading ` ] ( #threading ) ** __ ,__ ** [ ` Operator ` ] ( #operator ) ** __ ,__ ** [ ` Introspection ` ] ( #introspection ) ** __ ,__ ** [ ` Metaprograming ` ] ( #metaprograming ) ** __ ,__ ** [ ` Eval ` ] ( #eval ) ** __ ,__ ** [ ` Coroutines ` ] ( #coroutines ) ** __ .__
17
17
**   ;  ;  ; ** ** 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 ) ** __ .__
19
19
20
20
21
21
Main
@@ -1196,7 +1196,6 @@ Hello World!
1196
1196
1197
1197
Iterable Duck Types
1198
1198
-------------------
1199
-
1200
1199
### Iterable
1201
1200
* ** Only required method is iter(). It should return an iterator of object's items.**
1202
1201
* ** 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),
1342
1341
1343
1342
Exceptions
1344
1343
----------
1345
-
1346
1344
### Basic Example
1347
1345
``` python
1348
1346
try :
@@ -2913,7 +2911,6 @@ simpleaudio.play_buffer(samples_b, 1, 2, F)
2913
2911
2914
2912
Pygame
2915
2913
------
2916
-
2917
2914
### Basic Example
2918
2915
``` python
2919
2916
# $ pip3 install pygame
@@ -3068,7 +3065,6 @@ if __name__ == '__main__':
3068
3065
3069
3066
Pandas
3070
3067
------
3071
-
3072
3068
``` python
3073
3069
# $ pip3 install pandas
3074
3070
import pandas as pd
@@ -3347,7 +3343,6 @@ c 7 8
3347
3343
3348
3344
Plotly
3349
3345
------
3350
-
3351
3346
``` python
3352
3347
# $ pip3 install plotly
3353
3348
from plotly.express import line
@@ -3425,8 +3420,8 @@ if __name__ == '__main__':
3425
3420
```
3426
3421
3427
3422
3428
- GUI
3429
- ---
3423
+ PySimpleGUI
3424
+ -----------
3430
3425
``` python
3431
3426
# $ pip3 install PySimpleGUI
3432
3427
import PySimpleGUI as sg
@@ -3439,7 +3434,6 @@ print(f'Hello {values[0]}!')
3439
3434
3440
3435
Appendix
3441
3436
--------
3442
-
3443
3437
### Cython
3444
3438
** Library that compiles Python code into C.**
3445
3439
0 commit comments