From 6974f6adc7bef663e6fcab2dfd9fa52179495513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 19 Nov 2024 23:07:02 +0100 Subject: [PATCH] Paths, fixed two links --- README.md | 6 +++--- index.html | 12 ++++++------ parse.js | 3 ++- web/script_2.js | 4 ++-- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 4cadf9b..1461783 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)**__,__ **[`Plot`](#plot)**__,__ **[`Table`](#table)**__,__ **[`Console_App`](#console-app)**__,__ **[`GUI`](#gui-app)**__,__ **[`Scraping`](#scraping)**__,__ **[`Web`](#web)**__,__ **[`Profile`](#profiling)**__.__ +**   ** **7. Libraries:** **      ** **[`Progress_Bar`](#progress-bar)**__,__ **[`Plot`](#plot)**__,__ **[`Table`](#table)**__,__ **[`Console_App`](#console-app)**__,__ **[`GUI`](#gui-app)**__,__ **[`Scraping`](#scraping)**__,__ **[`Web`](#web-app)**__,__ **[`Profile`](#profiling)**__.__ **   ** **8. Multimedia:** **  ** **[`NumPy`](#numpy)**__,__ **[`Image`](#image)**__,__ **[`Animation`](#animation)**__,__ **[`Audio`](#audio)**__,__ **[`Synthesizer`](#synthesizer)**__,__ **[`Pygame`](#pygame)**__,__ **[`Pandas`](#pandas)**__,__ **[`Plotly`](#plotly)**__.__ @@ -1583,7 +1583,7 @@ Open * **`'w+'` - Read and write. Deletes existing contents.** * **`'r+'` - Read and write from the start.** * **`'a+'` - Read and write from the end.** -* **`'b'` - Binary mode (`'rb'`, `'wb'`, `'xb'`, …)** +* **`'b'` - Binary mode (`'rb'`, `'wb'`, `'xb'`, …).** ### Exceptions * **`'FileNotFoundError'` can be raised when reading with `'r'` or `'r+'`.** @@ -1661,7 +1661,7 @@ from pathlib import Path ```python = os.stat() # Or: .stat() - = .st_mtime/st_size/… # Modification time, size in bytes, ... + = .st_mtime/st_size/… # Modification time, size in bytes, etc. ``` ### DirEntry diff --git a/index.html b/index.html index efbc68d..bf6a074 100644 --- a/index.html +++ b/index.html @@ -55,7 +55,7 @@
- +
@@ -87,7 +87,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, Plot, Table, Console_App, GUI, Scraping, Web, Profile], + '7. Libraries': [Progress_Bar, Plot, Table, Console_App, GUI, Scraping, Web, Profile], '8. Multimedia': [NumPy, Image, Animation, Audio, Synthesizer, Pygame, Pandas, Plotly] } @@ -1340,7 +1340,7 @@ args = p.parse_args() 'w+' - Read and write. Deletes existing contents.
  • 'r+' - Read and write from the start.
  • 'a+' - Read and write from the end.
  • -
  • 'b' - Binary mode ('rb', 'wb', 'xb', …)
  • +
  • 'b' - Binary mode ('rb', 'wb', 'xb', …).
  • Exceptions