├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── observable ├── __init__.py ├── __version__.py ├── core.py └── property.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_core.py └── test_property.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/README.md -------------------------------------------------------------------------------- /observable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/observable/__init__.py -------------------------------------------------------------------------------- /observable/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/observable/__version__.py -------------------------------------------------------------------------------- /observable/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/observable/core.py -------------------------------------------------------------------------------- /observable/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/observable/property.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=88 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/tests/test_property.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/observable/HEAD/tox.ini --------------------------------------------------------------------------------