Metadata-Version: 2.1
Name: Lindex
Version: 1.0.0
Summary: A python Library created to improve functionality of Nested Dictionaries in Python
Author: @some1and2
Author-email: 04x0xx@gmail.com
License: GPL-3.0
Description-Content-Type: text/markdown
License-File: LICENSE.md

 # Lindex *[List Index]*
 ### by @some1and2
A `python` Library created to improve functionality of Nested Dictionaries in Python

 # Functionality::

- Making a Lindex Dictionary
	```python
	dictionary = lindex(dictionary)
	```

- Ability to index Nested Dictionaries by using a list
	```python
	print(dictionary.RTN(*path))
	```

	if `path` is a list of indexes of the dictionary then this will return `dictionary[path[0]][path[1]][path[2]]...`


- Ability to change information from a Nested Dictionary through a list
	```python
	dictionary.set(*path, num)
	```
	if `path` is a list of indexes of the dictionary, then whatever value is at the end of `dictionary[path[0]][path[1]][path[2]]...` will be set to `num`

- Ability to add to a number from a Nested Dictionary indexed through a list
	```python
	dictionary.add(*path, num)
	```
	whatever value is at the end of `dictionary[path[0]][path[1]][path[2]]...` will be added added with `num`

- Ability to pretty print dictionaries
	```python
	dictionary.pprint()
	```
---
**Documentation** *[Coming Soon]*
