Add this in your ini file:
[alembic]
exclude_tables =
spatial_ref_sys,
foo, bar
In env.py:
def get_list_from_config(config, key):
Add this in your ini file:
[alembic]
exclude_tables =
spatial_ref_sys,
foo, bar
In env.py:
def get_list_from_config(config, key):
| import base64 | |
| import hashlib | |
| import hmac | |
| import simplejson as json | |
| def base64_url_decode(inp): | |
| padding_factor = (4 - len(inp) % 4) % 4 | |
| inp += "="*padding_factor | |
| return base64.b64decode(unicode(inp).translate(dict(zip(map(ord, u'-_'), u'+/')))) |
| { | |
| "snippet": { | |
| "expanded": true, | |
| "newSnippetPrivate": false, | |
| "sorting": "updated_at", | |
| "sortingReverse": true | |
| }, | |
| "editor" : { | |
| "tabSize": 4 |
| #!/bin/bash | |
| # Author: Sasha Nikiforov | |
| # source of inspiration | |
| # https://stackoverflow.com/questions/41293077/how-to-compile-tensorflow-with-sse4-2-and-avx-instructions | |
| # check if VirtuelEnv activated | |
| if [ -z "$VIRTUAL_ENV" ]; then | |
| echo "VirtualEnv is not activated" |
| #!/bin/sh | |
| # Configure homebrew permissions to allow multiple users on MAC OSX. | |
| # Any user from the admin group will be able to manage the homebrew and cask installation on the machine. | |
| # allow admins to manage homebrew's local install directory | |
| chgrp -R admin /usr/local | |
| chmod -R g+w /usr/local | |
| # allow admins to homebrew's local cache of formulae and source files | |
| chgrp -R admin /Library/Caches/Homebrew |
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
| import os | |
| import ipywidgets as widgets | |
| class FileBrowser(object): | |
| def __init__(self): | |
| self.path = os.getcwd() | |
| self._update_files() | |