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.

897 lines
70 KiB

4 years ago
5 years ago
3 years ago
5 years ago
4 years ago
2 years ago
5 years ago
5 years ago
2 years ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
5 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
2 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
3 years ago
3 years ago
2 years ago
2 years ago
2 years ago
1 year ago
1 year ago
3 years ago
1 year ago
2 years ago
1 year ago
2 years ago
4 years ago
2 years ago
2 years ago
4 years ago
2 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
3 years ago
3 years ago
5 years ago
2 years ago
6 years ago
2 years ago
2 years ago
2 years ago
6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
5 years ago
2 years ago
5 years ago
1 year ago
2 years ago
2 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
5 years ago
4 years ago
2 years ago
  1. #!/usr/bin/env node
  2. // Usage: node parse.js
  3. //
  4. // Script that creates index.html out of web/template.html and README.md.
  5. //
  6. // It is written in JS because this code used to be executed on the client side.
  7. // To install the Node.js and npm run:
  8. // $ sudo apt install nodejs npm # On macOS use `brew install ...` instead.
  9. //
  10. // To install dependencies globally, run:
  11. // $ npm install -g jsdom jquery showdown highlightjs@9.12.0
  12. //
  13. // If running on macOS and modules can't be found after installation add:
  14. // export NODE_PATH=/usr/local/lib/node_modules
  15. // to the ~/.bash_profile or ~/.bashrc file and run '$ bash'.
  16. //
  17. // To avoid problems with permissions and path variables, install modules
  18. // into project's directory using:
  19. // $ npm install jsdom jquery showdown highlightjs@9.12.0
  20. //
  21. // It is also advisable to add a Bash script into .git/hooks directory, that will
  22. // run this script before every commit. It should be named 'pre-commit' and it
  23. // should contain the following line: `./parse.js`.
  24. const fs = require('fs');
  25. const jsdom = require('jsdom');
  26. const showdown = require('showdown');
  27. const hljs = require('highlightjs');
  28. const TOC =
  29. '<br>' +
  30. '<h2 id="toc">Contents</h2>\n' +
  31. '<pre><code class="hljs bash" style="line-height: 1.3em;"><strong>ToC</strong> = {\n' +
  32. ' <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' +
  33. ' <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' +
  34. ' <strong><span class="hljs-string">\'3. Syntax\'</span></strong>: [<a href="#arguments">Args</a>, <a href="#inline">Inline</a>, <a href="#imports">Import</a>, <a href="#decorator">Decorator</a>, <a href="#class">Class</a>, <a href="#ducktypes">Duck_Types</a>, <a href="#enum">Enum</a>, <a href="#exceptions">Exception</a>],\n' +
  35. ' <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="#paths">Path</a>, <a href="#oscommands">OS_Commands</a>],\n' +
  36. ' <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' +
  37. ' <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="#metaprogramming">Metaprograming</a>, <a href="#eval">Eval</a>, <a href="#coroutines">Coroutine</a>],\n' +
  38. ' <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' +
  39. ' <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>]\n' +
  40. '}\n' +
  41. '</code></pre>\n';
  42. const LRU_CACHE =
  43. '<span class="hljs-keyword">from</span> functools <span class="hljs-keyword">import</span> lru_cache\n' +
  44. '\n' +
  45. '<span class="hljs-meta">@lru_cache(maxsize=None)</span>\n' +
  46. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">fib</span><span class="hljs-params">(n)</span>:</span>\n' +
  47. ' <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';
  48. const PARAMETRIZED_DECORATOR =
  49. '<span class="hljs-keyword">from</span> functools <span class="hljs-keyword">import</span> wraps\n' +
  50. '\n' +
  51. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">debug</span><span class="hljs-params">(print_result=<span class="hljs-keyword">False</span>)</span>:</span>\n' +
  52. ' <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">decorator</span><span class="hljs-params">(func)</span>:</span>\n' +
  53. '<span class="hljs-meta"> @wraps(func)</span>\n' +
  54. ' <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">out</span><span class="hljs-params">(*args, **kwargs)</span>:</span>\n' +
  55. ' result = func(*args, **kwargs)\n' +
  56. ' print(func.__name__, result <span class="hljs-keyword">if</span> print_result <span class="hljs-keyword">else</span> <span class="hljs-string">\'\'</span>)\n' +
  57. ' <span class="hljs-keyword">return</span> result\n' +
  58. ' <span class="hljs-keyword">return</span> out\n' +
  59. ' <span class="hljs-keyword">return</span> decorator\n' +
  60. '\n' +
  61. '<span class="hljs-meta">@debug(print_result=True)</span>\n' +
  62. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">add</span><span class="hljs-params">(x, y)</span>:</span>\n' +
  63. ' <span class="hljs-keyword">return</span> x + y\n';
  64. const REPR_USE_CASES =
  65. 'print/str/repr([&lt;el&gt;])\n' +
  66. 'print/str/repr({&lt;el&gt;: &lt;el&gt;})\n' +
  67. '<span class="hljs-string">f\'<span class="hljs-subst">{&lt;el&gt;!r}</span>\'</span>\n' +
  68. 'Z = dataclasses.make_dataclass(<span class="hljs-string">\'Z\'</span>, [<span class="hljs-string">\'a\'</span>]); print/str/repr(Z(&lt;el&gt;))\n' +
  69. '<span class="hljs-meta">&gt;&gt;&gt; </span>&lt;el&gt;\n';
  70. const CONSTRUCTOR_OVERLOADING =
  71. '<span class="hljs-class"><span class="hljs-keyword">class</span> &lt;<span class="hljs-title">name</span>&gt;:</span>\n' +
  72. ' <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' +
  73. ' self.a = a\n';
  74. const DATACLASS =
  75. '<span class="hljs-keyword">from</span> dataclasses <span class="hljs-keyword">import</span> make_dataclass\n' +
  76. '&lt;class&gt; = make_dataclass(<span class="hljs-string">\'&lt;class_name&gt;\'</span>, &lt;coll_of_attribute_names&gt;)\n' +
  77. '&lt;class&gt; = make_dataclass(<span class="hljs-string">\'&lt;class_name&gt;\'</span>, &lt;coll_of_tuples&gt;)\n' +
  78. '&lt;tuple&gt; = (<span class="hljs-string">\'&lt;attr_name&gt;\'</span>, &lt;type&gt; [, &lt;default_value&gt;])';
  79. const SHUTIL_COPY =
  80. 'shutil.copy(from, to) <span class="hljs-comment"># Copies the file. \'to\' can exist or be a dir.</span>\n' +
  81. 'shutil.copytree(from, to) <span class="hljs-comment"># Copies the directory. \'to\' must not exist.</span>\n';
  82. const OS_RENAME =
  83. 'os.rename(from, to) <span class="hljs-comment"># Renames/moves the file or directory.</span>\n' +
  84. 'os.replace(from, to) <span class="hljs-comment"># Same, but overwrites \'to\' if it exists.</span>\n';
  85. const STRUCT_FORMAT =
  86. '<span class="hljs-section">\'&lt;n&gt;s\'</span><span class="hljs-attribute"></span>';
  87. const TYPE =
  88. '&lt;class&gt; = type(<span class="hljs-string">\'&lt;class_name&gt;\'</span>, &lt;tuple_of_parents&gt;, &lt;dict_of_class_attributes&gt;)';
  89. const EVAL =
  90. '<span class="hljs-meta">&gt;&gt;&gt; </span><span class="hljs-keyword">from</span> ast <span class="hljs-keyword">import</span> literal_eval\n' +
  91. '<span class="hljs-meta">&gt;&gt;&gt; </span>literal_eval(<span class="hljs-string">\'[1, 2, 3]\'</span>)\n' +
  92. '[<span class="hljs-number">1</span>, <span class="hljs-number">2</span>, <span class="hljs-number">3</span>]\n' +
  93. '<span class="hljs-meta">&gt;&gt;&gt; </span>literal_eval(<span class="hljs-string">\'1 + 2\'</span>)\n' +
  94. 'ValueError: malformed node or string\n';
  95. const COROUTINES =
  96. '<span class="hljs-keyword">import</span> asyncio, collections, curses, curses.textpad, enum, random\n' +
  97. '\n' +
  98. 'P = collections.namedtuple(<span class="hljs-string">\'P\'</span>, <span class="hljs-string">\'x y\'</span>) <span class="hljs-comment"># Position</span>\n' +
  99. 'D = enum.Enum(<span class="hljs-string">\'D\'</span>, <span class="hljs-string">\'n e s w\'</span>) <span class="hljs-comment"># Direction</span>\n' +
  100. 'W, H = <span class="hljs-number">15</span>, <span class="hljs-number">7</span> <span class="hljs-comment"># Width, Height</span>\n' +
  101. '\n' +
  102. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">main</span><span class="hljs-params">(screen)</span>:</span>\n' +
  103. ' curses.curs_set(<span class="hljs-number">0</span>) <span class="hljs-comment"># Makes cursor invisible.</span>\n' +
  104. ' screen.nodelay(<span class="hljs-keyword">True</span>) <span class="hljs-comment"># Makes getch() non-blocking.</span>\n' +
  105. ' asyncio.run(main_coroutine(screen)) <span class="hljs-comment"># Starts running asyncio code.</span>\n' +
  106. '\n' +
  107. '<span class="hljs-keyword">async</span> <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">main_coroutine</span><span class="hljs-params">(screen)</span>:</span>\n' +
  108. ' moves = asyncio.Queue()\n' +
  109. ' state = {<span class="hljs-string">\'*\'</span>: P(<span class="hljs-number">0</span>, <span class="hljs-number">0</span>), **{id_: P(W//<span class="hljs-number">2</span>, H//<span class="hljs-number">2</span>) <span class="hljs-keyword">for</span> id_ <span class="hljs-keyword">in</span> range(<span class="hljs-number">10</span>)}}\n' +
  110. ' ai = [random_controller(id_, moves) <span class="hljs-keyword">for</span> id_ <span class="hljs-keyword">in</span> range(<span class="hljs-number">10</span>)]\n' +
  111. ' mvc = [human_controller(screen, moves), model(moves, state), view(state, screen)]\n' +
  112. ' tasks = [asyncio.create_task(cor) <span class="hljs-keyword">for</span> cor <span class="hljs-keyword">in</span> ai + mvc]\n' +
  113. ' <span class="hljs-keyword">await</span> asyncio.wait(tasks, return_when=asyncio.FIRST_COMPLETED)\n' +
  114. '\n' +
  115. '<span class="hljs-keyword">async</span> <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">random_controller</span><span class="hljs-params">(id_, moves)</span>:</span>\n' +
  116. ' <span class="hljs-keyword">while</span> <span class="hljs-keyword">True</span>:\n' +
  117. ' d = random.choice(list(D))\n' +
  118. ' moves.put_nowait((id_, d))\n' +
  119. ' <span class="hljs-keyword">await</span> asyncio.sleep(random.triangular(<span class="hljs-number">0.01</span>, <span class="hljs-number">0.65</span>))\n' +
  120. '\n' +
  121. '<span class="hljs-keyword">async</span> <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">human_controller</span><span class="hljs-params">(screen, moves)</span>:</span>\n' +
  122. ' <span class="hljs-keyword">while</span> <span class="hljs-keyword">True</span>:\n' +
  123. ' ch = screen.getch()\n' +
  124. ' key_mappings = {<span class="hljs-number">258</span>: D.s, <span class="hljs-number">259</span>: D.n, <span class="hljs-number">260</span>: D.w, <span class="hljs-number">261</span>: D.e}\n' +
  125. ' <span class="hljs-keyword">if</span> ch <span class="hljs-keyword">in</span> key_mappings:\n' +
  126. ' moves.put_nowait((<span class="hljs-string">\'*\'</span>, key_mappings[ch]))\n' +
  127. ' <span class="hljs-keyword">await</span> asyncio.sleep(<span class="hljs-number">0.005</span>)\n' +
  128. '\n' +
  129. '<span class="hljs-keyword">async</span> <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">model</span><span class="hljs-params">(moves, state)</span>:</span>\n' +
  130. ' <span class="hljs-keyword">while</span> state[<span class="hljs-string">\'*\'</span>] <span class="hljs-keyword">not</span> <span class="hljs-keyword">in</span> (state[id_] <span class="hljs-keyword">for</span> id_ <span class="hljs-keyword">in</span> range(<span class="hljs-number">10</span>)):\n' +
  131. ' id_, d = <span class="hljs-keyword">await</span> moves.get()\n' +
  132. ' x, y = state[id_]\n' +
  133. ' deltas = {D.n: P(<span class="hljs-number">0</span>, <span class="hljs-number">-1</span>), D.e: P(<span class="hljs-number">1</span>, <span class="hljs-number">0</span>), D.s: P(<span class="hljs-number">0</span>, <span class="hljs-number">1</span>), D.w: P(<span class="hljs-number">-1</span>, <span class="hljs-number">0</span>)}\n' +
  134. ' state[id_] = P((x + deltas[d].x) % W, (y + deltas[d].y) % H)\n' +
  135. '\n' +
  136. '<span class="hljs-keyword">async</span> <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">view</span><span class="hljs-params">(state, screen)</span>:</span>\n' +
  137. ' offset = P(curses.COLS//<span class="hljs-number">2</span> - W//<span class="hljs-number">2</span>, curses.LINES//<span class="hljs-number">2</span> - H//<span class="hljs-number">2</span>)\n' +
  138. ' <span class="hljs-keyword">while</span> <span class="hljs-keyword">True</span>:\n' +
  139. ' screen.erase()\n' +
  140. ' curses.textpad.rectangle(screen, offset.y-<span class="hljs-number">1</span>, offset.x-<span class="hljs-number">1</span>, offset.y+H, offset.x+W)\n' +
  141. ' <span class="hljs-keyword">for</span> id_, p <span class="hljs-keyword">in</span> state.items():\n' +
  142. ' screen.addstr(offset.y + (p.y - state[<span class="hljs-string">\'*\'</span>].y + H//<span class="hljs-number">2</span>) % H,\n' +
  143. ' offset.x + (p.x - state[<span class="hljs-string">\'*\'</span>].x + W//<span class="hljs-number">2</span>) % W, str(id_))\n' +
  144. ' <span class="hljs-keyword">await</span> asyncio.sleep(<span class="hljs-number">0.005</span>)\n' +
  145. '\n' +
  146. '<span class="hljs-keyword">if</span> __name__ == <span class="hljs-string">\'__main__\'</span>:\n' +
  147. ' curses.wrapper(main)\n';
  148. const CURSES =
  149. '<span class="hljs-keyword">import</span> curses, curses.ascii, os\n' +
  150. '<span class="hljs-keyword">from</span> curses <span class="hljs-keyword">import</span> A_REVERSE, KEY_DOWN, KEY_UP, KEY_LEFT, KEY_RIGHT, KEY_ENTER\n' +
  151. '\n' +
  152. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">main</span><span class="hljs-params">(screen)</span>:</span>\n' +
  153. ' ch, first, selected, paths = <span class="hljs-number">0</span>, <span class="hljs-number">0</span>, <span class="hljs-number">0</span>, os.listdir()\n' +
  154. ' <span class="hljs-keyword">while</span> ch != curses.ascii.ESC:\n' +
  155. ' height, width = screen.getmaxyx()\n' +
  156. ' screen.erase()\n' +
  157. ' <span class="hljs-keyword">for</span> y, filename <span class="hljs-keyword">in</span> enumerate(paths[first : first+height]):\n' +
  158. ' color = A_REVERSE <span class="hljs-keyword">if</span> filename == paths[selected] <span class="hljs-keyword">else</span> <span class="hljs-number">0</span>\n' +
  159. ' screen.addstr(y, <span class="hljs-number">0</span>, filename[:width-<span class="hljs-number">1</span>], color)\n' +
  160. ' ch = screen.getch()\n' +
  161. ' selected += (ch == KEY_DOWN) - (ch == KEY_UP)\n' +
  162. ' selected = max(<span class="hljs-number">0</span>, min(len(paths)-<span class="hljs-number">1</span>, selected))\n' +
  163. ' first += (selected &gt;= first + height) - (selected &lt; first)\n' +
  164. ' <span class="hljs-keyword">if</span> ch <span class="hljs-keyword">in</span> [KEY_LEFT, KEY_RIGHT, KEY_ENTER, ord(<span class="hljs-string">\'\\n\'</span>), ord(<span class="hljs-string">\'\\r\'</span>)]:\n' +
  165. ' new_dir = <span class="hljs-string">\'..\'</span> <span class="hljs-keyword">if</span> ch == KEY_LEFT <span class="hljs-keyword">else</span> paths[selected]\n' +
  166. ' <span class="hljs-keyword">if</span> os.path.isdir(new_dir):\n' +
  167. ' os.chdir(new_dir)\n' +
  168. ' first, selected, paths = <span class="hljs-number">0</span>, <span class="hljs-number">0</span>, os.listdir()\n' +
  169. '\n' +
  170. '<span class="hljs-keyword">if</span> __name__ == <span class="hljs-string">\'__main__\'</span>:\n' +
  171. ' curses.wrapper(main)\n';
  172. const PROGRESS_BAR =
  173. '<span class="hljs-comment"># $ pip3 install tqdm</span>\n' +
  174. '<span class="hljs-meta">&gt;&gt;&gt; </span><span class="hljs-keyword">from</span> tqdm <span class="hljs-keyword">import</span> tqdm\n' +
  175. '<span class="hljs-meta">&gt;&gt;&gt; </span><span class="hljs-keyword">from</span> time <span class="hljs-keyword">import</span> sleep\n' +
  176. '<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' +
  177. '<span class="hljs-meta">... </span> sleep(<span class="hljs-number">1</span>)\n' +
  178. 'Processing: 100%|████████████████████| 3/3 [00:03&lt;00:00, 1.00s/it]\n';
  179. const LOGGING_EXAMPLE =
  180. '<span class="hljs-meta">&gt;&gt;&gt; </span>logging.basicConfig(level=<span class="hljs-string">\'WARNING\'</span>)\n' +
  181. '<span class="hljs-meta">&gt;&gt;&gt; </span>logger = logging.getLogger(<span class="hljs-string">\'my_module\'</span>)\n' +
  182. '<span class="hljs-meta">&gt;&gt;&gt; </span>handler = logging.FileHandler(<span class="hljs-string">\'test.log\'</span>)\n' +
  183. '<span class="hljs-meta">&gt;&gt;&gt; </span>formatter = logging.Formatter(<span class="hljs-string">\'%(asctime)s %(levelname)s:%(name)s:%(message)s\'</span>)\n' +
  184. '<span class="hljs-meta">&gt;&gt;&gt; </span>handler.setFormatter(formatter)\n' +
  185. '<span class="hljs-meta">&gt;&gt;&gt; </span>logger.addHandler(handler)\n' +
  186. '<span class="hljs-meta">&gt;&gt;&gt; </span>logger.critical(<span class="hljs-string">\'Running out of disk space.\'</span>)\n' +
  187. 'CRITICAL:my_module:Running out of disk space.\n' +
  188. '<span class="hljs-meta">&gt;&gt;&gt; </span>open(<span class="hljs-string">\'test.log\'</span>).read()\n' +
  189. '2023-02-07 23:21:01,430 CRITICAL:my_module:Running out of disk space.\n';
  190. const AUDIO =
  191. '<span class="hljs-keyword">from</span> math <span class="hljs-keyword">import</span> pi, sin\n' +
  192. 'samples_f = (sin(i * <span class="hljs-number">2</span> * pi * <span class="hljs-number">440</span> / <span class="hljs-number">44100</span>) <span class="hljs-keyword">for</span> i <span class="hljs-keyword">in</span> range(<span class="hljs-number">100_000</span>))\n' +
  193. 'write_to_wav_file(<span class="hljs-string">\'test.wav\'</span>, samples_f)\n';
  194. const MARIO =
  195. '<span class="hljs-keyword">import</span> collections, dataclasses, enum, io, itertools <span class="hljs-keyword">as</span> it, pygame <span class="hljs-keyword">as</span> pg, urllib.request\n' +
  196. '<span class="hljs-keyword">from</span> random <span class="hljs-keyword">import</span> randint\n' +
  197. '\n' +
  198. 'P = collections.namedtuple(<span class="hljs-string">\'P\'</span>, <span class="hljs-string">\'x y\'</span>) <span class="hljs-comment"># Position</span>\n' +
  199. 'D = enum.Enum(<span class="hljs-string">\'D\'</span>, <span class="hljs-string">\'n e s w\'</span>) <span class="hljs-comment"># Direction</span>\n' +
  200. 'W, H, MAX_S = <span class="hljs-number">50</span>, <span class="hljs-number">50</span>, P(<span class="hljs-number">5</span>, <span class="hljs-number">10</span>) <span class="hljs-comment"># Width, Height, Max speed</span>\n' +
  201. '\n' +
  202. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">main</span><span class="hljs-params">()</span>:</span>\n' +
  203. ' <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">get_screen</span><span class="hljs-params">()</span>:</span>\n' +
  204. ' pg.init()\n' +
  205. ' <span class="hljs-keyword">return</span> pg.display.set_mode((W*<span class="hljs-number">16</span>, H*<span class="hljs-number">16</span>))\n' +
  206. ' <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">get_images</span><span class="hljs-params">()</span>:</span>\n' +
  207. ' url = <span class="hljs-string">\'https://gto76.github.io/python-cheatsheet/web/mario_bros.png\'</span>\n' +
  208. ' img = pg.image.load(io.BytesIO(urllib.request.urlopen(url).read()))\n' +
  209. ' <span class="hljs-keyword">return</span> [img.subsurface(get_rect(x, <span class="hljs-number">0</span>)) <span class="hljs-keyword">for</span> x <span class="hljs-keyword">in</span> range(img.get_width() // <span class="hljs-number">16</span>)]\n' +
  210. ' <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">get_mario</span><span class="hljs-params">()</span>:</span>\n' +
  211. ' Mario = dataclasses.make_dataclass(<span class="hljs-string">\'Mario\'</span>, <span class="hljs-string">\'rect spd facing_left frame_cycle\'</span>.split())\n' +
  212. ' <span class="hljs-keyword">return</span> Mario(get_rect(<span class="hljs-number">1</span>, <span class="hljs-number">1</span>), P(<span class="hljs-number">0</span>, <span class="hljs-number">0</span>), <span class="hljs-keyword">False</span>, it.cycle(range(<span class="hljs-number">3</span>)))\n' +
  213. ' <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">get_tiles</span><span class="hljs-params">()</span>:</span>\n' +
  214. ' border = [(x, y) <span class="hljs-keyword">for</span> x <span class="hljs-keyword">in</span> range(W) <span class="hljs-keyword">for</span> y <span class="hljs-keyword">in</span> range(H) <span class="hljs-keyword">if</span> x <span class="hljs-keyword">in</span> [<span class="hljs-number">0</span>, W-<span class="hljs-number">1</span>] <span class="hljs-keyword">or</span> y <span class="hljs-keyword">in</span> [<span class="hljs-number">0</span>, H-<span class="hljs-number">1</span>]]\n' +
  215. ' platforms = [(randint(<span class="hljs-number">1</span>, W-<span class="hljs-number">2</span>), randint(<span class="hljs-number">2</span>, H-<span class="hljs-number">2</span>)) <span class="hljs-keyword">for</span> _ <span class="hljs-keyword">in</span> range(W*H // <span class="hljs-number">10</span>)]\n' +
  216. ' <span class="hljs-keyword">return</span> [get_rect(x, y) <span class="hljs-keyword">for</span> x, y <span class="hljs-keyword">in</span> border + platforms]\n' +
  217. ' <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">get_rect</span><span class="hljs-params">(x, y)</span>:</span>\n' +
  218. ' <span class="hljs-keyword">return</span> pg.Rect(x*<span class="hljs-number">16</span>, y*<span class="hljs-number">16</span>, <span class="hljs-number">16</span>, <span class="hljs-number">16</span>)\n' +
  219. ' run(get_screen(), get_images(), get_mario(), get_tiles())\n' +
  220. '\n' +
  221. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">run</span><span class="hljs-params">(screen, images, mario, tiles)</span>:</span>\n' +
  222. ' clock = pg.time.Clock()\n' +
  223. ' pressed = set()\n' +
  224. ' <span class="hljs-keyword">while</span> <span class="hljs-keyword">not</span> pg.event.get(pg.QUIT) <span class="hljs-keyword">and</span> clock.tick(<span class="hljs-number">28</span>):\n' +
  225. ' keys = {pg.K_UP: D.n, pg.K_RIGHT: D.e, pg.K_DOWN: D.s, pg.K_LEFT: D.w}\n' +
  226. ' pressed |= {keys.get(e.key) <span class="hljs-keyword">for</span> e <span class="hljs-keyword">in</span> pg.event.get(pg.KEYDOWN)}\n' +
  227. ' pressed -= {keys.get(e.key) <span class="hljs-keyword">for</span> e <span class="hljs-keyword">in</span> pg.event.get(pg.KEYUP)}\n' +
  228. ' update_speed(mario, tiles, pressed)\n' +
  229. ' update_position(mario, tiles)\n' +
  230. ' draw(screen, images, mario, tiles, pressed)\n' +
  231. '\n' +
  232. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">update_speed</span><span class="hljs-params">(mario, tiles, pressed)</span>:</span>\n' +
  233. ' x, y = mario.spd\n' +
  234. ' x += <span class="hljs-number">2</span> * ((D.e <span class="hljs-keyword">in</span> pressed) - (D.w <span class="hljs-keyword">in</span> pressed))\n' +
  235. ' x += (x &lt; <span class="hljs-number">0</span>) - (x &gt; <span class="hljs-number">0</span>)\n' +
  236. ' y += <span class="hljs-number">1</span> <span class="hljs-keyword">if</span> D.s <span class="hljs-keyword">not</span> <span class="hljs-keyword">in</span> get_boundaries(mario.rect, tiles) <span class="hljs-keyword">else</span> (D.n <span class="hljs-keyword">in</span> pressed) * <span class="hljs-number">-10</span>\n' +
  237. ' mario.spd = P(x=max(-MAX_S.x, min(MAX_S.x, x)), y=max(-MAX_S.y, min(MAX_S.y, y)))\n' +
  238. '\n' +
  239. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">update_position</span><span class="hljs-params">(mario, tiles)</span>:</span>\n' +
  240. ' x, y = mario.rect.topleft\n' +
  241. ' n_steps = max(abs(s) <span class="hljs-keyword">for</span> s <span class="hljs-keyword">in</span> mario.spd)\n' +
  242. ' <span class="hljs-keyword">for</span> _ <span class="hljs-keyword">in</span> range(n_steps):\n' +
  243. ' mario.spd = stop_on_collision(mario.spd, get_boundaries(mario.rect, tiles))\n' +
  244. ' mario.rect.topleft = x, y = x + (mario.spd.x / n_steps), y + (mario.spd.y / n_steps)\n' +
  245. '\n' +
  246. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">get_boundaries</span><span class="hljs-params">(rect, tiles)</span>:</span>\n' +
  247. ' deltas = {D.n: P(<span class="hljs-number">0</span>, <span class="hljs-number">-1</span>), D.e: P(<span class="hljs-number">1</span>, <span class="hljs-number">0</span>), D.s: P(<span class="hljs-number">0</span>, <span class="hljs-number">1</span>), D.w: P(<span class="hljs-number">-1</span>, <span class="hljs-number">0</span>)}\n' +
  248. ' <span class="hljs-keyword">return</span> {d <span class="hljs-keyword">for</span> d, delta <span class="hljs-keyword">in</span> deltas.items() <span class="hljs-keyword">if</span> rect.move(delta).collidelist(tiles) != <span class="hljs-number">-1</span>}\n' +
  249. '\n' +
  250. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">stop_on_collision</span><span class="hljs-params">(spd, bounds)</span>:</span>\n' +
  251. ' <span class="hljs-keyword">return</span> P(x=<span class="hljs-number">0</span> <span class="hljs-keyword">if</span> (D.w <span class="hljs-keyword">in</span> bounds <span class="hljs-keyword">and</span> spd.x &lt; <span class="hljs-number">0</span>) <span class="hljs-keyword">or</span> (D.e <span class="hljs-keyword">in</span> bounds <span class="hljs-keyword">and</span> spd.x &gt; <span class="hljs-number">0</span>) <span class="hljs-keyword">else</span> spd.x,\n' +
  252. ' y=<span class="hljs-number">0</span> <span class="hljs-keyword">if</span> (D.n <span class="hljs-keyword">in</span> bounds <span class="hljs-keyword">and</span> spd.y &lt; <span class="hljs-number">0</span>) <span class="hljs-keyword">or</span> (D.s <span class="hljs-keyword">in</span> bounds <span class="hljs-keyword">and</span> spd.y &gt; <span class="hljs-number">0</span>) <span class="hljs-keyword">else</span> spd.y)\n' +
  253. '\n' +
  254. '<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">draw</span><span class="hljs-params">(screen, images, mario, tiles, pressed)</span>:</span>\n' +
  255. ' <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">get_marios_image_index</span><span class="hljs-params">()</span>:</span>\n' +
  256. ' <span class="hljs-keyword">if</span> D.s <span class="hljs-keyword">not</span> <span class="hljs-keyword">in</span> get_boundaries(mario.rect, tiles):\n' +
  257. ' <span class="hljs-keyword">return</span> <span class="hljs-number">4</span>\n' +
  258. ' <span class="hljs-keyword">return</span> next(mario.frame_cycle) <span class="hljs-keyword">if</span> {D.w, D.e} &amp; pressed <span class="hljs-keyword">else</span> <span class="hljs-number">6</span>\n' +
  259. ' screen.fill((<span class="hljs-number">85</span>, <span class="hljs-number">168</span>, <span class="hljs-number">255</span>))\n' +
  260. ' mario.facing_left = (D.w <span class="hljs-keyword">in</span> pressed) <span class="hljs-keyword">if</span> {D.w, D.e} &amp; pressed <span class="hljs-keyword">else</span> mario.facing_left\n' +
  261. ' screen.blit(images[get_marios_image_index() + mario.facing_left * <span class="hljs-number">9</span>], mario.rect)\n' +
  262. ' <span class="hljs-keyword">for</span> t <span class="hljs-keyword">in</span> tiles:\n' +
  263. ' screen.blit(images[<span class="hljs-number">18</span> <span class="hljs-keyword">if</span> t.x <span class="hljs-keyword">in</span> [<span class="hljs-number">0</span>, (W-<span class="hljs-number">1</span>)*<span class="hljs-number">16</span>] <span class="hljs-keyword">or</span> t.y <span class="hljs-keyword">in</span> [<span class="hljs-number">0</span>, (H-<span class="hljs-number">1</span>)*<span class="hljs-number">16</span>] <span class="hljs-keyword">else</span> <span class="hljs-number">19</span>], t)\n' +
  264. ' pg.display.flip()\n' +
  265. '\n' +
  266. '<span class="hljs-keyword">if</span> __name__ == <span class="hljs-string">\'__main__\'</span>:\n' +
  267. ' main()\n';
  268. const PYINSTALLER =
  269. '$ pip3 install pyinstaller\n' +
  270. '$ pyinstaller script.py <span class="hljs-comment"># Compiles into \'./dist/script\' directory.</span>\n' +
  271. '$ pyinstaller script.py --onefile <span class="hljs-comment"># Compiles into \'./dist/script\' console app.</span>\n' +
  272. '$ pyinstaller script.py --windowed <span class="hljs-comment"># Compiles into \'./dist/script\' windowed app.</span>\n' +
  273. '$ pyinstaller script.py --add-data \'&lt;path&gt;:.\' <span class="hljs-comment"># Adds file to the root of the executable.</span>\n';
  274. const INDEX =
  275. '<li><strong>Only available in the <a href="https://transactions.sendowl.com/products/78175486/4422834F/view">PDF</a>.</strong></li>\n' +
  276. '<li><strong>Ctrl+F / ⌘F is usually sufficient.</strong></li>\n' +
  277. '<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';
  278. const DIAGRAM_1_A =
  279. '+------------------+------------+------------+------------+\n' +
  280. '| | Iterable | Collection | Sequence |\n' +
  281. '+------------------+------------+------------+------------+\n';
  282. const DIAGRAM_1_B =
  283. '┏━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓\n' +
  284. '┃ │ Iterable │ Collection │ Sequence ┃\n' +
  285. '┠──────────────────┼────────────┼────────────┼────────────┨\n' +
  286. '┃ list, range, str │ ✓ │ ✓ │ ✓ ┃\n' +
  287. '┃ dict, set │ ✓ │ ✓ │ ┃\n' +
  288. '┃ iter │ ✓ │ │ ┃\n' +
  289. '┗━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
  290. const DIAGRAM_2_A =
  291. '+--------------------+----------+----------+----------+----------+----------+\n' +
  292. '| | Number | Complex | Real | Rational | Integral |\n' +
  293. '+--------------------+----------+----------+----------+----------+----------+\n';
  294. const DIAGRAM_2_B =
  295. '┏━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┓\n' +
  296. '┃ │ Number │ Complex │ Real │ Rational │ Integral ┃\n' +
  297. '┠────────────────────┼──────────┼──────────┼──────────┼──────────┼──────────┨\n' +
  298. '┃ int │ ✓ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  299. '┃ fractions.Fraction │ ✓ │ ✓ │ ✓ │ ✓ │ ┃\n' +
  300. '┃ float │ ✓ │ ✓ │ ✓ │ │ ┃\n' +
  301. '┃ complex │ ✓ │ ✓ │ │ │ ┃\n' +
  302. '┃ decimal.Decimal │ ✓ │ │ │ │ ┃\n' +
  303. '┗━━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┛\n';
  304. const DIAGRAM_3_A =
  305. '+---------------+----------+----------+----------+----------+----------+\n';
  306. const DIAGRAM_3_B =
  307. '┏━━━━━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┓\n' +
  308. '┃ │ [ !#$%…] │ [a-zA-Z] │ [¼½¾] │ [²³¹] │ [0-9] ┃\n' +
  309. '┠───────────────┼──────────┼──────────┼──────────┼──────────┼──────────┨\n' +
  310. '┃ isprintable() │ ✓ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  311. '┃ isalnum() │ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  312. '┃ isnumeric() │ │ │ ✓ │ ✓ │ ✓ ┃\n' +
  313. '┃ isdigit() │ │ │ │ ✓ │ ✓ ┃\n' +
  314. '┃ isdecimal() │ │ │ │ │ ✓ ┃\n' +
  315. '┗━━━━━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┛\n';
  316. const DIAGRAM_4_A =
  317. "+--------------+----------------+----------------+----------------+----------------+\n" +
  318. "| | {<float>} | {<float>:f} | {<float>:e} | {<float>:%} |\n" +
  319. "+--------------+----------------+----------------+----------------+----------------+\n";
  320. const DIAGRAM_4_B =
  321. "┏━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┓\n" +
  322. "┃ │ {&lt;float&gt;} │ {&lt;float&gt;:f} │ {&lt;float&gt;:e} │ {&lt;float&gt;:%} ┃\n" +
  323. "┠──────────────┼────────────────┼────────────────┼────────────────┼────────────────┨\n" +
  324. "┃ 0.000056789 │ '5.6789e-05' │ '0.000057' │ '5.678900e-05' │ '0.005679%' ┃\n" +
  325. "┃ 0.00056789 │ '0.00056789' │ '0.000568' │ '5.678900e-04' │ '0.056789%' ┃\n" +
  326. "┃ 0.0056789 │ '0.0056789' │ '0.005679' │ '5.678900e-03' │ '0.567890%' ┃\n" +
  327. "┃ 0.056789 │ '0.056789' │ '0.056789' │ '5.678900e-02' │ '5.678900%' ┃\n" +
  328. "┃ 0.56789 │ '0.56789' │ '0.567890' │ '5.678900e-01' │ '56.789000%' ┃\n" +
  329. "┃ 5.6789 │ '5.6789' │ '5.678900' │ '5.678900e+00' │ '567.890000%' ┃\n" +
  330. "┃ 56.789 │ '56.789' │ '56.789000' │ '5.678900e+01' │ '5678.900000%' ┃\n" +
  331. "┗━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┛\n" +
  332. "\n" +
  333. "┏━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┓\n" +
  334. "┃ │ {&lt;float&gt;:.2} │ {&lt;float&gt;:.2f} │ {&lt;float&gt;:.2e} │ {&lt;float&gt;:.2%} ┃\n" +
  335. "┠──────────────┼────────────────┼────────────────┼────────────────┼────────────────┨\n" +
  336. "┃ 0.000056789 │ '5.7e-05' │ '0.00' │ '5.68e-05' │ '0.01%' ┃\n" +
  337. "┃ 0.00056789 │ '0.00057' │ '0.00' │ '5.68e-04' │ '0.06%' ┃\n" +
  338. "┃ 0.0056789 │ '0.0057' │ '0.01' │ '5.68e-03' │ '0.57%' ┃\n" +
  339. "┃ 0.056789 │ '0.057' │ '0.06' │ '5.68e-02' │ '5.68%' ┃\n" +
  340. "┃ 0.56789 │ '0.57' │ '0.57' │ '5.68e-01' │ '56.79%' ┃\n" +
  341. "┃ 5.6789 │ '5.7' │ '5.68' │ '5.68e+00' │ '567.89%' ┃\n" +
  342. "┃ 56.789 │ '5.7e+01' │ '56.79' │ '5.68e+01' │ '5678.90%' ┃\n" +
  343. "┗━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┛\n";
  344. const DIAGRAM_5_A =
  345. "+--------------+----------------+----------------+----------------+----------------+\n" +
  346. "| | {<float>:.2} | {<float>:.2f} | {<float>:.2e} | {<float>:.2%} |\n" +
  347. "+--------------+----------------+----------------+----------------+----------------+\n";
  348. const DIAGRAM_6_A =
  349. '+------------+------------+------------+------------+--------------+\n' +
  350. '| | Iterable | Collection | Sequence | abc.Sequence |\n' +
  351. '+------------+------------+------------+------------+--------------+\n';
  352. const DIAGRAM_6_B =
  353. '┏━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━┓\n' +
  354. '┃ │ Iterable │ Collection │ Sequence │ abc.Sequence ┃\n' +
  355. '┠────────────┼────────────┼────────────┼────────────┼──────────────┨\n' +
  356. '┃ iter() │ ! │ ! │ ✓ │ ✓ ┃\n' +
  357. '┃ contains() │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  358. '┃ len() │ │ ! │ ! │ ! ┃\n' +
  359. '┃ getitem() │ │ │ ! │ ! ┃\n' +
  360. '┃ reversed() │ │ │ ✓ │ ✓ ┃\n' +
  361. '┃ index() │ │ │ │ ✓ ┃\n' +
  362. '┃ count() │ │ │ │ ✓ ┃\n' +
  363. '┗━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━┛\n';
  364. const DIAGRAM_7_A =
  365. 'BaseException\n' +
  366. ' +-- SystemExit';
  367. const DIAGRAM_7_B =
  368. "BaseException\n" +
  369. " ├── SystemExit <span class='hljs-comment'># Raised by the sys.exit() function.</span>\n" +
  370. " ├── KeyboardInterrupt <span class='hljs-comment'># Raised when the user hits the interrupt key (ctrl-c).</span>\n" +
  371. " └── Exception <span class='hljs-comment'># User-defined exceptions should be derived from this class.</span>\n" +
  372. " ├── ArithmeticError <span class='hljs-comment'># Base class for arithmetic errors.</span>\n" +
  373. " │ └── ZeroDivisionError <span class='hljs-comment'># Raised when dividing by zero.</span>\n" +
  374. " ├── AssertionError <span class='hljs-comment'># Raised by `assert &lt;exp&gt;` if expression returns false value.</span>\n" +
  375. " ├── AttributeError <span class='hljs-comment'># Raised when object doesn't have requested attribute/method.</span>\n" +
  376. " ├── EOFError <span class='hljs-comment'># Raised by input() when it hits an end-of-file condition.</span>\n" +
  377. " ├── LookupError <span class='hljs-comment'># Base class for errors when a collection can't find an item.</span>\n" +
  378. " │ ├── IndexError <span class='hljs-comment'># Raised when a sequence index is out of range.</span>\n" +
  379. " │ └── KeyError <span class='hljs-comment'># Raised when a dictionary key or set element is missing.</span>\n" +
  380. " ├── MemoryError <span class='hljs-comment'># Out of memory. Could be too late to start deleting vars.</span>\n" +
  381. " ├── NameError <span class='hljs-comment'># Raised when nonexistent name (variable/func/class) is used.</span>\n" +
  382. " │ └── UnboundLocalError <span class='hljs-comment'># Raised when local name is used before it's being defined.</span>\n" +
  383. " ├── OSError <span class='hljs-comment'># Errors such as FileExistsError/PermissionError (see Open).</span>\n" +
  384. " ├── RuntimeError <span class='hljs-comment'># Raised by errors that don't fall into other categories.</span>\n" +
  385. " │ └── RecursionError <span class='hljs-comment'># Raised when the maximum recursion depth is exceeded.</span>\n" +
  386. " ├── StopIteration <span class='hljs-comment'># Raised by next() when run on an empty iterator.</span>\n" +
  387. " ├── TypeError <span class='hljs-comment'># Raised when an argument is of the wrong type.</span>\n" +
  388. " └── ValueError <span class='hljs-comment'># When argument has the right type but inappropriate value.</span>\n" +
  389. " └── UnicodeError <span class='hljs-comment'># Raised when encoding/decoding strings to/from bytes fails.</span>\n";
  390. const DIAGRAM_8_A =
  391. '+-----------+------------+------------+------------+\n' +
  392. '| | List | Set | Dict |\n' +
  393. '+-----------+------------+------------+------------+\n';
  394. const DIAGRAM_8_B =
  395. '┏━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓\n' +
  396. '┃ │ List │ Set │ Dict ┃\n' +
  397. '┠───────────┼────────────┼────────────┼────────────┨\n' +
  398. '┃ getitem() │ IndexError │ │ KeyError ┃\n' +
  399. '┃ pop() │ IndexError │ KeyError │ KeyError ┃\n' +
  400. '┃ remove() │ ValueError │ KeyError │ ┃\n' +
  401. '┃ index() │ ValueError │ │ ┃\n' +
  402. '┗━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
  403. const DIAGRAM_9_A =
  404. '+------------------+--------------+--------------+--------------+\n' +
  405. '| | excel | excel-tab | unix |\n' +
  406. '+------------------+--------------+--------------+--------------+\n';
  407. const DIAGRAM_9_B =
  408. "┏━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┓\n" +
  409. "┃ │ excel │ excel-tab │ unix ┃\n" +
  410. "┠──────────────────┼──────────────┼──────────────┼──────────────┨\n" +
  411. "┃ delimiter │ ',' │ '\\t' │ ',' ┃\n" +
  412. "┃ quotechar │ '\"' │ '\"' │ '\"' ┃\n" +
  413. "┃ doublequote │ True │ True │ True ┃\n" +
  414. "┃ skipinitialspace │ False │ False │ False ┃\n" +
  415. "┃ lineterminator │ '\\r\\n' │ '\\r\\n' │ '\\n' ┃\n" +
  416. "┃ quoting │ 0 │ 0 │ 1 ┃\n" +
  417. "┃ escapechar │ None │ None │ None ┃\n" +
  418. "┗━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┛\n";
  419. const DIAGRAM_95_A =
  420. "+------------+--------------+-----------+-----------------------------------+\n" +
  421. "| Dialect | pip3 install | import | Dependencies |\n" +
  422. "+------------+--------------+-----------+-----------------------------------+\n";
  423. const DIAGRAM_95_B =
  424. "┏━━━━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n" +
  425. "┃ Dialect │ pip3 install │ import │ Dependencies ┃\n" +
  426. "┠────────────┼──────────────┼───────────┼───────────────────────────────────┨\n" +
  427. "┃ mysql │ mysqlclient │ MySQLdb │ www.pypi.org/project/mysqlclient ┃\n" +
  428. "┃ postgresql │ psycopg2 │ psycopg2 │ www.psycopg.org/docs/install.html ┃\n" +
  429. "┃ mssql │ pyodbc │ pyodbc │ apt install g++ unixodbc-dev ┃\n" +
  430. "┃ oracle │ cx_oracle │ cx_Oracle │ Oracle Instant Client ┃\n" +
  431. "┗━━━━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛\n";
  432. const DIAGRAM_10_A =
  433. '+-------------+-------------+\n' +
  434. '| Classes | Metaclasses |\n' +
  435. '+-------------+-------------|\n' +
  436. '| MyClass <-- MyMetaClass |\n';
  437. const DIAGRAM_10_B =
  438. '┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┓\n' +
  439. '┃ Classes │ Metaclasses ┃\n' +
  440. '┠─────────────┼─────────────┨\n' +
  441. '┃ MyClass ←──╴MyMetaClass ┃\n' +
  442. '┃ │ ↑ ┃\n' +
  443. '┃ object ←─────╴type ←╮ ┃\n' +
  444. '┃ │ │ ╰──╯ ┃\n' +
  445. '┃ str ←─────────╯ ┃\n' +
  446. '┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┛\n';
  447. const DIAGRAM_11_A =
  448. '+-------------+-------------+\n' +
  449. '| Classes | Metaclasses |\n' +
  450. '+-------------+-------------|\n' +
  451. '| MyClass | MyMetaClass |\n';
  452. const DIAGRAM_11_B =
  453. '┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┓\n' +
  454. '┃ Classes │ Metaclasses ┃\n' +
  455. '┠─────────────┼─────────────┨\n' +
  456. '┃ MyClass │ MyMetaClass ┃\n' +
  457. '┃ ↑ │ ↑ ┃\n' +
  458. '┃ object╶─────→ type ┃\n' +
  459. '┃ ↓ │ ┃\n' +
  460. '┃ str │ ┃\n' +
  461. '┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┛\n';
  462. const DIAGRAM_12_A =
  463. '+-----------+-----------+------+-----------+\n' +
  464. '| sampwidth | min | zero | max |\n' +
  465. '+-----------+-----------+------+-----------+\n';
  466. const DIAGRAM_12_B =
  467. '┏━━━━━━━━━━━┯━━━━━━━━━━━┯━━━━━━┯━━━━━━━━━━━┓\n' +
  468. '┃ sampwidth │ min │ zero │ max ┃\n' +
  469. '┠───────────┼───────────┼──────┼───────────┨\n' +
  470. '┃ 1 │ 0 │ 128 │ 255 ┃\n' +
  471. '┃ 2 │ -32768 │ 0 │ 32767 ┃\n' +
  472. '┃ 3 │ -8388608 │ 0 │ 8388607 ┃\n' +
  473. '┗━━━━━━━━━━━┷━━━━━━━━━━━┷━━━━━━┷━━━━━━━━━━━┛\n';
  474. const DIAGRAM_13_A =
  475. '| sr.apply(…) | 3 | sum 3 | s 3 |';
  476. const DIAGRAM_13_B =
  477. "┏━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┓\n" +
  478. "┃ │ 'sum' │ ['sum'] │ {'s': 'sum'} ┃\n" +
  479. "┠───────────────┼─────────────┼─────────────┼───────────────┨\n" +
  480. "┃ sr.apply(…) │ 3 │ sum 3 │ s 3 ┃\n" +
  481. "┃ sr.agg(…) │ │ │ ┃\n" +
  482. "┗━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┛\n" +
  483. "\n" +
  484. "┏━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┓\n" +
  485. "┃ │ 'rank' │ ['rank'] │ {'r': 'rank'} ┃\n" +
  486. "┠───────────────┼─────────────┼─────────────┼───────────────┨\n" +
  487. "┃ sr.apply(…) │ │ rank │ ┃\n" +
  488. "┃ sr.agg(…) │ x 1 │ x 1 │ r x 1 ┃\n" +
  489. "┃ │ y 2 │ y 2 │ y 2 ┃\n" +
  490. "┗━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┛\n";
  491. const DIAGRAM_14_A =
  492. "| | 'rank' | ['rank'] | {'r': 'rank'} |";
  493. const DIAGRAM_15_A =
  494. '+------------------------+---------------+------------+------------+--------------------------+';
  495. const DIAGRAM_15_B =
  496. "┏━━━━━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n" +
  497. "┃ │ 'outer' │ 'inner' │ 'left' │ Description ┃\n" +
  498. "┠────────────────────────┼───────────────┼────────────┼────────────┼──────────────────────────┨\n" +
  499. "┃ l.merge(r, on='y', │ x y z │ x y z │ x y z │ Merges on column if 'on' ┃\n" +
  500. "┃ how=…) │ 0 1 2 . │ 3 4 5 │ 1 2 . │ or 'left/right_on' are ┃\n" +
  501. "┃ │ 1 3 4 5 │ │ 3 4 5 │ set, else on shared cols.┃\n" +
  502. "┃ │ 2 . 6 7 │ │ │ Uses 'inner' by default. ┃\n" +
  503. "┠────────────────────────┼───────────────┼────────────┼────────────┼──────────────────────────┨\n" +
  504. "┃ l.join(r, lsuffix='l', │ x yl yr z │ │ x yl yr z │ Merges on row keys. ┃\n" +
  505. "┃ rsuffix='r', │ a 1 2 . . │ x yl yr z │ 1 2 . . │ Uses 'left' by default. ┃\n" +
  506. "┃ how=…) │ b 3 4 4 5 │ 3 4 4 5 │ 3 4 4 5 │ If r is a Series, it is ┃\n" +
  507. "┃ │ c . . 6 7 │ │ │ treated as a column. ┃\n" +
  508. "┠────────────────────────┼───────────────┼────────────┼────────────┼──────────────────────────┨\n" +
  509. "┃ pd.concat([l, r], │ x y z │ y │ │ Adds rows at the bottom. ┃\n" +
  510. "┃ axis=0, │ a 1 2 . │ 2 │ │ Uses 'outer' by default. ┃\n" +
  511. "┃ join=…) │ b 3 4 . │ 4 │ │ A Series is treated as a ┃\n" +
  512. "┃ │ b . 4 5 │ 4 │ │ column. To add a row use ┃\n" +
  513. "┃ │ c . 6 7 │ 6 │ │ pd.concat([l, DF([sr])]).┃\n" +
  514. "┠────────────────────────┼───────────────┼────────────┼────────────┼──────────────────────────┨\n" +
  515. "┃ pd.concat([l, r], │ x y y z │ │ │ Adds columns at the ┃\n" +
  516. "┃ axis=1, │ a 1 2 . . │ x y y z │ │ right end. Uses 'outer' ┃\n" +
  517. "┃ join=…) │ b 3 4 4 5 │ 3 4 4 5 │ │ by default. A Series is ┃\n" +
  518. "┃ │ c . . 6 7 │ │ │ treated as a column. ┃\n" +
  519. "┠────────────────────────┼───────────────┼────────────┼────────────┼──────────────────────────┨\n" +
  520. "┃ l.combine_first(r) │ x y z │ │ │ Adds missing rows and ┃\n" +
  521. "┃ │ a 1 2 . │ │ │ columns. Also updates ┃\n" +
  522. "┃ │ b 3 4 5 │ │ │ items that contain NaN. ┃\n" +
  523. "┃ │ c . 6 7 │ │ │ R must be a DataFrame. ┃\n" +
  524. "┗━━━━━━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━┛\n";
  525. const DIAGRAM_16_A =
  526. '| df.apply(…) | | x y | |';
  527. const DIAGRAM_16_B =
  528. "┏━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┓\n" +
  529. "┃ │ 'sum' │ ['sum'] │ {'x': 'sum'} ┃\n" +
  530. "┠─────────────────┼─────────────┼─────────────┼───────────────┨\n" +
  531. "┃ df.apply(…) │ │ x y │ ┃\n" +
  532. "┃ df.agg(…) │ x 4 │ sum 4 6 │ x 4 ┃\n" +
  533. "┃ │ y 6 │ │ ┃\n" +
  534. "┗━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┛\n" +
  535. "\n" +
  536. "┏━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┓\n" +
  537. "┃ │ 'rank' │ ['rank'] │ {'x': 'rank'} ┃\n" +
  538. "┠─────────────────┼─────────────┼─────────────┼───────────────┨\n" +
  539. "┃ df.apply(…) │ x y │ x y │ x ┃\n" +
  540. "┃ df.agg(…) │ a 1 1 │ rank rank │ a 1 ┃\n" +
  541. "┃ df.transform(…) │ b 2 2 │ a 1 1 │ b 2 ┃\n" +
  542. "┃ │ │ b 2 2 │ ┃\n" +
  543. "┗━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┛\n";
  544. const DIAGRAM_17_A =
  545. "| | 'rank' | ['rank'] | {'x': 'rank'} |";
  546. const DIAGRAM_18_A =
  547. '| gb.agg(…) | x y | x y | x y | x |';
  548. const DIAGRAM_18_B =
  549. "┏━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┓\n" +
  550. "┃ │ 'sum' │ 'rank' │ ['rank'] │ {'x': 'rank'} ┃\n" +
  551. "┠─────────────────┼─────────────┼─────────────┼─────────────┼───────────────┨\n" +
  552. "┃ gb.agg(…) │ x y │ x y │ x y │ x ┃\n" +
  553. "┃ │ z │ a 1 1 │ rank rank │ a 1 ┃\n" +
  554. "┃ │ 3 1 2 │ b 1 1 │ a 1 1 │ b 1 ┃\n" +
  555. "┃ │ 6 11 13 │ c 2 2 │ b 1 1 │ c 2 ┃\n" +
  556. "┃ │ │ │ c 2 2 │ ┃\n" +
  557. "┠─────────────────┼─────────────┼─────────────┼─────────────┼───────────────┨\n" +
  558. "┃ gb.transform(…) │ x y │ x y │ │ ┃\n" +
  559. "┃ │ a 1 2 │ a 1 1 │ │ ┃\n" +
  560. "┃ │ b 11 13 │ b 1 1 │ │ ┃\n" +
  561. "┃ │ c 11 13 │ c 2 2 │ │ ┃\n" +
  562. "┗━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━┛\n";
  563. const MENU = '<a href="https://raw.githubusercontent.com/gto76/python-cheatsheet/main/README.md">Download text file</a>, <a href="https://transactions.sendowl.com/products/78175486/4422834F/view">Buy PDF</a>, <a href="https://github.com/gto76/python-cheatsheet">Fork me on GitHub</a>, <a href="https://github.com/gto76/python-cheatsheet/wiki/Frequently-Asked-Questions">Check out FAQ</a> or <a href="index.html?theme=dark3">Switch to dark theme</a>.\n';
  564. const DARK_THEME_SCRIPT =
  565. '<script>\n' +
  566. ' // Changes the image and link to theme if URL ends with "index.html?theme=dark". \n' +
  567. ' if (window.location.search.search(/[?&]theme=dark/) !== -1) {\n' +
  568. '\n' +
  569. ' var link_to_theme = document.createElement("a")\n' +
  570. ' link_to_theme.href = "index.html"\n' +
  571. ' link_to_theme.text = "Switch to light theme"\n' +
  572. ' document.getElementsByClassName("banner")[0].firstChild.children[4].replaceWith(link_to_theme)\n' +
  573. '\n' +
  574. ' var img_dark = document.createElement("img");\n' +
  575. ' img_dark.src = "web/image_orig_blue6.png";\n' +
  576. ' img_dark.alt = "Monthy Python";\n' +
  577. ' if ((window.location.search.search(/[?&]theme=dark2/) !== -1) ||\n' +
  578. ' (window.location.search.search(/[?&]theme=dark3/) !== -1)) {\n' +
  579. ' img_dark.style = "width: 910px;";\n' +
  580. ' } else {\n' +
  581. ' img_dark.style = "width: 960px;";\n' +
  582. ' }\n' +
  583. ' document.getElementsByClassName("banner")[1].firstChild.replaceWith(img_dark);\n' +
  584. ' }\n' +
  585. '</script>';
  586. function main() {
  587. const html = getMd();
  588. initDom(html);
  589. modifyPage();
  590. var template = readFile('web/template.html');
  591. template = updateDate(template);
  592. const tokens = template.split('<div id=main_container></div>');
  593. const text = `${tokens[0]} ${document.body.innerHTML} ${tokens[1]}`;
  594. writeToFile('index.html', text);
  595. }
  596. function getMd() {
  597. var readme = readFile('README.md');
  598. var readme = readme.replace("#semaphore-event-barrier", "#semaphoreeventbarrier");
  599. var readme = readme.replace("#semaphore-event-barrier", "#semaphoreeventbarrier");
  600. var readme = readme.replace("#dataframe-plot-encode-decode", "#dataframeplotencodedecode");
  601. const converter = new showdown.Converter();
  602. return converter.makeHtml(readme);
  603. }
  604. function initDom(html) {
  605. const { JSDOM } = jsdom;
  606. const dom = new JSDOM(html);
  607. const $ = (require('jquery'))(dom.window);
  608. global.$ = $;
  609. global.document = dom.window.document;
  610. }
  611. function modifyPage() {
  612. changeMenu();
  613. addDarkThemeScript();
  614. removeOrigToc();
  615. addToc();
  616. insertLinks();
  617. unindentBanner();
  618. updateDiagrams();
  619. highlightCode();
  620. fixPandasDiagram();
  621. removePlotImages();
  622. fixABCSequenceDiv();
  623. fixStructFormatDiv();
  624. }
  625. function changeMenu() {
  626. $('sup').first().html(MENU)
  627. }
  628. function addDarkThemeScript() {
  629. $('#main').before(DARK_THEME_SCRIPT);
  630. }
  631. function removeOrigToc() {
  632. const headerContents = $('#contents');
  633. const contentsList = headerContents.next();
  634. headerContents.remove();
  635. contentsList.remove();
  636. }
  637. function addToc() {
  638. const nodes = $.parseHTML(TOC);
  639. $('#main').before(nodes);
  640. }
  641. function insertLinks() {
  642. $('h2').each(function() {
  643. const aId = $(this).attr('id');
  644. const text = $(this).text();
  645. const line = `<a href="#${aId}" name="${aId}">#</a>${text}`;
  646. $(this).html(line);
  647. });
  648. }
  649. function unindentBanner() {
  650. const montyImg = $('img').first();
  651. montyImg.parent().addClass('banner');
  652. const downloadPraragrapth = $('p').first();
  653. downloadPraragrapth.addClass('banner');
  654. }
  655. function updateDiagrams() {
  656. $(`code:contains(${DIAGRAM_1_A})`).html(DIAGRAM_1_B);
  657. $(`code:contains(${DIAGRAM_2_A})`).html(DIAGRAM_2_B);
  658. $(`code:contains(${DIAGRAM_3_A})`).html(DIAGRAM_3_B);
  659. $(`code:contains(${DIAGRAM_4_A})`).html(DIAGRAM_4_B);
  660. $(`code:contains(${DIAGRAM_5_A})`).parent().remove();
  661. $(`code:contains(${DIAGRAM_6_A})`).html(DIAGRAM_6_B);
  662. $(`code:contains(${DIAGRAM_7_A})`).html(DIAGRAM_7_B);
  663. $(`code:contains(${DIAGRAM_8_A})`).html(DIAGRAM_8_B);
  664. $(`code:contains(${DIAGRAM_9_A})`).html(DIAGRAM_9_B);
  665. $(`code:contains(${DIAGRAM_95_A})`).html(DIAGRAM_95_B);
  666. $(`code:contains(${DIAGRAM_10_A})`).html(DIAGRAM_10_B);
  667. $(`code:contains(${DIAGRAM_11_A})`).html(DIAGRAM_11_B);
  668. $(`code:contains(${DIAGRAM_12_A})`).html(DIAGRAM_12_B).removeClass("text").removeClass("language-text").addClass("python");
  669. $(`code:contains(${DIAGRAM_13_A})`).html(DIAGRAM_13_B).removeClass("text").removeClass("language-text").addClass("python");
  670. $(`code:contains(${DIAGRAM_14_A})`).parent().remove();
  671. $(`code:contains(${DIAGRAM_15_A})`).html(DIAGRAM_15_B).removeClass("text").removeClass("language-text").addClass("python");
  672. $(`code:contains(${DIAGRAM_16_A})`).html(DIAGRAM_16_B).removeClass("text").removeClass("language-text").addClass("python");
  673. $(`code:contains(${DIAGRAM_17_A})`).parent().remove();
  674. $(`code:contains(${DIAGRAM_18_A})`).html(DIAGRAM_18_B).removeClass("text").removeClass("language-text").addClass("python");
  675. }
  676. function highlightCode() {
  677. changeCodeLanguages();
  678. $('code').each(function(index) {
  679. hljs.highlightBlock(this);
  680. });
  681. fixClasses();
  682. fixHighlights();
  683. preventPageBreaks();
  684. fixPageBreaksFile();
  685. fixPageBreaksStruct();
  686. insertPageBreaks();
  687. }
  688. function changeCodeLanguages() {
  689. setApaches(['<D>', '<T>', '<DT>', '<TD>', '<a>', '<n>']);
  690. $('code').not('.python').not('.text').not('.bash').not('.apache').addClass('python');
  691. $('code:contains(<el> = <2d_array>[row_index, column_index])').removeClass().addClass('bash');
  692. $('code:contains(<2d_array> = <2d_array>[row_indexes])').removeClass().addClass('bash');
  693. $('code:contains(<2d_bools> = <2d_array> ><== <el/1d/2d_array>)').removeClass().addClass('bash');
  694. $('code.perl').removeClass().addClass('python');
  695. }
  696. function setApaches(elements) {
  697. for (el of elements) {
  698. $(`code:contains(${el})`).addClass('apache');
  699. }
  700. }
  701. function fixClasses() {
  702. // Changes class="hljs-keyword" to class="hljs-title" of 'class' keyword.
  703. $('.hljs-class').filter(':contains(class \')').find(':first-child').removeClass('hljs-keyword').addClass('hljs-title')
  704. }
  705. function fixHighlights() {
  706. $(`code:contains(@lru_cache(maxsize=None))`).html(LRU_CACHE);
  707. $(`code:contains(@debug(print_result=True))`).html(PARAMETRIZED_DECORATOR);
  708. $(`code:contains(print/str/repr([<el>]))`).html(REPR_USE_CASES);
  709. $(`code:contains((self, a=None):)`).html(CONSTRUCTOR_OVERLOADING);
  710. $(`code:contains(make_dataclass(\'<class_name>\')`).html(DATACLASS);
  711. $(`code:contains(shutil.copy)`).html(SHUTIL_COPY);
  712. $(`code:contains(os.rename)`).html(OS_RENAME);
  713. $(`code:contains(\'<n>s\')`).html(STRUCT_FORMAT);
  714. $(`code:contains(\'<class_name>\', <tuple_of_parents>, <dict_of_class_attributes>)`).html(TYPE);
  715. $(`code:contains(ValueError: malformed node)`).html(EVAL);
  716. $(`code:contains(import asyncio, collections, curses, curses.textpad, enum, random)`).html(COROUTINES);
  717. $(`code:contains(import curses, curses.ascii, os)`).html(CURSES);
  718. $(`code:contains(pip3 install tqdm)`).html(PROGRESS_BAR);
  719. $(`code:contains(>>> logging.basicConfig(level=)`).html(LOGGING_EXAMPLE);
  720. $(`code:contains(samples_f = (sin(i *)`).html(AUDIO);
  721. $(`code:contains(collections, dataclasses, enum, io, itertools)`).html(MARIO);
  722. $(`code:contains(pip3 install pyinstaller)`).html(PYINSTALLER);
  723. $(`ul:contains(Only available in)`).html(INDEX);
  724. }
  725. function preventPageBreaks() {
  726. $(':header').each(function(index) {
  727. var el = $(this)
  728. var untilPre = el.nextUntil('pre')
  729. var untilH2 = el.nextUntil('h2')
  730. if ((untilPre.length < untilH2.length) || el.prop('tagName') === 'H1') {
  731. untilPre.add(el).next().add(el).wrapAll("<div></div>");
  732. } else {
  733. untilH2.add(el).wrapAll("<div></div>");
  734. }
  735. });
  736. }
  737. function fixPageBreaksFile() {
  738. const modesDiv = $('#file').parent().parent().parent()
  739. move(modesDiv, 'file')
  740. move(modesDiv, 'exceptions-1')
  741. }
  742. function fixPageBreaksStruct() {
  743. const formatDiv = $('#floatingpointtypes').parent().parent().parent().parent()
  744. move(formatDiv, 'floatingpointtypes')
  745. move(formatDiv, 'integertypesuseacapitalletterforunsignedtypeminimumandstandardsizesareinbrackets')
  746. move(formatDiv, 'forstandardsizesstartformatstringwith')
  747. }
  748. function move(anchor_el, el_id) {
  749. const el = $('#'+el_id).parent()
  750. anchor_el.after(el)
  751. }
  752. function insertPageBreaks() {
  753. insertPageBreakBefore('#decorator')
  754. // insertPageBreakBefore('#print')
  755. }
  756. function insertPageBreakBefore(an_id) {
  757. $('<div class="pagebreak"></div>').insertBefore($(an_id).parent())
  758. }
  759. function fixPandasDiagram() {
  760. const diagram_15 = '┏━━━━━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━┓';
  761. $(`code:contains(${diagram_15})`).find(".hljs-keyword:contains(and)").after("and");
  762. $(`code:contains(${diagram_15})`).find(".hljs-keyword:contains(as)").after("as");
  763. $(`code:contains(${diagram_15})`).find(".hljs-keyword:contains(is)").after("is");
  764. $(`code:contains(${diagram_15})`).find(".hljs-keyword:contains(if)").after("if");
  765. $(`code:contains(${diagram_15})`).find(".hljs-keyword:contains(or)").after("or");
  766. $(`code:contains(${diagram_15})`).find(".hljs-keyword:contains(else)").after("else");
  767. $(`code:contains(${diagram_15})`).find(".hljs-keyword").remove();
  768. }
  769. function removePlotImages() {
  770. $('img[alt="Covid Deaths"]').remove();
  771. $('img[alt="Covid Cases"]').remove();
  772. }
  773. function fixABCSequenceDiv() {
  774. $('#abcsequence').parent().insertBefore($('#tableofrequiredandautomaticallyavailablespecialmethods').parent())
  775. }
  776. function fixStructFormatDiv() {
  777. const div = $('#format-2').parent()
  778. $('#format-2').insertBefore(div)
  779. $('#forstandardtypesizesandmanualalignmentpaddingstartformatstringwith').parent().insertBefore(div)
  780. }
  781. function updateDate(template) {
  782. const date = new Date();
  783. const date_str = date.toLocaleString('en-us', {month: 'long', day: 'numeric', year: 'numeric'});
  784. template = template.replace('May 20, 2021', date_str);
  785. template = template.replace('May 20, 2021', date_str);
  786. return template;
  787. }
  788. // UTIL
  789. function readFile(filename) {
  790. try {
  791. return fs.readFileSync(filename, 'utf8');
  792. } catch(e) {
  793. console.error('Error:', e.stack);
  794. }
  795. }
  796. function writeToFile(filename, text) {
  797. try {
  798. return fs.writeFileSync(filename, text, 'utf8');
  799. } catch(e) {
  800. console.error('Error:', e.stack);
  801. }
  802. }
  803. main();