├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── examples ├── demo.py ├── fileops.py └── help.html ├── noggin ├── __init__.py ├── app.py ├── compat │ ├── __init__.py │ └── socket.py ├── http.py └── util.py ├── setup.py ├── test-requirements.txt ├── tests ├── test_compat_socket.py └── test_noggin.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.mpy 2 | .lastinstall* 3 | .cache 4 | .tox 5 | .venv 6 | *.egg-info 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/README.md -------------------------------------------------------------------------------- /examples/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/examples/demo.py -------------------------------------------------------------------------------- /examples/fileops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/examples/fileops.py -------------------------------------------------------------------------------- /examples/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/examples/help.html -------------------------------------------------------------------------------- /noggin/__init__.py: -------------------------------------------------------------------------------- 1 | from noggin.app import * # NOQA 2 | -------------------------------------------------------------------------------- /noggin/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/noggin/app.py -------------------------------------------------------------------------------- /noggin/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /noggin/compat/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/noggin/compat/socket.py -------------------------------------------------------------------------------- /noggin/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/noggin/http.py -------------------------------------------------------------------------------- /noggin/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/noggin/util.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/test_compat_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/tests/test_compat_socket.py -------------------------------------------------------------------------------- /tests/test_noggin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/tests/test_noggin.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/micropython-noggin/HEAD/tox.ini --------------------------------------------------------------------------------