hammad-python 0.0.12__tar.gz → 0.0.13__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. {hammad_python-0.0.12 → hammad_python-0.0.13}/PKG-INFO +1 -1
  2. {hammad_python-0.0.12 → hammad_python-0.0.13}/pyproject.toml +14 -3
  3. hammad_python-0.0.12/docs/fonts/zed-mono-extended.ttf +0 -0
  4. hammad_python-0.0.12/docs/fonts/zed-sans-extended.ttf +0 -0
  5. hammad_python-0.0.12/docs/stylesheets/extras.css +0 -351
  6. hammad_python-0.0.12/docs/stylesheets/icon.svg +0 -1
  7. {hammad_python-0.0.12 → hammad_python-0.0.13}/.gitignore +0 -0
  8. {hammad_python-0.0.12 → hammad_python-0.0.13}/.python-version +0 -0
  9. {hammad_python-0.0.12 → hammad_python-0.0.13}/LICENSE +0 -0
  10. {hammad_python-0.0.12 → hammad_python-0.0.13}/README.md +0 -0
  11. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/__init__.py +0 -0
  12. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/_core/__init__.py +0 -0
  13. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/_core/_utils/__init__.py +0 -0
  14. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/_core/_utils/_import_utils.py +0 -0
  15. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/__init__.py +0 -0
  16. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/_utils.py +0 -0
  17. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/completions/__init__.py +0 -0
  18. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/completions/client.py +0 -0
  19. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/completions/create.py +0 -0
  20. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/completions/types.py +0 -0
  21. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/completions/utils.py +0 -0
  22. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/embeddings/__init__.py +0 -0
  23. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/embeddings/client/__init__.py +0 -0
  24. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/embeddings/client/base_embeddings_client.py +0 -0
  25. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/embeddings/client/fastembed_text_embeddings_client.py +0 -0
  26. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/embeddings/client/litellm_embeddings_client.py +0 -0
  27. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/embeddings/create.py +0 -0
  28. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/ai/embeddings/types.py +0 -0
  29. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/base/__init__.py +0 -0
  30. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/base/fields.py +0 -0
  31. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/base/model.py +0 -0
  32. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/base/utils.py +0 -0
  33. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cache/__init__.py +0 -0
  34. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cache/base_cache.py +0 -0
  35. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cache/cache.py +0 -0
  36. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cache/decorators.py +0 -0
  37. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cache/file_cache.py +0 -0
  38. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cache/ttl_cache.py +0 -0
  39. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cli/__init__.py +0 -0
  40. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cli/animations.py +0 -0
  41. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cli/plugins.py +0 -0
  42. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cli/styles/__init__.py +0 -0
  43. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cli/styles/settings.py +0 -0
  44. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cli/styles/types.py +0 -0
  45. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/cli/styles/utils.py +0 -0
  46. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/configuration/__init__.py +0 -0
  47. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/configuration/configuration.py +0 -0
  48. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/data/__init__.py +0 -0
  49. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/data/collections/__init__.py +0 -0
  50. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/data/collections/base_collection.py +0 -0
  51. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/data/collections/collection.py +0 -0
  52. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/data/collections/searchable_collection.py +0 -0
  53. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/data/collections/vector_collection.py +0 -0
  54. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/data/databases/__init__.py +0 -0
  55. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/data/databases/database.py +0 -0
  56. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/json/__init__.py +0 -0
  57. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/json/converters.py +0 -0
  58. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/logging/__init__.py +0 -0
  59. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/logging/decorators.py +0 -0
  60. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/logging/logger.py +0 -0
  61. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/multimodal/__init__.py +0 -0
  62. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/multimodal/audio.py +0 -0
  63. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/multimodal/image.py +0 -0
  64. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/multithreading/__init__.py +0 -0
  65. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/py.typed +0 -0
  66. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/pydantic/__init__.py +0 -0
  67. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/pydantic/converters.py +0 -0
  68. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/pydantic/models/__init__.py +0 -0
  69. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/pydantic/models/arbitrary_model.py +0 -0
  70. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/pydantic/models/cacheable_model.py +0 -0
  71. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/pydantic/models/fast_model.py +0 -0
  72. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/pydantic/models/function_model.py +0 -0
  73. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/pydantic/models/subscriptable_model.py +0 -0
  74. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/text/__init__.py +0 -0
  75. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/text/converters.py +0 -0
  76. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/text/markdown.py +0 -0
  77. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/text/text.py +0 -0
  78. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/types/__init__.py +0 -0
  79. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/types/file.py +0 -0
  80. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/typing/__init__.py +0 -0
  81. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/web/__init__.py +0 -0
  82. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/web/http/__init__.py +0 -0
  83. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/web/http/client.py +0 -0
  84. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/web/models.py +0 -0
  85. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/web/openapi/__init__.py +0 -0
  86. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/web/openapi/client.py +0 -0
  87. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/web/search/__init__.py +0 -0
  88. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/web/search/client.py +0 -0
  89. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/web/utils.py +0 -0
  90. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/yaml/__init__.py +0 -0
  91. {hammad_python-0.0.12 → hammad_python-0.0.13}/hammad/yaml/converters.py +0 -0
  92. {hammad_python-0.0.12 → hammad_python-0.0.13}/mkdocs.yml +0 -0
  93. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/ai/completions/test_ai_completions_create.py +0 -0
  94. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/ai/completions/test_ai_completions_types.py +0 -0
  95. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/base/test_base_fields.py +0 -0
  96. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/base/test_base_model.py +0 -0
  97. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/cache/test_cache_cache.py +0 -0
  98. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/cli/test_cli_plugins_animate.py +0 -0
  99. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/cli/test_cli_plugins_input.py +0 -0
  100. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/cli/test_cli_plugins_print.py +0 -0
  101. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/cli/test_cli_styles_utils.py +0 -0
  102. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/configuration/test_configuration.py +0 -0
  103. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/data/test_data_collections_searchable_collection.py +0 -0
  104. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/data/test_data_collections_vector_collection.py +0 -0
  105. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/data/test_data_databases_database.py +0 -0
  106. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/json/test_json_converters.py +0 -0
  107. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/logging/test_logging_decorators.py +0 -0
  108. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/logging/test_logging_logger.py +0 -0
  109. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/pydantic/test_pydantic_converters.py +0 -0
  110. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/pydantic/test_pydantic_models.py +0 -0
  111. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/text/test_text_text.py +0 -0
  112. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/text/test_text_utils_converters.py +0 -0
  113. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/text/test_text_utils_markdown_converters.py +0 -0
  114. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/typing/test_typing_utils.py +0 -0
  115. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/web/test_web_toolkits_http_toolkit.py +0 -0
  116. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/web/test_web_toolkits_openapi_toolkit.py +0 -0
  117. {hammad_python-0.0.12 → hammad_python-0.0.13}/tests/web/test_web_utils.py +0 -0
  118. {hammad_python-0.0.12 → hammad_python-0.0.13}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hammad-python
3
- Version: 0.0.12
3
+ Version: 0.0.13
4
4
  Summary: hammad - *Nightly* hyper-fast opinionated resources and modules built for quick development.
5
5
  Author-email: Hammad Saeed <hammadaidev@gmail.com>
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "hammad-python"
3
- version = "0.0.12"
3
+ version = "0.0.13"
4
4
  description = """hammad - *Nightly* hyper-fast opinionated resources and modules built for quick development."""
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -32,6 +32,19 @@ build-backend = "hatchling.build"
32
32
  [tool.hatch.build.targets.wheel]
33
33
  packages = ["hammad"]
34
34
 
35
+ [tool.hatch.build.targets.sdist]
36
+ exclude = [
37
+ "/docs",
38
+ "/.venv",
39
+ "/.pytest_cache",
40
+ "/__pycache__",
41
+ "*.pyc",
42
+ "*.pyo",
43
+ "*.pyd",
44
+ ".DS_Store",
45
+ "Thumbs.db",
46
+ ]
47
+
35
48
  [project.optional-dependencies]
36
49
  ai = [
37
50
  "instructor>=1.9.0",
@@ -60,8 +73,6 @@ dev = [
60
73
  "ipython",
61
74
  "ipykernel",
62
75
 
63
- "marimo",
64
-
65
76
  "mkdocs",
66
77
  "mkdocstrings[python]",
67
78
  "mkdocs-material",
@@ -1,351 +0,0 @@
1
- @font-face {
2
- font-family: "Zed Mono";
3
- src: url("../fonts/zed-mono-extended.ttf") format("truetype");
4
- font-weight: normal;
5
- font-style: normal;
6
- }
7
-
8
- @font-face {
9
- font-family: "Zed Sans";
10
- src: url("../fonts/zed-sans-extended.ttf") format("truetype");
11
- font-weight: normal;
12
- font-style: normal;
13
- }
14
-
15
- :root {
16
- --md-text-font: "Zed Sans";
17
- }
18
-
19
- :root {
20
- --md-code-font: "Zed Mono";
21
- }
22
-
23
- /* Styling for code boxes */
24
- .md-typeset pre {
25
- border-radius: 6px;
26
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
27
- }
28
-
29
- .md-typeset code {
30
- border-radius: 3px;
31
- padding: 0.2em 0.4em;
32
- }
33
-
34
- [data-md-color-scheme="home-light"] {
35
- --md-hue: 60deg;
36
-
37
- --md-primary-fg-color: #F5F5F0; /* Soft Cream */
38
- --md-primary-fg-color--light: #E8E8E3; /* Light Cream */
39
- --md-primary-fg-color--dark: #DCDCD7; /* Muted Cream */
40
- --md-primary-bg-color: #2D2D2D; /* Soft Charcoal */
41
- --md-primary-bg-color--light: #3D3D3D; /* Medium Charcoal */
42
-
43
- --md-accent-fg-color: #89CFF0; /* Baby Blue */
44
- --md-accent-fg-color--transparent: #89CFF033; /* Baby Blue with transparency */
45
-
46
- --md-default-fg-color: #2D2D2D; /* Soft Charcoal */
47
- --md-default-fg-color--light: #3D3D3D; /* Medium Charcoal */
48
- --md-default-fg-color--lighter: #4D4D4D; /* Light Charcoal */
49
- --md-default-fg-color--lightest: #DCDCD7; /* Muted Cream */
50
- --md-default-bg-color: #F5F5F0; /* Soft Cream */
51
- --md-default-bg-color--light: #E8E8E3; /* Light Cream */
52
- --md-default-bg-color--lighter: #DCDCD7; /* Muted Cream */
53
- --md-default-bg-color--lightest: #E9C7B7; /* Soft Peach */
54
-
55
- --md-code-fg-color: #4A4A4A; /* Soft Black */
56
- --md-code-bg-color: #E8E8E3; /* Light Cream */
57
- --md-code-hl-color: #DCDCD7; /* Muted Cream */
58
-
59
- --md-code-hl-number-color: #F0A07C; /* Soft Coral */
60
- --md-code-hl-special-color: #F0CF7C; /* Soft Yellow */
61
- --md-code-hl-function-color: #D7B4D9; /* Soft Purple */
62
- --md-code-hl-constant-color: #A8D7C2; /* Soft Mint */
63
- --md-code-hl-keyword-color: #F0A07C; /* Soft Coral */
64
- --md-code-hl-string-color: #BFD9A8; /* Soft Green */
65
- --md-code-hl-name-color: #A8C4D9; /* Soft Blue */
66
- --md-code-hl-operator-color: #A8D7C2; /* Soft Mint */
67
- --md-code-hl-punctuation-color: #B4B4B4; /* Soft Gray */
68
- --md-code-hl-comment-color: #C2C2C2; /* Light Gray */
69
- --md-code-hl-generic-color: #8A8A8A; /* Medium Gray */
70
- --md-code-hl-variable-color: #A8C4D9; /* Soft Blue */
71
-
72
- --md-typeset-color: var(--md-default-fg-color);
73
- --md-typeset-a-color: #E6A99F; /* Soft Terracotta */
74
-
75
- --md-typeset-mark-color: #E9C7B780; /* Soft Peach with transparency */
76
-
77
- --md-typeset-table-color: #DCDCD7; /* Muted Cream */
78
- --md-typeset-table-color--light: #E8E8E3; /* Light Cream */
79
-
80
- --md-admonition-fg-color: var(--md-default-fg-color);
81
- --md-admonition-bg-color: var(--md-default-bg-color);
82
-
83
- --md-warning-fg-color: #2D2D2D; /* Soft Charcoal */
84
- --md-warning-bg-color: #E9C7B7; /* Soft Peach */
85
-
86
- --md-footer-fg-color: #F5F5F0; /* Soft Cream */
87
- --md-footer-fg-color--light: #E8E8E3; /* Light Cream */
88
- --md-footer-fg-color--lighter: #DCDCD7; /* Muted Cream */
89
- --md-footer-bg-color: #2D2D2D; /* Soft Charcoal */
90
- --md-footer-bg-color--dark: #3D3D3D; /* Medium Charcoal */
91
-
92
- --md-code-shadow-color: rgba(0, 0, 0, 0.05);
93
- }
94
-
95
- [data-md-color-scheme="home-dark"] {
96
- --md-hue: 220deg;
97
-
98
- --md-primary-fg-color: #2D2D2D; /* Soft Charcoal */
99
- --md-primary-fg-color--light: #3D3D3D; /* Medium Charcoal */
100
- --md-primary-fg-color--dark: #4D4D4D; /* Light Charcoal */
101
- --md-primary-bg-color: #F5F5F0; /* Soft Cream */
102
- --md-primary-bg-color--light: #E8E8E3; /* Light Cream */
103
-
104
- --md-accent-fg-color: #89CFF0; /* Baby Blue */
105
- --md-accent-fg-color--transparent: #89CFF033; /* Baby Blue with transparency */
106
-
107
- --md-default-fg-color: #F5F5F0; /* Soft Cream */
108
- --md-default-fg-color--light: #E8E8E3; /* Light Cream */
109
- --md-default-fg-color--lighter: #DCDCD7; /* Muted Cream */
110
- --md-default-fg-color--lightest: #1e1e1e; /* Soft Peach */
111
- --md-default-bg-color: #2D2D2D; /* Soft Charcoal */
112
- --md-default-bg-color--light: #3D3D3D; /* Medium Charcoal */
113
- --md-default-bg-color--lighter: #4D4D4D; /* Light Charcoal */
114
- --md-default-bg-color--lightest: #5D5D5D; /* Lighter Charcoal */
115
-
116
- --md-code-fg-color: #E8E8E3; /* Light Cream */
117
- --md-code-bg-color: #3D3D3D; /* Medium Charcoal */
118
- --md-code-hl-color: #4D4D4D; /* Light Charcoal */
119
-
120
- --md-code-hl-number-color: #FFB5A1; /* Light Coral */
121
- --md-code-hl-special-color: #FFE5A1; /* Light Yellow */
122
- --md-code-hl-function-color: #E8C6EA; /* Light Purple */
123
- --md-code-hl-constant-color: #B8E8D4; /* Light Mint */
124
- --md-code-hl-keyword-color: #FFB5A1; /* Light Coral */
125
- --md-code-hl-string-color: #D1E8B8; /* Light Green */
126
- --md-code-hl-name-color: #B8D5E8; /* Light Blue */
127
- --md-code-hl-operator-color: #B8E8D4; /* Light Mint */
128
- --md-code-hl-punctuation-color: #D1D1D1; /* Light Gray */
129
- --md-code-hl-comment-color: #B8B8B8; /* Medium Gray */
130
- --md-code-hl-generic-color: #E8E8E8; /* Off White */
131
- --md-code-hl-variable-color: #B8D5E8; /* Light Blue */
132
-
133
- --md-typeset-color: var(--md-default-fg-color);
134
- --md-typeset-a-color: #E6A99F; /* Soft Terracotta */
135
-
136
- --md-typeset-mark-color: #E9C7B780; /* Soft Peach with transparency */
137
-
138
- --md-typeset-table-color: #4D4D4D; /* Light Charcoal */
139
- --md-typeset-table-color--light: #3D3D3D; /* Medium Charcoal */
140
-
141
- --md-admonition-fg-color: var(--md-default-fg-color);
142
- --md-admonition-bg-color: var(--md-default-bg-color);
143
-
144
- --md-warning-fg-color: #2D2D2D; /* Soft Charcoal */
145
- --md-warning-bg-color: #E9C7B7; /* Soft Peach */
146
-
147
- --md-footer-fg-color: #F5F5F0; /* Soft Cream */
148
- --md-footer-fg-color--light: #E8E8E3; /* Light Cream */
149
- --md-footer-fg-color--lighter: #DCDCD7; /* Muted Cream */
150
- --md-footer-bg-color: #2D2D2D; /* Soft Charcoal */
151
- --md-footer-bg-color--dark: #3D3D3D; /* Medium Charcoal */
152
-
153
- --md-code-shadow-color: rgba(0, 0, 0, 0.2);
154
- }
155
-
156
- /* Apply theme-specific shadow to code boxes */
157
- .md-typeset pre {
158
- box-shadow: 0 2px 6px var(--md-code-shadow-color);
159
- }
160
-
161
- /* Ensure inline code uses theme background */
162
- .md-typeset code:not(pre code) {
163
- background-color: var(--md-code-bg-color);
164
- color: var(--md-code-fg-color);
165
- }
166
-
167
- /* Add horizontal padding to headers */
168
- .md-header_inner {
169
- margin-left: 20px;
170
- margin-right: 20px;
171
- }
172
-
173
- .md-header--lifted {
174
- border-bottom-left-radius: 10px;
175
- border-bottom-right-radius: 10px;
176
- }
177
-
178
- .md-tabs {
179
- border-bottom-left-radius: 10px;
180
- border-bottom-right-radius: 10px;
181
- }
182
-
183
- .md-header--shadow {
184
- margin-left: 20px;
185
- margin-right: 20px;
186
- }
187
-
188
- .md-footer {
189
- border-top-left-radius: 10px;
190
- border-top-right-radius: 10px;
191
- margin-left: 20px;
192
- margin-right: 20px;
193
- }
194
-
195
- .md-footer-meta {
196
- margin-left: 20px;
197
- margin-right: 20px;
198
- }
199
-
200
- .md-ellipsis {
201
- position: relative;
202
- }
203
-
204
- .md-header__title .md-ellipsis {
205
- position: relative;
206
- }
207
-
208
- .jupyter-wrapper .highlight pre {
209
- background-color: #1e1e1e !important;
210
- }
211
-
212
- .jupyter-wrapper .CodeMirror {
213
- background-color: #1e1e1e !important;
214
- }
215
-
216
- .grid.cards {
217
- border-radius: 6px;
218
- }
219
-
220
- .md-footer-meta {
221
- border-top-left-radius : 10px;
222
- border-top-right-radius : 10px;
223
- }
224
-
225
- .md-nav__item--section {
226
- font-family: var(--md-text-font);
227
- color: var(--md-default-fg-color);
228
- font-style: bold;
229
- font-size: 1.2em;
230
- }
231
-
232
- .md-nav__link {
233
- font-family: var(--md-text-font);
234
- color: var(--md-default-fg-color);
235
- font-style: normal;
236
- font-size: 0.95em;
237
- }
238
-
239
- .jp-InputArea-editor {
240
- background: var(--md-code-bg-color);
241
- border-radius: 12px;
242
- }
243
-
244
- .highlight-ipynb {
245
- font-family: var(--md-code-font) !important;
246
- font-size: 16px !important;
247
- }
248
-
249
- /* Comments */
250
- .highlight-ipynb .c1 {
251
- color: var(--md-code-hl-comment-color) !important;
252
- font-style: italic;
253
- }
254
-
255
- .highlight-ipynb .sd {
256
- color: var(--md-code-hl-comment-color) !important;
257
- font-style: italic;
258
- }
259
-
260
- .highlight-ipynb .s2 {
261
- color: var(--md-code-hl-string-color) !important;
262
- }
263
-
264
- .highlight-ipynb .s1 {
265
- color: var(--md-code-hl-string-color) !important;
266
- }
267
-
268
- /* Keywords ('import', 'def', etc.) */
269
- .highlight-ipynb .kn {
270
- color: var(--md-code-hl-keyword-color) !important;
271
- font-style: italic;
272
- }
273
-
274
- .highlight-ipynb .k {
275
- color: var(--md-code-hl-keyword-color) !important;
276
- font-style: italic;
277
- }
278
-
279
- /* types */
280
- .highlight-ipynb .nb {
281
- color: var(--md-code-hl-constant-color) !important;
282
- font-style: italic;
283
- }
284
-
285
- /* Names (function names, variable names, etc.) */
286
- .highlight-ipynb .nn {
287
- color: var(--md-code-hl-function-color) !important;
288
- }
289
-
290
- .highlight-ipynb .n {
291
- color: var(--md-code-hl-name-color) !important;
292
- }
293
-
294
- /* Operators ('+', '-', '*', etc.) */
295
- .highlight-ipynb .o {
296
- color: var(--md-code-hl-operator-color) !important;
297
- }
298
-
299
- /* Parentheses */
300
- .highlight-ipynb .p {
301
- color: var(--md-code-hl-punctuation-color) !important;
302
- }
303
-
304
- .md-typeset blockquote {
305
- color: var(--md-default-fg-color--lighter) !important;
306
- margin-left: 0;
307
- margin-right: 0;
308
- }
309
-
310
- .jp-InputPrompt {
311
- flex: 0 0 var(--jp-cell-prompt-width);
312
- padding: 6px;
313
- font-family: var(--md-code-font);
314
- letter-spacing: 1px;
315
- line-height: 1.6;
316
- font-size: var(--jp-code-font-size);
317
- border: var(--jp-border-width) solid transparent;
318
- }
319
-
320
- .CodeMirror {
321
- background-color: var(--md-code-bg-color) !important;
322
- color: var(--md-code-fg-color) !important;
323
- }
324
-
325
- .jp-CodeMirrorEditor {
326
- border-radius: 12px !important;
327
- }
328
-
329
- .jp-Editor {
330
- border-radius: 12px !important;
331
- }
332
-
333
- .jp-InputArea-editor {
334
- border-radius: 12px !important;
335
- border: none !important;
336
- padding: 8px !important;
337
- background-color: #1e1e1e !important;
338
- }
339
-
340
- .jp-InputArea-prompt {
341
- color: var(--md-code-fg-color) !important;
342
- }
343
-
344
- .jp-OutputArea-output {
345
- background-color: #1e1e1e !important;
346
- border-radius: 12px !important;
347
- padding-left: 8px !important;
348
- padding-right: 8px !important;
349
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
350
- font-size: 14px !important;
351
- }
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15H6l7-14v8h5l-7 14z"></path></svg>
File without changes
File without changes
File without changes