Access control in Bottle (by IP)
If you haven’t heard of Bottle, it’s a lightweight web framework for Python. It is perfect if you have a small project that requires a web interface, but you don’t want to go all in with a complex framework like Django. Since Bottle is so lightweight, it doesn’t always have all the features you need built-in. One thing that I was missing was access control. …