diff --git a/README.md b/README.md index 826d038..5d239f5 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Contents **   ** **4. System:** **        ** **[`Exit`](#exit)**__,__ **[`Print`](#print)**__,__ **[`Input`](#input)**__,__ **[`Command_Line_Arguments`](#command-line-arguments)**__,__ **[`Open`](#open)**__,__ **[`Path`](#paths)**__,__ **[`OS_Commands`](#os-commands)**__.__ **   ** **5. Data:** **             ** **[`JSON`](#json)**__,__ **[`Pickle`](#pickle)**__,__ **[`CSV`](#csv)**__,__ **[`SQLite`](#sqlite)**__,__ **[`Bytes`](#bytes)**__,__ **[`Struct`](#struct)**__,__ **[`Array`](#array)**__,__ **[`Memory_View`](#memory-view)**__,__ **[`Deque`](#deque)**__.__ **   ** **6. Advanced:** **   ** **[`Threading`](#threading)**__,__ **[`Operator`](#operator)**__,__ **[`Match_Stmt`](#match-statement)**__,__ **[`Logging`](#logging)**__,__ **[`Introspection`](#introspection)**__,__ **[`Coroutines`](#coroutines)**__.__ -**   ** **7. Libraries:** **      ** **[`Progress_Bar`](#progress-bar)**__,__ **[`Plots`](#plot)**__,__ **[`Tables`](#table)**__,__ **[`Curses`](#curses)**__,__ **[`GUIs`](#pysimplegui)**__,__ **[`Scraping`](#scraping)**__,__ **[`Web`](#web)**__,__ **[`Profiling`](#profiling)**__.__ +**   ** **7. Libraries:** **      ** **[`Progress_Bar`](#progress-bar)**__,__ **[`Plot`](#plot)**__,__ **[`Table`](#table)**__,__ **[`Console_App`](#console-app)**__,__ **[`GUI`](#gui-app)**__,__ **[`Scraping`](#scraping)**__,__ **[`Web`](#web)**__,__ **[`Profile`](#profiling)**__.__ **   ** **8. Multimedia:** **  ** **[`NumPy`](#numpy)**__,__ **[`Image`](#image)**__,__ **[`Animation`](#animation)**__,__ **[`Audio`](#audio)**__,__ **[`Synthesizer`](#synthesizer)**__,__ **[`Pygame`](#pygame)**__,__ **[`Pandas`](#pandas)**__,__ **[`Plotly`](#plotly)**__.__ @@ -2432,8 +2432,8 @@ print(tabulate.tabulate(rows, headers='firstrow')) ``` -Curses ------- +Console App +----------- #### Runs a basic file explorer in the console: ```python # $ pip3 install windows-curses @@ -2463,8 +2463,8 @@ if __name__ == '__main__': ``` -PySimpleGUI ------------ +GUI App +------- #### A weight converter GUI application: ```python diff --git a/index.html b/index.html index 43a4dff..b4d2a30 100644 --- a/index.html +++ b/index.html @@ -54,7 +54,7 @@
- +
@@ -86,7 +86,7 @@ '4. System': [Exit, Print, Input, Command_Line_Arguments, Open, Path, OS_Commands], '5. Data': [JSON, Pickle, CSV, SQLite, Bytes, Struct, Array, Memory_View, Deque], '6. Advanced': [Threading, Operator, Match_Stmt, Logging, Introspection, Coroutines], - '7. Libraries': [Progress_Bar, Plots, Tables, Curses, GUIs, Scraping, Web, Profiling], + '7. Libraries': [Progress_Bar, Plot, Table, Console_App, GUI, Scraping, Web, Profile], '8. Multimedia': [NumPy, Image, Animation, Audio, Synthesizer, Pygame, Pandas, Plotly] } @@ -1994,7 +1994,7 @@ print(tabulate.tabulate(rows, headers='firstrow' -

#Curses

Runs a basic file explorer in the console:

# $ pip3 install windows-curses
+

#Console App

Runs a basic file explorer in the console:

# $ pip3 install windows-curses
 import curses, os
 from curses import A_REVERSE, KEY_DOWN, KEY_UP, KEY_LEFT, KEY_RIGHT, KEY_ENTER
 
@@ -2021,7 +2021,7 @@ print(tabulate.tabulate(rows, headers='firstrow'
-

#PySimpleGUI

A weight converter GUI application:

# $ pip3 install PySimpleGUI
+

#GUI App

A weight converter GUI application:

# $ pip3 install PySimpleGUI
 import PySimpleGUI as sg
 
 text_box = sg.Input(default_text='100', enable_events=True, key='-VALUE-')
@@ -2933,7 +2933,7 @@ $ deactivate                  # Deactivates the activ
  
 
   
 
diff --git a/parse.js b/parse.js
index f713b3f..1b12ec8 100755
--- a/parse.js
+++ b/parse.js
@@ -39,7 +39,7 @@ const TOC =
   '    \'4. System\':      [Exit, Print, Input, Command_Line_Arguments, Open, Path, OS_Commands],\n' +
   '    \'5. Data\':        [JSON, Pickle, CSV, SQLite, Bytes, Struct, Array, Memory_View, Deque],\n' +
   '    \'6. Advanced\':    [Threading, Operator, Match_Stmt, Logging, Introspection, Coroutines],\n' +
-  '    \'7. Libraries\':   [Progress_Bar, Plots, Tables, Curses, GUIs, Scraping, Web, Profiling],\n' +
+  '    \'7. Libraries\':   [Progress_Bar, Plot, Table, Console_App, GUI, Scraping, Web, Profile],\n' +
   '    \'8. Multimedia\':  [NumPy, Image, Animation, Audio, Synthesizer, Pygame, Pandas, Plotly]\n' +
   '}\n' +
   '
\n'; diff --git a/pdf/index_for_pdf.html b/pdf/index_for_pdf.html index 810a230..a223094 100644 --- a/pdf/index_for_pdf.html +++ b/pdf/index_for_pdf.html @@ -31,7 +31,7 @@ coroutine, 33
counter, 2, 4, 12, 17
csv, 26, 34, 46, 47
-curses module, 33, 34
+curses module, 33, 34
cython, 49

D

dataclasses module, 12, 15
@@ -57,7 +57,7 @@

games, 33, 42-43
generators, 4, 11, 17
global keyword, 12
-gui, 35

+gui, 35

H

hashable, 15, 16
hexadecimal representation, 7, 8, 28

diff --git a/web/script_2.js b/web/script_2.js index 17b96c3..f67c4c3 100644 --- a/web/script_2.js +++ b/web/script_2.js @@ -6,7 +6,7 @@ const TOC = ' \'4. System\': [Exit, Print, Input, Command_Line_Arguments, Open, Path, OS_Commands],\n' + ' \'5. Data\': [JSON, Pickle, CSV, SQLite, Bytes, Struct, Array, Memory_View, Deque],\n' + ' \'6. Advanced\': [Threading, Operator, Match_Stmt, Logging, Introspection, Coroutines],\n' + - ' \'7. Libraries\': [Progress_Bar, Plots, Tables, Curses, GUIs, Scraping, Web, Profiling],\n' + + ' \'7. Libraries\': [Progress_Bar, Plot, Table, Console_App, GUI, Scraping, Web, Profile],\n' + ' \'8. Multimedia\': [NumPy, Image, Animation, Audio, Synthesizer, Pygame, Pandas, Plotly]\n' + '}\n'; @@ -31,8 +31,8 @@ const TOC_MOBILE = ' Match_Stmt, Logging, \n' + ' Introspection, Coroutines],\n' + ' \'7. Libraries\': [Progress_Bar, Plot, Table,\n' + - ' Curses, GUIs, Scraping,\n' + - ' Web, Profiling],\n' + + ' Console_App, GUI_App,\n' + + ' Scraping, Web, Profiling],\n' + ' \'8. Multimedia\': [NumPy, Image, Animation,\n' + ' Audio, Synthesizer,\n' + ' Pygame, Pandas, Plotly]\n' +