You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get all the config as an object or replace the current config with an object:
104
+
Get all the config as a dict or replace the current config with an object:
103
105
104
106
```python
105
107
conf.all({
@@ -115,8 +117,23 @@ Get the item count.
115
117
116
118
Get the path to the config file. Can be used to show the user where the config file is located or even better open it for them.
117
119
120
+
## Contribute
121
+
122
+
Yes, you can contribute. Just dm on <twitter:[@OyetokeT](http://twitter.com/@OyetokeT)>
123
+
124
+
## TODO
125
+
126
+
There are couple of things I still need to add
127
+
128
+
1. Dot-notation: Currently, you can only set configs using this feature. (get, delete)
129
+
130
+
2. Stream: I planned to add a param that'll indicate that you want it to hit the file for every operation. Well that's how it works currently though. But to make it smarter, we don't need to hit the file for (size, get, has, all) operation. We are going to call the `.all()` to get the configs and do the operation just using dict properties.
0 commit comments