Skip to content

Commit

Permalink
Merge pull request #10 from kenneth051/readme
Browse files Browse the repository at this point in the history
Readme
  • Loading branch information
kenneth051 committed Jan 9, 2020
2 parents d6935b2 + c2293bb commit ef81fa7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -23,7 +23,7 @@ Example
"nested_thrice": {
"thrice": {"second_nest": {"tripple_nest": {"tripple": "thrice"}, "three": "three"}}
}
}
}

call the relevant method to convert our dict

Expand All @@ -50,7 +50,7 @@ Example
"nested_twice": {
"twice": {"inner_nest": [1, 2, 3, 4, 5]}
}
}
}

conversion

Expand All @@ -62,7 +62,7 @@ output
'obj': 'obj',
'nested_once.first': 'first',
'nested_twice.twice.inner_nest': [1, 2, 3, 4, 5]
}
}


**Don't pass in a list of dictionaries.**
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -5,12 +5,13 @@

setup(
name="dict-dot-notate",
version="0.0.1",
version="0.0.3",
author="Ddumba Kenneth",
author_email="kjdumba@gmail.com",
description="Turns nested dictionary keys to dotted strings with their corresponding values into a basic dictionary",
long_description=long_description,
long_description_content_type='text/markdown',
keywords="dict notate dictdot dot",
url="https://github.com/kenneth051/dict-dot-notate",
packages=[
"dot_notate"
Expand Down

0 comments on commit ef81fa7

Please sign in to comment.