numcheat 0.1.0__py3-none-any.whl

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.
numcheat/__init__.py ADDED
@@ -0,0 +1,28 @@
1
+ # -*- coding: utf-8 -*-
2
+ """numcheat — шпаргалка по численным методам: быстрый доступ к коду и теории.
3
+
4
+ Использование:
5
+ from numcheat import code, theory, find, ls, show
6
+
7
+ ls() # оглавление всех методов и тем
8
+ find("шур") # поиск по ключевому слову
9
+ code("ньютон") # копирует готовый код метода в буфер обмена
10
+ theory("штрассен") # копирует текст теоретического ответа в буфер
11
+ show("ньютон") # просто показать код на экране (без копирования)
12
+
13
+ Русские синонимы (для совместимости): код, теория, найти, список, показать.
14
+ """
15
+
16
+ from .core import (
17
+ code, theory, find, ls, show,
18
+ код, теория, найти, список, показать,
19
+ PRACTICE, THEORY,
20
+ )
21
+
22
+ __all__ = [
23
+ "code", "theory", "find", "ls", "show",
24
+ "код", "теория", "найти", "список", "показать",
25
+ "PRACTICE", "THEORY",
26
+ ]
27
+
28
+ __version__ = "0.1.0"