Skip to content

Commit edad498

Browse files
committed
PyPI build
1 parent 5365d4d commit edad498

File tree

6 files changed

+18
-2
lines changed

6 files changed

+18
-2
lines changed

dist/pyntree-0.1.2-py3-none-any.whl

-13.7 KB
Binary file not shown.

dist/pyntree-0.1.2.tar.gz

-15.9 KB
Binary file not shown.

dist/pyntree-0.2.0-py3-none-any.whl

14.3 KB
Binary file not shown.

dist/pyntree-0.2.0.tar.gz

17 KB
Binary file not shown.

pyntree.egg-info/PKG-INFO

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: pyntree
3-
Version: 0.1.2
3+
Version: 0.2.0
44
Summary: pyntree is a python package which allows you to easily and syntactically save your data. Not only that, it also lets you save in multiple formats, and even serialize and compress data by merely changing a few characters.
55
Author-email: jvadair <dev@jvadair.com>
66
License: Apache License
@@ -237,6 +237,22 @@ db.hello()
237237
# Output: "world"
238238
db.save()
239239
```
240+
#### Fun example
241+
```python
242+
from datetime import datetime as dt
243+
from pyntree import Node
244+
data = {'right_now': dt.now()} # Some sample data
245+
Node(data).save('file.pyn') # 1-liner to save your data to a file!
246+
```
247+
248+
## Status
249+
pyntree is currently in beta while I battle-test it and work out any bugs not found by the unit tests.
250+
251+
Under normal usage pyntree should perform as expected, but I cannot guaruntee it is production-ready.
252+
253+
You can help by installing and testing the latest release, and reporting any bugs.
254+
255+
You can also star/watch this repository to be notified when I make changes and release updates.
240256

241257
## Docs
242258
The documentation is available at https://pen.jvadair.com/books/pyntree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
dynamic = ["dependencies"]
77
name = "pyntree"
8-
version = "0.1.2"
8+
version = "0.2.0"
99
description = "pyntree is a python package which allows you to easily and syntactically save your data. Not only that, it also lets you save in multiple formats, and even serialize and compress data by merely changing a few characters."
1010
readme = "README.md"
1111
authors = [{ name = "jvadair", email = "dev@jvadair.com" }]

0 commit comments

Comments
 (0)