Convenience package offering
Project description
This package allows you to do the fantastic import:
>>> from nihilo import nihil
This is a nice object which behaves like None but does accept method calls. Why would you want this?
So, we have:
>>> a_dict = { 'who': 'Parmenides' } >>> print a_dict.get('who') Parmenides >>> print a_dict.get('where') None
- But you might want to do:
>>> a_dict.get('who').startswith('g') False >>> a_dict.get('where').startswith('g') Traceback (most recent call last): ... AttributeError: 'NoneType' object has no attribute 'startswith'
- With nihil, you can do:
>>> print a_dict.get('where', nihil).startswith('g') nihil()
Note that casting to bool returns false, so you can easily test..:
>>> if a_dict.get('where', nihil).startwith('g'): ... print "got it!"
nihil is very flexible, it will also allow you to call almost any method and it will return itself:
>>> nihil.foo.bar('quux', frop=True) nihil()
And remember, ex nihilo nihil fit.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nihilo-0.1.tar.gz
(652 Bytes
view details)
File details
Details for the file nihilo-0.1.tar.gz
.
File metadata
- Download URL: nihilo-0.1.tar.gz
- Upload date:
- Size: 652 Bytes
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09788971efb425716e8732a468cb015f1d6be263755f076ea8ea7a624070b900 |
|
MD5 | b5e6a422cba76248112f76e998c1c0bd |
|
BLAKE2b-256 | 88bc7e1ecec49a5cb2212b11407cba21fee26b1f34c7510b7dd530811a60b387 |