When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}| #!/usr/bin/python3 | |
| import sys | |
| import asyncio | |
| import greenlet | |
| class AsyncIoGreenlet(greenlet.greenlet): | |
| def __init__(self, driver, fn): | |
| greenlet.greenlet.__init__(self, fn, driver) | |
| self.driver = driver |
| # -*- coding: utf-8 -*- | |
| import io | |
| import os | |
| import sys | |
| import time | |
| import wsgiref.util | |
| import uwsgidecorators |
| """ | |
| setup.py | |
| py2app setup script for creating a semi-standalone .app | |
| around a Maya API based PyQt4 application. | |
| Only bundled PyQt4 with the app, and references the Maya install | |
| location for the python environment. | |
| Allows for a portable GUI application that does not require |