Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jjmerchante on github.
  • I am jjmerchante (https://keybase.io/jjmerchante) on keybase.
  • I have a public key ASA63poDxPomDgrquEcVm_E4Itxo8vcb-5fMqsJYgDYV_wo

To claim this, I am signing this object:

@jjmerchante
jjmerchante / idioms.md
Created November 16, 2017 11:12
Some Python idioms

Python idioms

magic methods (about 100)

from os.path import join

class FileObject:
    '''Wrapper for file objects to gets closed on deletion.'''