Portions taken from http://www.cs.utexas.edu/~mitra/csSpring2011/cs327/cx_mac.html (in case that link ever dies.)
Assume you've got homebrew installed.
Download the following files from Oracle
| # Assumes homebrew and pythonz[1] are installed. | |
| brew install openssl | |
| LDFLAGS="-L$(brew --prefix openssl)/lib" CFLAGS="-I$(brew --prefix openssl)/include" \ | |
| pythonz install \ | |
| -t cpython \ | |
| --url=https://www.python.org/ftp/python/3.6.0/Python-3.6.0a3.tgz \ | |
| 3.6.0a3 |
| from sqlalchemy import engine | |
| from sqlalchemy import event | |
| class DbStats(): | |
| def __init__(self): | |
| self.clear() | |
| def clear(self): | |
| self.total_queries = 0 | |
| self.total_time = 0 |
Portions taken from http://www.cs.utexas.edu/~mitra/csSpring2011/cs327/cx_mac.html (in case that link ever dies.)
Assume you've got homebrew installed.
Download the following files from Oracle