You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

608 lines
44 KiB

3 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
  1. #!/usr/bin/env node
  2. // Usage: node parse.js
  3. // Script that creates index.html out of web/template.html and README.md.
  4. // It is written in JS because this code used to be executed on the client side.
  5. // To install dependencies run:
  6. // $ npm install -g jsdom jquery showdown highlightjs
  7. // If running on Mac and modules can't be found after installation add:
  8. // export NODE_PATH=/usr/local/lib/node_modules
  9. // to the ~/.bash_profile or ~/.bashrc file and run '$ bash'.
  10. const fs = require('fs');
  11. const jsdom = require('jsdom');
  12. const showdown = require('showdown');
  13. const hljs = require('highlightjs');
  14. const TOC =
  15. '<br>' +
  16. '<h2 id="toc">Contents</h2>\n' +
  17. '<pre><code class="hljs bash"><strong>ToC</strong> = {\n' +
  18. ' <strong><span class="hljs-string">\'1. Collections\'</span></strong>: [<a href="#list">List</a>, <a href="#dictionary">Dictionary</a>, <a href="#set">Set</a>, <a href="#tuple">Tuple</a>, <a href="#range">Range</a>, <a href="#enumerate">Enumerate</a>, <a href="#iterator">Iterator</a>, <a href="#generator">Generator</a>],\n' +
  19. ' <strong><span class="hljs-string">\'2. Types\'</span></strong>: [<a href="#type">Type</a>, <a href="#string">String</a>, <a href="#regex">Regular_Exp</a>, <a href="#format">Format</a>, <a href="#numbers">Numbers</a>, <a href="#combinatorics">Combinatorics</a>, <a href="#datetime">Datetime</a>],\n' +
  20. ' <strong><span class="hljs-string">\'3. Syntax\'</span></strong>: [<a href="#arguments">Args</a>, <a href="#inline">Inline</a>, <a href="#closure">Closure</a>, <a href="#decorator">Decorator</a>, <a href="#class">Class</a>, <a href="#ducktypes">Duck_Type</a>, <a href="#enum">Enum</a>, <a href="#exceptions">Exception</a>],\n' +
  21. ' <strong><span class="hljs-string">\'4. System\'</span></strong>: [<a href="#exit">Exit</a>, <a href="#print">Print</a>, <a href="#input">Input</a>, <a href="#commandlinearguments">Command_Line_Arguments</a>, <a href="#open">Open</a>, <a href="#path">Path</a>, <a href="#oscommands">OS_Commands</a>],\n' +
  22. ' <strong><span class="hljs-string">\'5. Data\'</span></strong>: [<a href="#json">JSON</a>, <a href="#pickle">Pickle</a>, <a href="#csv">CSV</a>, <a href="#sqlite">SQLite</a>, <a href="#bytes">Bytes</a>, <a href="#struct">Struct</a>, <a href="#array">Array</a>, <a href="#memoryview">Memory_View</a>, <a href="#deque">Deque</a>],\n' +
  23. ' <strong><span class="hljs-string">\'6. Advanced\'</span></strong>: [<a href="#threading">Threading</a>, <a href="#operator">Operator</a>, <a href="#introspection">Introspection</a>, <a href="#metaprograming">Metaprograming</a>, <a href="#eval">Eval</a>, <a href="#coroutines">Coroutine</a>],\n' +
  24. ' <strong><span class="hljs-string">\'7. Libraries\'</span></strong>: [<a href="#progressbar">Progress_Bar</a>, <a href="#plot">Plot</a>, <a href="#table">Table</a>, <a href="#curses">Curses</a>, <a href="#logging">Logging</a>, <a href="#scraping">Scraping</a>, <a href="#web">Web</a>, <a href="#profiling">Profile</a>,\n' +
  25. ' <a href="#numpy">NumPy</a>, <a href="#image">Image</a>, <a href="#audio">Audio</a>, <a href="#pygame">Games</a>, <a href="#pandas">Data</a>, <a href="#pysimplegui">GUI</a>]\n' +
  26. '}\n' +
  27. '</code></pre>\n';
  28. const LRU_CACHE =
  29. '<span class="hljs-keyword">from</span> functools <span class="hljs-keyword">import</span> lru_cache\n' +
  30. '\n' +
  31. '<span class="hljs-meta">@lru_cache(maxsize=None)</span>\n' +
  32. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">fib</span><span class="hljs-params">(n)</span>:</span>\n' +
  33. ' <span class="hljs-keyword">return</span> n <span class="hljs-keyword">if</span> n &lt; <span class="hljs-number">2</span> <span class="hljs-keyword">else</span> fib(n-<span class="hljs-number">2</span>) + fib(n-<span class="hljs-number">1</span>)\n';
  34. const CONSTRUCTOR_OVERLOADING =
  35. '<span class="hljs-class"><span class="hljs-keyword">class</span> &lt;<span class="hljs-title">name</span>&gt;:</span>\n' +
  36. ' <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">__init__</span><span class="hljs-params">(self, a=<span class="hljs-keyword">None</span>)</span>:</span>\n' +
  37. ' self.a = a\n';
  38. const DATACLASS =
  39. '<span class="hljs-keyword">from</span> dataclasses <span class="hljs-keyword">import</span> make_dataclass\n' +
  40. '&lt;class&gt; = make_dataclass(<span class="hljs-string">\'&lt;class_name&gt;\'</span>, &lt;coll_of_attribute_names&gt;)\n' +
  41. '&lt;class&gt; = make_dataclass(<span class="hljs-string">\'&lt;class_name&gt;\'</span>, &lt;coll_of_tuples&gt;)\n' +
  42. '&lt;tuple&gt; = (<span class="hljs-string">\'&lt;attr_name&gt;\'</span>, &lt;type&gt; [, &lt;default_value&gt;])';
  43. const SHUTIL_COPY =
  44. 'shutil.copy(from, to) <span class="hljs-comment"># Copies the file. \'to\' can exist or be a dir.</span>\n' +
  45. 'shutil.copytree(from, to) <span class="hljs-comment"># Copies the directory. \'to\' must not exist.</span>\n';
  46. const OS_RENAME =
  47. 'os.rename(from, to) <span class="hljs-comment"># Renames/moves the file or directory.</span>\n' +
  48. 'os.replace(from, to) <span class="hljs-comment"># Same, but overwrites \'to\' if it exists.</span>\n';
  49. const TYPE =
  50. '&lt;class&gt; = type(<span class="hljs-string">\'&lt;class_name&gt;\'</span>, &lt;parents_tuple&gt;, &lt;attributes_dict&gt;)';
  51. const EVAL =
  52. '<span class="hljs-meta">&gt;&gt;&gt; </span><span class="hljs-keyword">from</span> ast <span class="hljs-keyword">import</span> literal_eval\n' +
  53. '<span class="hljs-meta">&gt;&gt;&gt; </span>literal_eval(<span class="hljs-string">\'[1, 2, 3]\'</span>)\n' +
  54. '[<span class="hljs-number">1</span>, <span class="hljs-number">2</span>, <span class="hljs-number">3</span>]\n' +
  55. '<span class="hljs-meta">&gt;&gt;&gt; </span>literal_eval(<span class="hljs-string">\'1 + 2\'</span>)\n' +
  56. 'ValueError: malformed node or string\n';
  57. const PROGRESS_BAR =
  58. '<span class="hljs-comment"># $ pip3 install tqdm</span>\n' +
  59. '<span class="hljs-meta">&gt;&gt;&gt; </span><span class="hljs-keyword">from</span> tqdm <span class="hljs-keyword">import</span> tqdm\n' +
  60. '<span class="hljs-meta">&gt;&gt;&gt; </span><span class="hljs-keyword">from</span> time <span class="hljs-keyword">import</span> sleep\n' +
  61. '<span class="hljs-meta">&gt;&gt;&gt; </span><span class="hljs-keyword">for</span> el <span class="hljs-keyword">in</span> tqdm([<span class="hljs-number">1</span>, <span class="hljs-number">2</span>, <span class="hljs-number">3</span>], desc=<span class="hljs-string">\'Processing\'</span>):\n' +
  62. '<span class="hljs-meta">... </span> sleep(<span class="hljs-number">1</span>)\n' +
  63. 'Processing: 100%|████████████████████| 3/3 [00:03&lt;00:00, 1.00s/it]\n';
  64. const NUMPY_1 =
  65. '&lt;el&gt; = &lt;2d_array&gt;[<span class="hljs-number">0</span>, <span class="hljs-number">0</span>] <span class="hljs-comment"># First element.</span>\n' +
  66. '&lt;1d_view&gt; = &lt;2d_array&gt;[<span class="hljs-number">0</span>] <span class="hljs-comment"># First row.</span>\n' +
  67. '&lt;1d_view&gt; = &lt;2d_array&gt;[:, <span class="hljs-number">0</span>] <span class="hljs-comment"># First column. Also [..., 0].</span>\n' +
  68. '&lt;3d_view&gt; = &lt;2d_array&gt;[<span class="hljs-keyword">None</span>, :, :] <span class="hljs-comment"># Expanded by dimension of size 1.</span>\n';
  69. const NUMPY_2 =
  70. '&lt;1d_array&gt; = &lt;2d_array&gt;[&lt;1d_row_indexes&gt;, &lt;1d_column_indexes&gt;]\n' +
  71. '&lt;2d_array&gt; = &lt;2d_array&gt;[&lt;2d_row_indexes&gt;, &lt;2d_column_indexes&gt;]\n';
  72. const NUMPY_3 =
  73. '&lt;2d_bools&gt; = &lt;2d_array&gt; &gt; <span class="hljs-number">0</span>\n' +
  74. '&lt;1d_array&gt; = &lt;2d_array&gt;[&lt;2d_bools&gt;]\n';
  75. const PYINSTALLER =
  76. '$ pip3 install pyinstaller\n' +
  77. '$ pyinstaller script.py <span class="hljs-comment"># Compiles into \'./dist/script\' directory.</span>\n' +
  78. '$ pyinstaller script.py --onefile <span class="hljs-comment"># Compiles into \'./dist/script\' console app.</span>\n' +
  79. '$ pyinstaller script.py --windowed <span class="hljs-comment"># Compiles into \'./dist/script\' windowed app.</span>\n' +
  80. '$ pyinstaller script.py --add-data \'&lt;path&gt;:.\' <span class="hljs-comment"># Adds file to the root of the executable.</span>\n';
  81. const INDEX =
  82. '<li><strong>Only available in <a href="https://transactions.sendowl.com/products/78175486/4422834F/view">PDF</a>.</strong></li>\n' +
  83. '<li><strong>Ctrl+F / ⌘F is usually sufficient.</strong></li>\n' +
  84. '<li><strong>Searching <code class="python hljs"><span class="hljs-string">\'#&lt;title&gt;\'</span></code> will limit the search to the titles.</strong></li>\n';
  85. const DIAGRAM_1_A =
  86. '+------------------+------------+------------+------------+\n' +
  87. '| | Sequence | Collection | Iterable |\n' +
  88. '+------------------+------------+------------+------------+\n';
  89. const DIAGRAM_1_B =
  90. '┏━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓\n' +
  91. '┃ │ Sequence │ Collection │ Iterable ┃\n' +
  92. '┠──────────────────┼────────────┼────────────┼────────────┨\n' +
  93. '┃ list, range, str │ ✓ │ ✓ │ ✓ ┃\n' +
  94. '┃ dict, set │ │ ✓ │ ✓ ┃\n' +
  95. '┃ iter │ │ │ ✓ ┃\n' +
  96. '┗━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
  97. const DIAGRAM_2_A =
  98. '+--------------------+----------+----------+----------+----------+----------+\n' +
  99. '| | Integral | Rational | Real | Complex | Number |\n' +
  100. '+--------------------+----------+----------+----------+----------+----------+\n';
  101. const DIAGRAM_2_B =
  102. '┏━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┓\n' +
  103. '┃ │ Integral │ Rational │ Real │ Complex │ Number ┃\n' +
  104. '┠────────────────────┼──────────┼──────────┼──────────┼──────────┼──────────┨\n' +
  105. '┃ int │ ✓ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  106. '┃ fractions.Fraction │ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  107. '┃ float │ │ │ ✓ │ ✓ │ ✓ ┃\n' +
  108. '┃ complex │ │ │ │ ✓ │ ✓ ┃\n' +
  109. '┃ decimal.Decimal │ │ │ │ │ ✓ ┃\n' +
  110. '┗━━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┛\n';
  111. const DIAGRAM_3_A =
  112. '+---------------+----------+----------+----------+----------+----------+\n';
  113. const DIAGRAM_3_B =
  114. '┏━━━━━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┓\n' +
  115. '┃ │ [ !#$%…] │ [a-zA-Z] │ [¼½¾] │ [²³¹] │ [0-9] ┃\n' +
  116. '┠───────────────┼──────────┼──────────┼──────────┼──────────┼──────────┨\n' +
  117. '┃ isprintable() │ ✓ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  118. '┃ isalnum() │ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  119. '┃ isnumeric() │ │ │ ✓ │ ✓ │ ✓ ┃\n' +
  120. '┃ isdigit() │ │ │ │ ✓ │ ✓ ┃\n' +
  121. '┃ isdecimal() │ │ │ │ │ ✓ ┃\n' +
  122. '┗━━━━━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┛\n';
  123. const DIAGRAM_4_A =
  124. "+---------------+-----------------+-----------------+-----------------+-----------------+\n" +
  125. "| | {<float>} | {<float>:f} | {<float>:e} | {<float>:%} |\n" +
  126. "+---------------+-----------------+-----------------+-----------------+-----------------+\n";
  127. const DIAGRAM_4_B =
  128. "┏━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┓\n" +
  129. "┃ │ {&lt;float&gt;} │ {&lt;float&gt;:f} │ {&lt;float&gt;:e} │ {&lt;float&gt;:%} ┃\n" +
  130. "┠───────────────┼─────────────────┼─────────────────┼─────────────────┼─────────────────┨\n" +
  131. "┃ 0.000056789 │ '5.6789e-05' │ '0.000057' │ '5.678900e-05' │ '0.005679%' ┃\n" +
  132. "┃ 0.00056789 │ '0.00056789' │ '0.000568' │ '5.678900e-04' │ '0.056789%' ┃\n" +
  133. "┃ 0.0056789 │ '0.0056789' │ '0.005679' │ '5.678900e-03' │ '0.567890%' ┃\n" +
  134. "┃ 0.056789 │ '0.056789' │ '0.056789' │ '5.678900e-02' │ '5.678900%' ┃\n" +
  135. "┃ 0.56789 │ '0.56789' │ '0.567890' │ '5.678900e-01' │ '56.789000%' ┃\n" +
  136. "┃ 5.6789 │ '5.6789' │ '5.678900' │ '5.678900e+00' │ '567.890000%' ┃\n" +
  137. "┃ 56.789 │ '56.789' │ '56.789000' │ '5.678900e+01' │ '5678.900000%' ┃\n" +
  138. "┃ 567.89 │ '567.89' │ '567.890000' │ '5.678900e+02' │ '56789.000000%' ┃\n" +
  139. "┗━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┛\n";
  140. const DIAGRAM_5_A =
  141. "+---------------+-----------------+-----------------+-----------------+-----------------+\n" +
  142. "| | {<float>:.2} | {<float>:.2f} | {<float>:.2e} | {<float>:.2%} |\n" +
  143. "+---------------+-----------------+-----------------+-----------------+-----------------+\n";
  144. const DIAGRAM_5_B =
  145. "┏━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┓\n" +
  146. "┃ │ {&lt;float&gt;:.2} │ {&lt;float&gt;:.2f} │ {&lt;float&gt;:.2e} │ {&lt;float&gt;:.2%} ┃\n" +
  147. "┠───────────────┼─────────────────┼─────────────────┼─────────────────┼─────────────────┨\n" +
  148. "┃ 0.000056789 │ '5.7e-05' │ '0.00' │ '5.68e-05' │ '0.01%' ┃\n" +
  149. "┃ 0.00056789 │ '0.00057' │ '0.00' │ '5.68e-04' │ '0.06%' ┃\n" +
  150. "┃ 0.0056789 │ '0.0057' │ '0.01' │ '5.68e-03' │ '0.57%' ┃\n" +
  151. "┃ 0.056789 │ '0.057' │ '0.06' │ '5.68e-02' │ '5.68%' ┃\n" +
  152. "┃ 0.56789 │ '0.57' │ '0.57' │ '5.68e-01' │ '56.79%' ┃\n" +
  153. "┃ 5.6789 │ '5.7' │ '5.68' │ '5.68e+00' │ '567.89%' ┃\n" +
  154. "┃ 56.789 │ '5.7e+01' │ '56.79' │ '5.68e+01' │ '5678.90%' ┃\n" +
  155. "┃ 567.89 │ '5.7e+02' │ '567.89' │ '5.68e+02' │ '56789.00%' ┃\n" +
  156. "┗━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┛\n";
  157. const DIAGRAM_6_A =
  158. '+------------+------------+------------+------------+--------------+\n' +
  159. '| | Iterable | Collection | Sequence | abc.Sequence |\n' +
  160. '+------------+------------+------------+------------+--------------+\n';
  161. const DIAGRAM_6_B =
  162. '┏━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━┓\n' +
  163. '┃ │ Iterable │ Collection │ Sequence │ abc.Sequence ┃\n' +
  164. '┠────────────┼────────────┼────────────┼────────────┼──────────────┨\n' +
  165. '┃ iter() │ ! │ ! │ ✓ │ ✓ ┃\n' +
  166. '┃ contains() │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  167. '┃ len() │ │ ! │ ! │ ! ┃\n' +
  168. '┃ getitem() │ │ │ ! │ ! ┃\n' +
  169. '┃ reversed() │ │ │ ✓ │ ✓ ┃\n' +
  170. '┃ index() │ │ │ │ ✓ ┃\n' +
  171. '┃ count() │ │ │ │ ✓ ┃\n' +
  172. '┗━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━┛\n';
  173. const DIAGRAM_7_A =
  174. 'BaseException\n' +
  175. ' +-- SystemExit';
  176. const DIAGRAM_7_B =
  177. "BaseException\n" +
  178. " ├── SystemExit <span class='hljs-comment'># Raised by the sys.exit() function.</span>\n" +
  179. " ├── KeyboardInterrupt <span class='hljs-comment'># Raised when the user hits the interrupt key (ctrl-c).</span>\n" +
  180. " └── Exception <span class='hljs-comment'># User-defined exceptions should be derived from this class.</span>\n" +
  181. " ├── ArithmeticError <span class='hljs-comment'># Base class for arithmetic errors.</span>\n" +
  182. " │ └── ZeroDivisionError <span class='hljs-comment'># Raised when dividing by zero.</span>\n" +
  183. " ├── AttributeError <span class='hljs-comment'># Raised when an attribute is missing.</span>\n" +
  184. " ├── EOFError <span class='hljs-comment'># Raised by input() when it hits end-of-file condition.</span>\n" +
  185. " ├── LookupError <span class='hljs-comment'># Raised when a look-up on a collection fails.</span>\n" +
  186. " │ ├── IndexError <span class='hljs-comment'># Raised when a sequence index is out of range.</span>\n" +
  187. " │ └── KeyError <span class='hljs-comment'># Raised when a dictionary key or set element is not found.</span>\n" +
  188. " ├── NameError <span class='hljs-comment'># Raised when a variable name is not found.</span>\n" +
  189. " ├── OSError <span class='hljs-comment'># Errors such as “file not found” or “disk full” (see Open).</span>\n" +
  190. " │ └── FileNotFoundError <span class='hljs-comment'># When a file or directory is requested but doesn't exist.</span>\n" +
  191. " ├── RuntimeError <span class='hljs-comment'># Raised by errors that don't fall in other categories.</span>\n" +
  192. " │ └── RecursionError <span class='hljs-comment'># Raised when the maximum recursion depth is exceeded.</span>\n" +
  193. " ├── StopIteration <span class='hljs-comment'># Raised by next() when run on an empty iterator.</span>\n" +
  194. " ├── TypeError <span class='hljs-comment'># Raised when an argument is of wrong type.</span>\n" +
  195. " └── ValueError <span class='hljs-comment'># When an argument is of right type but inappropriate value.</span>\n" +
  196. " └── UnicodeError <span class='hljs-comment'># Raised when encoding/decoding strings to/from bytes fails.</span>\n";
  197. const DIAGRAM_8_A =
  198. '+-----------+------------+------------+------------+\n' +
  199. '| | list | dict | set |\n' +
  200. '+-----------+------------+------------+------------+\n';
  201. const DIAGRAM_8_B =
  202. '┏━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓\n' +
  203. '┃ │ list │ dict │ set ┃\n' +
  204. '┠───────────┼────────────┼────────────┼────────────┨\n' +
  205. '┃ getitem() │ IndexError │ KeyError │ ┃\n' +
  206. '┃ pop() │ IndexError │ KeyError │ KeyError ┃\n' +
  207. '┃ remove() │ ValueError │ │ KeyError ┃\n' +
  208. '┃ index() │ ValueError │ │ ┃\n' +
  209. '┗━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
  210. const DIAGRAM_9_A =
  211. '+------------------+--------------+--------------+--------------+\n' +
  212. '| | excel | excel-tab | unix |\n' +
  213. '+------------------+--------------+--------------+--------------+\n';
  214. const DIAGRAM_9_B =
  215. "┏━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┓\n" +
  216. "┃ │ excel │ excel-tab │ unix ┃\n" +
  217. "┠──────────────────┼──────────────┼──────────────┼──────────────┨\n" +
  218. "┃ delimiter │ ',' │ '\\t' │ ',' ┃\n" +
  219. "┃ quotechar │ '\"' │ '\"' │ '\"' ┃\n" +
  220. "┃ doublequote │ True │ True │ True ┃\n" +
  221. "┃ skipinitialspace │ False │ False │ False ┃\n" +
  222. "┃ lineterminator │ '\\r\\n' │ '\\r\\n' │ '\\n' ┃\n" +
  223. "┃ quoting │ 0 │ 0 │ 1 ┃\n" +
  224. "┃ escapechar │ None │ None │ None ┃\n" +
  225. "┗━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┛\n";
  226. const DIAGRAM_10_A =
  227. '+-------------+-------------+\n' +
  228. '| Classes | Metaclasses |\n' +
  229. '+-------------+-------------|\n' +
  230. '| MyClass --> MyMetaClass |\n';
  231. const DIAGRAM_10_B =
  232. '┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┓\n' +
  233. '┃ Classes │ Metaclasses ┃\n' +
  234. '┠─────────────┼─────────────┨\n' +
  235. '┃ MyClass ──→ MyMetaClass ┃\n' +
  236. '┃ │ ↓ ┃\n' +
  237. '┃ object ─────→ type ←╮ ┃\n' +
  238. '┃ │ ↑ ╰──╯ ┃\n' +
  239. '┃ str ──────────╯ ┃\n' +
  240. '┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┛\n';
  241. const DIAGRAM_11_A =
  242. '+-------------+-------------+\n' +
  243. '| Classes | Metaclasses |\n' +
  244. '+-------------+-------------|\n' +
  245. '| MyClass | MyMetaClass |\n';
  246. const DIAGRAM_11_B =
  247. '┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┓\n' +
  248. '┃ Classes │ Metaclasses ┃\n' +
  249. '┠─────────────┼─────────────┨\n' +
  250. '┃ MyClass │ MyMetaClass ┃\n' +
  251. '┃ ↓ │ ↓ ┃\n' +
  252. '┃ object ←───── type ┃\n' +
  253. '┃ ↑ │ ┃\n' +
  254. '┃ str │ ┃\n' +
  255. '┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┛\n';
  256. const DIAGRAM_12_A =
  257. '+-----------+-------------+------+-------------+\n' +
  258. '| sampwidth | min | zero | max |\n' +
  259. '+-----------+-------------+------+-------------+\n';
  260. const DIAGRAM_12_B =
  261. '┏━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━┯━━━━━━━━━━━━━┓\n' +
  262. '┃ sampwidth │ min │ zero │ max ┃\n' +
  263. '┠───────────┼─────────────┼──────┼─────────────┨\n' +
  264. '┃ 1 │ 0 │ 128 │ 255 ┃\n' +
  265. '┃ 2 │ -32768 │ 0 │ 32767 ┃\n' +
  266. '┃ 3 │ -8388608 │ 0 │ 8388607 ┃\n' +
  267. '┃ 4 │ -2147483648 │ 0 │ 2147483647 ┃\n' +
  268. '┗━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━┷━━━━━━━━━━━━━┛\n';
  269. const DIAGRAM_13_A =
  270. '| sr.apply(…) | 3 | sum 3 | s 3 |';
  271. const DIAGRAM_13_B =
  272. "┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┓\n" +
  273. "┃ │ 'sum' │ ['sum'] │ {'s': 'sum'} ┃\n" +
  274. "┠─────────────┼─────────────┼─────────────┼───────────────┨\n" +
  275. "┃ sr.apply(…) │ 3 │ sum 3 │ s 3 ┃\n" +
  276. "┃ sr.agg(…) │ │ │ ┃\n" +
  277. "┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┛\n";
  278. const DIAGRAM_14_A =
  279. '| sr.apply(…) | | rank | |';
  280. const DIAGRAM_14_B =
  281. "┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┓\n" +
  282. "┃ │ 'rank' │ ['rank'] │ {'r': 'rank'} ┃\n" +
  283. "┠─────────────┼─────────────┼─────────────┼───────────────┨\n" +
  284. "┃ sr.apply(…) │ │ rank │ ┃\n" +
  285. "┃ sr.agg(…) │ x 1 │ x 1 │ r x 1 ┃\n" +
  286. "┃ sr.trans(…) │ y 2 │ y 2 │ y 2 ┃\n" +
  287. "┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┛\n";
  288. const DIAGRAM_15_A =
  289. '+------------------------+---------------+------------+------------+--------------------------+';
  290. const DIAGRAM_15_B =
  291. "┏━━━━━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n" +
  292. "┃ │ 'outer' │ 'inner' │ 'left' │ Description ┃\n" +
  293. "┠────────────────────────┼───────────────┼────────────┼────────────┼──────────────────────────┨\n" +
  294. "┃ l.merge(r, on='y', │ x y z │ x y z │ x y z │ Joins/merges on column. ┃\n" +
  295. "┃ how=…) │ 0 1 2 . │ 3 4 5 │ 1 2 . │ Also accepts left_on and ┃\n" +
  296. "┃ │ 1 3 4 5 │ │ 3 4 5 │ right_on parameters. ┃\n" +
  297. "┃ │ 2 . 6 7 │ │ │ Uses 'inner' by default. ┃\n" +
  298. "┠────────────────────────┼───────────────┼────────────┼────────────┼──────────────────────────┨\n" +
  299. "┃ l.join(r, lsuffix='l', │ x yl yr z │ │ x yl yr z │ Joins/merges on row keys.┃\n" +
  300. "┃ rsuffix='r', │ a 1 2 . . │ x yl yr z │ 1 2 . . │ Uses 'left' by default. ┃\n" +
  301. "┃ how=…) │ b 3 4 4 5 │ 3 4 4 5 │ 3 4 4 5 │ If r is a series, it is ┃\n" +
  302. "┃ │ c . . 6 7 │ │ │ first converted to DF. ┃\n" +
  303. "┠────────────────────────┼───────────────┼────────────┼────────────┼──────────────────────────┨\n" +
  304. "┃ pd.concat([l, r], │ x y z │ y │ │ Adds rows at the bottom. ┃\n" +
  305. "┃ axis=0, │ a 1 2 . │ 2 │ │ Uses 'outer' by default. ┃\n" +
  306. "┃ join=…) │ b 3 4 . │ 4 │ │ By default works the ┃\n" +
  307. "┃ │ b . 4 5 │ 4 │ │ same as `l.append(r)`. ┃\n" +
  308. "┃ │ c . 6 7 │ 6 │ │ ┃\n" +
  309. "┠────────────────────────┼───────────────┼────────────┼────────────┼──────────────────────────┨\n" +
  310. "┃ pd.concat([l, r], │ x y y z │ │ │ Adds columns at the ┃\n" +
  311. "┃ axis=1, │ a 1 2 . . │ x y y z │ │ right end. ┃\n" +
  312. "┃ join=…) │ b 3 4 4 5 │ 3 4 4 5 │ │ Uses 'outer' by default. ┃\n" +
  313. "┃ │ c . . 6 7 │ │ │ ┃\n" +
  314. "┠────────────────────────┼───────────────┼────────────┼────────────┼──────────────────────────┨\n" +
  315. "┃ l.combine_first(r) │ x y z │ │ │ Adds missing rows and ┃\n" +
  316. "┃ │ a 1 2 . │ │ │ columns. ┃\n" +
  317. "┃ │ b 3 4 5 │ │ │ ┃\n" +
  318. "┃ │ c . 6 7 │ │ │ ┃\n" +
  319. "┗━━━━━━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━┛\n";
  320. const DIAGRAM_16_A =
  321. '| df.apply(…) | | x y | |';
  322. const DIAGRAM_16_B =
  323. "┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┓\n" +
  324. "┃ │ 'sum' │ ['sum'] │ {'x': 'sum'} ┃\n" +
  325. "┠─────────────┼─────────────┼─────────────┼───────────────┨\n" +
  326. "┃ df.apply(…) │ │ x y │ ┃\n" +
  327. "┃ df.agg(…) │ x 4 │ sum 4 6 │ x 4 ┃\n" +
  328. "┃ │ y 6 │ │ ┃\n" +
  329. "┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┛\n";
  330. const DIAGRAM_17_A =
  331. '| df.apply(…) | x y | x y | x |';
  332. const DIAGRAM_17_B =
  333. "┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┓\n" +
  334. "┃ │ 'rank' │ ['rank'] │ {'x': 'rank'} ┃\n" +
  335. "┠─────────────┼─────────────┼─────────────┼───────────────┨\n" +
  336. "┃ df.apply(…) │ x y │ x y │ x ┃\n" +
  337. "┃ df.agg(…) │ a 1 1 │ rank rank │ a 1 ┃\n" +
  338. "┃ df.trans(…) │ b 2 2 │ a 1 1 │ b 2 ┃\n" +
  339. "┃ │ │ b 2 2 │ ┃\n" +
  340. "┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┛\n";
  341. const DIAGRAM_18_A =
  342. '| gb.agg(…) | x y | x y | x y | x |';
  343. const DIAGRAM_18_B =
  344. "┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┓\n" +
  345. "┃ │ 'sum' │ 'rank' │ ['rank'] │ {'x': 'rank'} ┃\n" +
  346. "┠─────────────┼─────────────┼─────────────┼─────────────┼───────────────┨\n" +
  347. "┃ gb.agg(…) │ x y │ x y │ x y │ x ┃\n" +
  348. "┃ │ z │ a 1 1 │ rank rank │ a 1 ┃\n" +
  349. "┃ │ 3 1 2 │ b 1 1 │ a 1 1 │ b 1 ┃\n" +
  350. "┃ │ 6 11 13 │ c 2 2 │ b 1 1 │ c 2 ┃\n" +
  351. "┃ │ │ │ c 2 2 │ ┃\n" +
  352. "┠─────────────┼─────────────┼─────────────┼─────────────┼───────────────┨\n" +
  353. "┃ gb.trans(…) │ x y │ x y │ │ ┃\n" +
  354. "┃ │ a 1 2 │ a 1 1 │ │ ┃\n" +
  355. "┃ │ b 11 13 │ b 1 1 │ │ ┃\n" +
  356. "┃ │ c 11 13 │ c 1 1 │ │ ┃\n" +
  357. "┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┛\n";
  358. function main() {
  359. const html = getMd();
  360. initDom(html);
  361. modifyPage();
  362. const template = readFile('web/template.html');
  363. const tokens = template.split('<div id=main_container></div>');
  364. const text = `${tokens[0]} ${document.body.innerHTML} ${tokens[1]}`;
  365. writeToFile('index.html', text);
  366. }
  367. function getMd() {
  368. var readme = readFile('README.md');
  369. var readme = readme.replace("#semaphore-event-barrier", "#semaphoreeventbarrier");
  370. const converter = new showdown.Converter();
  371. return converter.makeHtml(readme);
  372. }
  373. function initDom(html) {
  374. const { JSDOM } = jsdom;
  375. const dom = new JSDOM(html);
  376. const $ = (require('jquery'))(dom.window);
  377. global.$ = $;
  378. global.document = dom.window.document;
  379. }
  380. function modifyPage() {
  381. removeOrigToc();
  382. addToc();
  383. insertLinks();
  384. unindentBanner();
  385. updateDiagrams();
  386. highlightCode();
  387. fixPandasDiagram();
  388. removePlotImages();
  389. }
  390. function removeOrigToc() {
  391. const headerContents = $('#contents');
  392. const contentsList = headerContents.next();
  393. headerContents.remove();
  394. contentsList.remove();
  395. }
  396. function addToc() {
  397. const nodes = $.parseHTML(TOC);
  398. $('#main').before(nodes);
  399. }
  400. function insertLinks() {
  401. $('h2').each(function() {
  402. const aId = $(this).attr('id');
  403. const text = $(this).text();
  404. const line = `<a href="#${aId}" name="${aId}">#</a>${text}`;
  405. $(this).html(line);
  406. });
  407. }
  408. function unindentBanner() {
  409. const montyImg = $('img').first();
  410. montyImg.parent().addClass('banner');
  411. const downloadPraragrapth = $('p').first();
  412. downloadPraragrapth.addClass('banner');
  413. }
  414. function updateDiagrams() {
  415. $(`code:contains(${DIAGRAM_1_A})`).html(DIAGRAM_1_B);
  416. $(`code:contains(${DIAGRAM_2_A})`).html(DIAGRAM_2_B);
  417. $(`code:contains(${DIAGRAM_3_A})`).html(DIAGRAM_3_B);
  418. $(`code:contains(${DIAGRAM_4_A})`).html(DIAGRAM_4_B);
  419. $(`code:contains(${DIAGRAM_5_A})`).html(DIAGRAM_5_B);
  420. $(`code:contains(${DIAGRAM_6_A})`).html(DIAGRAM_6_B);
  421. $(`code:contains(${DIAGRAM_7_A})`).html(DIAGRAM_7_B);
  422. $(`code:contains(${DIAGRAM_8_A})`).html(DIAGRAM_8_B);
  423. $(`code:contains(${DIAGRAM_9_A})`).html(DIAGRAM_9_B);
  424. $(`code:contains(${DIAGRAM_10_A})`).html(DIAGRAM_10_B);
  425. $(`code:contains(${DIAGRAM_11_A})`).html(DIAGRAM_11_B);
  426. $(`code:contains(${DIAGRAM_12_A})`).html(DIAGRAM_12_B).removeClass("text").removeClass("language-text").addClass("python");
  427. $(`code:contains(${DIAGRAM_13_A})`).html(DIAGRAM_13_B).removeClass("text").removeClass("language-text").addClass("python");
  428. $(`code:contains(${DIAGRAM_14_A})`).html(DIAGRAM_14_B).removeClass("text").removeClass("language-text").addClass("python");
  429. $(`code:contains(${DIAGRAM_15_A})`).html(DIAGRAM_15_B).removeClass("text").removeClass("language-text").addClass("python");
  430. $(`code:contains(${DIAGRAM_16_A})`).html(DIAGRAM_16_B).removeClass("text").removeClass("language-text").addClass("python");
  431. $(`code:contains(${DIAGRAM_17_A})`).html(DIAGRAM_17_B).removeClass("text").removeClass("language-text").addClass("python");
  432. $(`code:contains(${DIAGRAM_18_A})`).html(DIAGRAM_18_B).removeClass("text").removeClass("language-text").addClass("python");
  433. }
  434. function highlightCode() {
  435. setApaches(['<D>', '<T>', '<DT>', '<TD>', '<a>', '<n>']);
  436. $('code').not('.python').not('.text').not('.bash').not('.apache').addClass('python');
  437. $('code').each(function(index) {
  438. hljs.highlightBlock(this);
  439. });
  440. fixClasses();
  441. fixHighlights();
  442. preventPageBreaks();
  443. fixPageBreaksFile();
  444. fixPageBreaksStruct();
  445. insertPageBreaks();
  446. }
  447. function setApaches(elements) {
  448. for (el of elements) {
  449. $(`code:contains(${el})`).addClass('apache');
  450. }
  451. }
  452. function fixClasses() {
  453. // Changes class="hljs-keyword" to class="hljs-title" of 'class' keyword.
  454. $('.hljs-class').filter(':contains(class \')').find(':first-child').removeClass('hljs-keyword').addClass('hljs-title')
  455. }
  456. function fixHighlights() {
  457. $(`code:contains(@lru_cache(maxsize=None))`).html(LRU_CACHE);
  458. $(`code:contains((self, a=None):)`).html(CONSTRUCTOR_OVERLOADING);
  459. $(`code:contains(make_dataclass(\'<class_name>\')`).html(DATACLASS);
  460. $(`code:contains(shutil.copy)`).html(SHUTIL_COPY);
  461. $(`code:contains(os.rename)`).html(OS_RENAME);
  462. $(`code:contains(\'<class_name>\', <parents_tuple>, <attributes_dict>)`).html(TYPE);
  463. $(`code:contains(ValueError: malformed node)`).html(EVAL);
  464. $(`code:contains(pip3 install tqdm)`).html(PROGRESS_BAR);
  465. $(`code:contains(<el> = <2d_array>[0, 0])`).html(NUMPY_1).removeClass().addClass("python language-python hljs");
  466. $(`code:contains(<1d_array> = <2d_array>[<1d_row_indexes>)`).html(NUMPY_2).removeClass().addClass("python language-python hljs");
  467. $(`code:contains(<2d_bools> = <2d_array> > 0)`).html(NUMPY_3).removeClass().addClass("python language-python hljs");
  468. $(`code:contains(pip3 install pyinstaller)`).html(PYINSTALLER);
  469. $(`ul:contains(Only available in)`).html(INDEX);
  470. }
  471. function preventPageBreaks() {
  472. $(':header').each(function(index) {
  473. var el = $(this)
  474. var untilPre = el.nextUntil('pre')
  475. var untilH2 = el.nextUntil('h2')
  476. if ((untilPre.length < untilH2.length) || el.prop('tagName') === 'H1') {
  477. untilPre.add(el).next().add(el).wrapAll("<div></div>");
  478. } else {
  479. untilH2.add(el).wrapAll("<div></div>");
  480. }
  481. });
  482. }
  483. function fixPageBreaksFile() {
  484. const modesDiv = $('#file').parent().parent().parent()
  485. move(modesDiv, 'file')
  486. move(modesDiv, 'exceptions-1')
  487. }
  488. function fixPageBreaksStruct() {
  489. const formatDiv = $('#floatingpointtypes').parent().parent().parent().parent()
  490. move(formatDiv, 'floatingpointtypes')
  491. move(formatDiv, 'integertypesuseacapitalletterforunsignedtypeminimumandstandardsizesareinbrackets')
  492. move(formatDiv, 'forstandardsizesstartformatstringwith')
  493. }
  494. function move(anchor_el, el_id) {
  495. const el = $('#'+el_id).parent()
  496. anchor_el.after(el)
  497. }
  498. function insertPageBreaks() {
  499. insertPageBreakBefore('#print')
  500. }
  501. function insertPageBreakBefore(an_id) {
  502. $('<div class="pagebreak"></div>').insertBefore($(an_id).parent())
  503. }
  504. function fixPandasDiagram() {
  505. const diagram_15 = '┏━━━━━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━┓';
  506. $(`code:contains(${diagram_15})`).find(".hljs-keyword:contains(and)").after("and");
  507. $(`code:contains(${diagram_15})`).find(".hljs-keyword:contains(as)").after("as");
  508. $(`code:contains(${diagram_15})`).find(".hljs-keyword:contains(is)").after("is");
  509. $(`code:contains(${diagram_15})`).find(".hljs-keyword").remove();
  510. }
  511. function removePlotImages() {
  512. $('img[alt="Covid Deaths"]').remove();
  513. $('img[alt="Covid Cases"]').remove();
  514. }
  515. function readFile(filename) {
  516. try {
  517. return fs.readFileSync(filename, 'utf8');
  518. } catch(e) {
  519. console.error('Error:', e.stack);
  520. }
  521. }
  522. function writeToFile(filename, text) {
  523. try {
  524. return fs.writeFileSync(filename, text, 'utf8');
  525. } catch(e) {
  526. console.error('Error:', e.stack);
  527. }
  528. }
  529. main();