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.

78 lines
3.7 KiB

3 years ago
3 years ago
  1. <!DOCTYPE html>
  2. <html class="ocks-org do-not-copy" lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
  6. <title>Comprehensive Python Cheatsheet</title>
  7. <meta name="description" content="Exhaustive, simple, beautiful and concise. A truly Pythonic cheat sheet about Python programming language.">
  8. <link rel="icon" href="web/favicon.png">
  9. <link rel="stylesheet" href="web/default.min.css">
  10. <link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css">
  11. <link rel="stylesheet" href="web/style.css">
  12. <script>
  13. // Checks if URL ends with "index.html?dark=true"
  14. if (window.location.search.search(/[?&]theme=dark3/) !== -1) {
  15. document.write("<link rel=\"stylesheet\" href=\"web/default_dark3.min.css\">");
  16. document.write("<link rel=\"stylesheet\" href=\"web/style_dark3.css\">");
  17. }
  18. else if (window.location.search.search(/[?&]theme=dark2/) !== -1) {
  19. document.write("<link rel=\"stylesheet\" href=\"web/default_dark2.min.css\">");
  20. document.write("<link rel=\"stylesheet\" href=\"web/style_dark2.css\">");
  21. }
  22. else if (window.location.search.search(/[?&]theme=dark1/) !== -1) {
  23. document.write("<link rel=\"stylesheet\" href=\"web/default_dark1.min.css\">");
  24. document.write("<link rel=\"stylesheet\" href=\"web/style_dark1.css\">");
  25. }
  26. else if (window.location.search.search(/[?&]theme=dark/) !== -1) {
  27. document.write("<link rel=\"stylesheet\" href=\"web/default_dark.min.css\">");
  28. document.write("<link rel=\"stylesheet\" href=\"web/style_dark.css\">");
  29. }
  30. </script>
  31. <meta name="twitter:card" content="summary_large_image">
  32. <meta name="twitter:title" content="Comprehensive Python Cheatsheet">
  33. <meta name="twitter:description" content="Exhaustive, simple, beautiful and concise. A truly Pythonic cheat sheet about Python programming language.">
  34. <meta name="twitter:image" content="https://gto76.github.io/python-cheatsheet/web/image_social_3.png">
  35. <meta property="og:url" content="https://gto76.github.io/python-cheatsheet/">
  36. <meta property="og:title" content="Comprehensive Python Cheatsheet">
  37. <meta property="og:description" content="Exhaustive, simple, beautiful and concise. A truly Pythonic cheat sheet about Python programming language.">
  38. <meta property="og:site_name" content="gto76.github.io">
  39. <meta property="og:image" content="https://gto76.github.io/python-cheatsheet/web/image_social_3.png">
  40. <meta itemprop="url" content="https://gto76.github.io/python-cheatsheet/">
  41. <meta itemprop="name" content="Comprehensive Python Cheatsheet">
  42. <meta itemprop="description" content="Exhaustive, simple, beautiful and concise. A truly Pythonic cheat sheet about Python programming language.">
  43. <meta itemprop="image" content="https://gto76.github.io/python-cheatsheet/web/image_social_3.png">
  44. <meta name="google-site-verification" content="w3rvuG0D1kUm_w20qsJecSEZh59Am8jK4eSPVU83e_M">
  45. <meta name="viewport" id="viewport-meta">
  46. </head>
  47. <body>
  48. <header>
  49. <aside>May 20, 2021</aside>
  50. <a href="https://gto76.github.io" rel="author">Jure Šorn</a>
  51. </header>
  52. <div id=main_container></div>
  53. <footer>
  54. <aside>May 20, 2021</aside>
  55. <a href="https://gto76.github.io" rel="author">Jure Šorn</a>
  56. </footer>
  57. <a href="javascript:" id="return-to-top"><i class="icon-chevron-up"></i></a>
  58. <script src="web/jquery-3.4.0.min.js"></script>
  59. <script src="web/script_2.js"></script>
  60. <script type="text/javascript" src="https://transactions.sendowl.com/assets/sendowl.js" ></script>
  61. <script src="web/plotly.min.js"></script>
  62. <script src="web/covid_deaths.js"></script>
  63. <script src="web/covid_cases.js"></script>
  64. </body>
  65. </html>