Peter F
Peter F
Apologies - my first ever attempt at contributing to code using a GIT pull request. Not sure which project file these would best be suited to, but I thought it...
A couple of suggestions to variable names (TICKS_PER_SECOND and list_clips) Suggested changes to wording of print() output Suggested changes to wording of comments A new (replacement?) suggestion for demo_batch called...
I didn't see another way of reaching out to you regarding your Whatsapp repo, so apologies for raising an "Issue". I just wondered if you'd had a look at [PyPI](https://pypi.org/project/whatsappcloud/)?...
Create a new utility method (or enhance __init__?) to convert nested dictionaries into nested CleverDicts, so that deeper levels can be accesses easily with "." notation. For example: ``` >>>...
Currently it's possible to set dictionary items with the same (key) names as existing methods e.g. >>> x=CleverDict() >>> x['save']="What a great save!" >>> x['save'] 'What a great save!' They...
.delete() currently just takes a key/attribute name argument which means the actual value will be deleted before any custom delete function is called. It may be important to have that...
When a CleverDict attribute or value is changed using "=" assignment it triggers the `.save()` method as intended. `list.append()` and `list.extend()` do NOT trigger the autosave function however... not sure...