datanugget 0.0.1__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.
- datanugget-0.0.1/PKG-INFO +33 -0
- datanugget-0.0.1/README.md +21 -0
- datanugget-0.0.1/datanugget.egg-info/PKG-INFO +33 -0
- datanugget-0.0.1/datanugget.egg-info/SOURCES.txt +6 -0
- datanugget-0.0.1/datanugget.egg-info/dependency_links.txt +1 -0
- datanugget-0.0.1/datanugget.egg-info/top_level.txt +1 -0
- datanugget-0.0.1/pyproject.toml +19 -0
- datanugget-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: datanugget
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A collection of ML and data analysis code snippets
|
|
5
|
+
Author-email: Aswath Msc <aswath@example.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/aswathmsc/datanugget
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.7
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# datanugget
|
|
14
|
+
|
|
15
|
+
A collection of ML and data analysis code snippets.
|
|
16
|
+
|
|
17
|
+
## Install
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install datanugget
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
import datanugget as dn
|
|
27
|
+
|
|
28
|
+
# See all available snippets
|
|
29
|
+
dn.help()
|
|
30
|
+
|
|
31
|
+
# Generate a specific file
|
|
32
|
+
dn.get("1", "output.py")
|
|
33
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# datanugget
|
|
2
|
+
|
|
3
|
+
A collection of ML and data analysis code snippets.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install datanugget
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
import datanugget as dn
|
|
15
|
+
|
|
16
|
+
# See all available snippets
|
|
17
|
+
dn.help()
|
|
18
|
+
|
|
19
|
+
# Generate a specific file
|
|
20
|
+
dn.get("1", "output.py")
|
|
21
|
+
```
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: datanugget
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A collection of ML and data analysis code snippets
|
|
5
|
+
Author-email: Aswath Msc <aswath@example.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/aswathmsc/datanugget
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.7
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# datanugget
|
|
14
|
+
|
|
15
|
+
A collection of ML and data analysis code snippets.
|
|
16
|
+
|
|
17
|
+
## Install
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install datanugget
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
import datanugget as dn
|
|
27
|
+
|
|
28
|
+
# See all available snippets
|
|
29
|
+
dn.help()
|
|
30
|
+
|
|
31
|
+
# Generate a specific file
|
|
32
|
+
dn.get("1", "output.py")
|
|
33
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "datanugget"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "A collection of ML and data analysis code snippets"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.7"
|
|
11
|
+
authors = [{name = "Aswath Msc", email = "aswath@example.com"}]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/aswathmsc/datanugget"
|