budilnik1919 0.1.0__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.
- budilnik1919-0.1.0/PKG-INFO +40 -0
- budilnik1919-0.1.0/README.md +20 -0
- budilnik1919-0.1.0/budilnik1919.egg-info/PKG-INFO +40 -0
- budilnik1919-0.1.0/budilnik1919.egg-info/SOURCES.txt +9 -0
- budilnik1919-0.1.0/budilnik1919.egg-info/dependency_links.txt +1 -0
- budilnik1919-0.1.0/budilnik1919.egg-info/requires.txt +2 -0
- budilnik1919-0.1.0/budilnik1919.egg-info/top_level.txt +2 -0
- budilnik1919-0.1.0/budilnik1919.py +4 -0
- budilnik1919-0.1.0/numerical_methods_study.py +2128 -0
- budilnik1919-0.1.0/pyproject.toml +32 -0
- budilnik1919-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: budilnik1919
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Study helper with numerical methods reference code for Python notebooks.
|
|
5
|
+
Author-email: жанна <lohozavr@mail.ru>
|
|
6
|
+
Keywords: numerical methods,education,jupyter,notebooks
|
|
7
|
+
Classifier: Development Status :: 3 - Alpha
|
|
8
|
+
Classifier: Intended Audience :: Education
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Classifier: Topic :: Education
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
16
|
+
Requires-Python: >=3.10
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
Requires-Dist: matplotlib>=3.6
|
|
19
|
+
Requires-Dist: numpy>=1.23
|
|
20
|
+
|
|
21
|
+
# budilnik1919
|
|
22
|
+
|
|
23
|
+
Учебная Python-библиотека со справочником и готовыми блоками кода по численным методам.
|
|
24
|
+
|
|
25
|
+
## Установка
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install budilnik1919
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Использование
|
|
32
|
+
|
|
33
|
+
```python
|
|
34
|
+
import budilnik1919 as nm
|
|
35
|
+
|
|
36
|
+
nm.help()
|
|
37
|
+
nm.find("ДПФ")
|
|
38
|
+
nm.show("dft")
|
|
39
|
+
```
|
|
40
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# budilnik1919
|
|
2
|
+
|
|
3
|
+
Учебная Python-библиотека со справочником и готовыми блоками кода по численным методам.
|
|
4
|
+
|
|
5
|
+
## Установка
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install budilnik1919
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Использование
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
import budilnik1919 as nm
|
|
15
|
+
|
|
16
|
+
nm.help()
|
|
17
|
+
nm.find("ДПФ")
|
|
18
|
+
nm.show("dft")
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: budilnik1919
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Study helper with numerical methods reference code for Python notebooks.
|
|
5
|
+
Author-email: жанна <lohozavr@mail.ru>
|
|
6
|
+
Keywords: numerical methods,education,jupyter,notebooks
|
|
7
|
+
Classifier: Development Status :: 3 - Alpha
|
|
8
|
+
Classifier: Intended Audience :: Education
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Classifier: Topic :: Education
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
16
|
+
Requires-Python: >=3.10
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
Requires-Dist: matplotlib>=3.6
|
|
19
|
+
Requires-Dist: numpy>=1.23
|
|
20
|
+
|
|
21
|
+
# budilnik1919
|
|
22
|
+
|
|
23
|
+
Учебная Python-библиотека со справочником и готовыми блоками кода по численным методам.
|
|
24
|
+
|
|
25
|
+
## Установка
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install budilnik1919
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Использование
|
|
32
|
+
|
|
33
|
+
```python
|
|
34
|
+
import budilnik1919 as nm
|
|
35
|
+
|
|
36
|
+
nm.help()
|
|
37
|
+
nm.find("ДПФ")
|
|
38
|
+
nm.show("dft")
|
|
39
|
+
```
|
|
40
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|