config2py 0.1.5__tar.gz → 0.1.7__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.
- {config2py-0.1.5 → config2py-0.1.7}/PKG-INFO +3 -3
- {config2py-0.1.5 → config2py-0.1.7}/README.md +2 -2
- {config2py-0.1.5 → config2py-0.1.7}/config2py.egg-info/PKG-INFO +3 -3
- {config2py-0.1.5 → config2py-0.1.7}/setup.cfg +1 -1
- {config2py-0.1.5 → config2py-0.1.7}/LICENSE +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py/__init__.py +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py/base.py +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py/errors.py +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py/s_configparser.py +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py/scrap/__init__.py +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py/tests/__init__.py +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py/tests/util.py +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py/tools.py +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py/util.py +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py.egg-info/SOURCES.txt +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py.egg-info/dependency_links.txt +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py.egg-info/not-zip-safe +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py.egg-info/requires.txt +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/config2py.egg-info/top_level.txt +0 -0
- {config2py-0.1.5 → config2py-0.1.7}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: config2py
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.7
|
|
4
4
|
Summary: Simplified reading and writing configurations from various sources and formats
|
|
5
5
|
Home-page: https://github.com/i2mint/config2py
|
|
6
6
|
Author: OtoSense
|
|
@@ -13,7 +13,7 @@ Description: # config2py
|
|
|
13
13
|
|
|
14
14
|
[Documentation](https://i2mint.github.io/config2py/)
|
|
15
15
|
|
|
16
|
-
Illustrative example
|
|
16
|
+
## Illustrative example
|
|
17
17
|
|
|
18
18
|
```python
|
|
19
19
|
from config2py import get_config, user_gettable
|
|
@@ -63,7 +63,7 @@ Description: # config2py
|
|
|
63
63
|
user again.
|
|
64
64
|
|
|
65
65
|
|
|
66
|
-
# A few notable tools you can import from
|
|
66
|
+
# A few notable tools you can import from config2py
|
|
67
67
|
|
|
68
68
|
* `get_config`: Get a config value from a list of sources. See more below.
|
|
69
69
|
* `user_gettable`: Create a ``GettableContainer`` that asks the user for a value, optionally saving it.
|
|
@@ -6,7 +6,7 @@ To install: ```pip install config2py```
|
|
|
6
6
|
|
|
7
7
|
[Documentation](https://i2mint.github.io/config2py/)
|
|
8
8
|
|
|
9
|
-
Illustrative example
|
|
9
|
+
## Illustrative example
|
|
10
10
|
|
|
11
11
|
```python
|
|
12
12
|
from config2py import get_config, user_gettable
|
|
@@ -56,7 +56,7 @@ It will return the value that the user entered last time, without prompting the
|
|
|
56
56
|
user again.
|
|
57
57
|
|
|
58
58
|
|
|
59
|
-
# A few notable tools you can import from
|
|
59
|
+
# A few notable tools you can import from config2py
|
|
60
60
|
|
|
61
61
|
* `get_config`: Get a config value from a list of sources. See more below.
|
|
62
62
|
* `user_gettable`: Create a ``GettableContainer`` that asks the user for a value, optionally saving it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: config2py
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.7
|
|
4
4
|
Summary: Simplified reading and writing configurations from various sources and formats
|
|
5
5
|
Home-page: https://github.com/i2mint/config2py
|
|
6
6
|
Author: OtoSense
|
|
@@ -13,7 +13,7 @@ Description: # config2py
|
|
|
13
13
|
|
|
14
14
|
[Documentation](https://i2mint.github.io/config2py/)
|
|
15
15
|
|
|
16
|
-
Illustrative example
|
|
16
|
+
## Illustrative example
|
|
17
17
|
|
|
18
18
|
```python
|
|
19
19
|
from config2py import get_config, user_gettable
|
|
@@ -63,7 +63,7 @@ Description: # config2py
|
|
|
63
63
|
user again.
|
|
64
64
|
|
|
65
65
|
|
|
66
|
-
# A few notable tools you can import from
|
|
66
|
+
# A few notable tools you can import from config2py
|
|
67
67
|
|
|
68
68
|
* `get_config`: Get a config value from a list of sources. See more below.
|
|
69
69
|
* `user_gettable`: Create a ``GettableContainer`` that asks the user for a value, optionally saving it.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|