-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding support for retrieving items via dot notation in keys * Adding `box_from_file` helper function * Adding merge_update that acts like previous Box magic update * Adding support to `+` boxes together * Adding default_box now can support expanding on `None` placeholders (thanks to Harun Tuncay and Jeremiah Lowin) * Adding ability to recast specified fields (thanks to Steven McGrath) * Adding to_csv and from_csv capability for BoxList objects (thanks to Jiuli Gao) * Changing layout of project to be more object specific * Changing update to act like normal dict update * Changing to 120 line character limit * Changing how `safe_attr` handles unsafe characters * Changing all exceptions to be bases of BoxError so can always be caught with that base exception * Changing delete to also access converted keys (thanks to iordanivanov) * Removing `ordered_box` as Python 3.6+ is ordered by default * Removing `BoxObject` in favor of it being another module
- Loading branch information
1 parent
6d8790e
commit d10fb33
Showing
35 changed files
with
2,405 additions
and
122,789 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
scanner: | ||
diff_only: True | ||
linter: flake8 | ||
|
||
flake8: | ||
max-line-length: 120 # Default is 79 in PEP 8 | ||
ignore: # Errors and warnings to ignore | ||
- F401 | ||
- F403 | ||
- F405 | ||
- W503 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.