commit
stringlengths
40
40
old_file
stringlengths
4
118
new_file
stringlengths
4
118
old_contents
stringlengths
0
2.94k
new_contents
stringlengths
1
4.43k
subject
stringlengths
15
444
message
stringlengths
16
3.45k
lang
stringclasses
1 value
license
stringclasses
13 values
repos
stringlengths
5
43.2k
prompt
stringlengths
17
4.58k
response
stringlengths
1
4.43k
prompt_tagged
stringlengths
58
4.62k
response_tagged
stringlengths
1
4.43k
text
stringlengths
132
7.29k
text_tagged
stringlengths
173
7.33k
37170b156e6a284d5e5df671875070a3fcac9310
commands/join.py
commands/join.py
from CommandTemplate import CommandTemplate from IrcMessage import IrcMessage class Command(CommandTemplate): triggers = ['join'] helptext = "Makes me join another channel, if I'm allowed to at least" def execute(self, message): """ :type message: IrcMessage """ replytext = "" if message.messagePartsL...
from CommandTemplate import CommandTemplate from IrcMessage import IrcMessage class Command(CommandTemplate): triggers = ['join'] helptext = "Makes me join another channel, if I'm allowed to at least" def execute(self, message): """ :type message: IrcMessage """ replytext = "" if message.messagePartsL...
Check if we're already in the channel; Improved parameter parsing
[Join] Check if we're already in the channel; Improved parameter parsing
Python
mit
Didero/DideRobot
from CommandTemplate import CommandTemplate from IrcMessage import IrcMessage class Command(CommandTemplate): triggers = ['join'] helptext = "Makes me join another channel, if I'm allowed to at least" def execute(self, message): """ :type message: IrcMessage """ replytext = "" if message.messagePartsL...
from CommandTemplate import CommandTemplate from IrcMessage import IrcMessage class Command(CommandTemplate): triggers = ['join'] helptext = "Makes me join another channel, if I'm allowed to at least" def execute(self, message): """ :type message: IrcMessage """ replytext = "" if message.messagePartsL...
<commit_before>from CommandTemplate import CommandTemplate from IrcMessage import IrcMessage class Command(CommandTemplate): triggers = ['join'] helptext = "Makes me join another channel, if I'm allowed to at least" def execute(self, message): """ :type message: IrcMessage """ replytext = "" if messag...
from CommandTemplate import CommandTemplate from IrcMessage import IrcMessage class Command(CommandTemplate): triggers = ['join'] helptext = "Makes me join another channel, if I'm allowed to at least" def execute(self, message): """ :type message: IrcMessage """ replytext = "" if message.messagePartsL...
from CommandTemplate import CommandTemplate from IrcMessage import IrcMessage class Command(CommandTemplate): triggers = ['join'] helptext = "Makes me join another channel, if I'm allowed to at least" def execute(self, message): """ :type message: IrcMessage """ replytext = "" if message.messagePartsL...
<commit_before>from CommandTemplate import CommandTemplate from IrcMessage import IrcMessage class Command(CommandTemplate): triggers = ['join'] helptext = "Makes me join another channel, if I'm allowed to at least" def execute(self, message): """ :type message: IrcMessage """ replytext = "" if messag...
29efb23b2edb46aed4be835787d461ee1ada96f6
GitAutoDeploy.py
GitAutoDeploy.py
#!/usr/bin/env python if __name__ == '__main__': import sys import os import gitautodeploy sys.stderr.write("\033[1;33m[WARNING]\033[0;33m GitAutoDeploy.py is deprecated. Please use \033[1;33m'python gitautodeploy%s'\033[0;33m instead.\033[0m\n" % (' ' + ' '.join(sys.argv[1:])).strip()) gitautodepl...
#!/usr/bin/env python if __name__ == '__main__': import sys import os import gitautodeploy sys.stderr.write("\033[1;33m[WARNING]\033[0;33m GitAutoDeploy.py is deprecated. Please use \033[1;33m'python gitautodeploy%s'\033[0;33m instead.\033[0m\n" % (' ' + ' '.join(sys.argv[1:])).rstrip()) gitautodep...
Fix truncated command and options
Fix truncated command and options Before: ```console $ python GitAutoDeploy.py --daemon-mode [WARNING] GitAutoDeploy.py is deprecated. Please use 'python gitautodeploy--daemon-mode' instead. ``` Now: ```console $ python GitAutoDeploy.py --daemon-mode [WARNING] GitAutoDeploy.py is deprecated. Please use '...
Python
mit
evoja/docker-Github-Gitlab-Auto-Deploy,evoja/docker-Github-Gitlab-Auto-Deploy
#!/usr/bin/env python if __name__ == '__main__': import sys import os import gitautodeploy sys.stderr.write("\033[1;33m[WARNING]\033[0;33m GitAutoDeploy.py is deprecated. Please use \033[1;33m'python gitautodeploy%s'\033[0;33m instead.\033[0m\n" % (' ' + ' '.join(sys.argv[1:])).strip()) gitautodepl...
#!/usr/bin/env python if __name__ == '__main__': import sys import os import gitautodeploy sys.stderr.write("\033[1;33m[WARNING]\033[0;33m GitAutoDeploy.py is deprecated. Please use \033[1;33m'python gitautodeploy%s'\033[0;33m instead.\033[0m\n" % (' ' + ' '.join(sys.argv[1:])).rstrip()) gitautodep...
<commit_before>#!/usr/bin/env python if __name__ == '__main__': import sys import os import gitautodeploy sys.stderr.write("\033[1;33m[WARNING]\033[0;33m GitAutoDeploy.py is deprecated. Please use \033[1;33m'python gitautodeploy%s'\033[0;33m instead.\033[0m\n" % (' ' + ' '.join(sys.argv[1:])).strip()) ...
#!/usr/bin/env python if __name__ == '__main__': import sys import os import gitautodeploy sys.stderr.write("\033[1;33m[WARNING]\033[0;33m GitAutoDeploy.py is deprecated. Please use \033[1;33m'python gitautodeploy%s'\033[0;33m instead.\033[0m\n" % (' ' + ' '.join(sys.argv[1:])).rstrip()) gitautodep...
#!/usr/bin/env python if __name__ == '__main__': import sys import os import gitautodeploy sys.stderr.write("\033[1;33m[WARNING]\033[0;33m GitAutoDeploy.py is deprecated. Please use \033[1;33m'python gitautodeploy%s'\033[0;33m instead.\033[0m\n" % (' ' + ' '.join(sys.argv[1:])).strip()) gitautodepl...
<commit_before>#!/usr/bin/env python if __name__ == '__main__': import sys import os import gitautodeploy sys.stderr.write("\033[1;33m[WARNING]\033[0;33m GitAutoDeploy.py is deprecated. Please use \033[1;33m'python gitautodeploy%s'\033[0;33m instead.\033[0m\n" % (' ' + ' '.join(sys.argv[1:])).strip()) ...
b282c54ebaaae13aa8b81f2380cdc20acaa9fc69
lab/gendata.py
lab/gendata.py
import random import time from coverage.data import CoverageJsonData from coverage.sqldata import CoverageSqliteData NUM_FILES = 1000 NUM_LINES = 1000 def gen_data(cdata): rnd = random.Random() rnd.seed(17) def linenos(num_lines, prob): return (n for n in range(num_lines) if random.random() < pr...
# Run some timing tests of JsonData vs SqliteData. import random import time from coverage.data import CoverageJsonData from coverage.sqldata import CoverageSqliteData NUM_FILES = 1000 NUM_LINES = 1000 def gen_data(cdata): rnd = random.Random() rnd.seed(17) def linenos(num_lines, prob): return ...
Make it run on PyPy for time tests there
Make it run on PyPy for time tests there
Python
apache-2.0
hugovk/coveragepy,nedbat/coveragepy,hugovk/coveragepy,nedbat/coveragepy,hugovk/coveragepy,nedbat/coveragepy,hugovk/coveragepy,hugovk/coveragepy,nedbat/coveragepy,nedbat/coveragepy
import random import time from coverage.data import CoverageJsonData from coverage.sqldata import CoverageSqliteData NUM_FILES = 1000 NUM_LINES = 1000 def gen_data(cdata): rnd = random.Random() rnd.seed(17) def linenos(num_lines, prob): return (n for n in range(num_lines) if random.random() < pr...
# Run some timing tests of JsonData vs SqliteData. import random import time from coverage.data import CoverageJsonData from coverage.sqldata import CoverageSqliteData NUM_FILES = 1000 NUM_LINES = 1000 def gen_data(cdata): rnd = random.Random() rnd.seed(17) def linenos(num_lines, prob): return ...
<commit_before>import random import time from coverage.data import CoverageJsonData from coverage.sqldata import CoverageSqliteData NUM_FILES = 1000 NUM_LINES = 1000 def gen_data(cdata): rnd = random.Random() rnd.seed(17) def linenos(num_lines, prob): return (n for n in range(num_lines) if rando...
# Run some timing tests of JsonData vs SqliteData. import random import time from coverage.data import CoverageJsonData from coverage.sqldata import CoverageSqliteData NUM_FILES = 1000 NUM_LINES = 1000 def gen_data(cdata): rnd = random.Random() rnd.seed(17) def linenos(num_lines, prob): return ...
import random import time from coverage.data import CoverageJsonData from coverage.sqldata import CoverageSqliteData NUM_FILES = 1000 NUM_LINES = 1000 def gen_data(cdata): rnd = random.Random() rnd.seed(17) def linenos(num_lines, prob): return (n for n in range(num_lines) if random.random() < pr...
<commit_before>import random import time from coverage.data import CoverageJsonData from coverage.sqldata import CoverageSqliteData NUM_FILES = 1000 NUM_LINES = 1000 def gen_data(cdata): rnd = random.Random() rnd.seed(17) def linenos(num_lines, prob): return (n for n in range(num_lines) if rando...
711c35ce82479f0ced86ef7b3dff083c49f7ee09
vidscraper/__init__.py
vidscraper/__init__.py
from vidscraper import errors from vidscraper.sites import ( vimeo, google_video, youtube) AUTOSCRAPE_SUITES = [ vimeo.SUITE, google_video.SUITE, youtube.SUITE, blip.SUITE] def scrape_suite(url, suite, fields=None): scraped_data = {} funcs_map = suite['funcs'] fields = fields or funcs_map.ke...
from vidscraper import errors from vidscraper.sites import ( vimeo, google_video, youtube, blip) AUTOSCRAPE_SUITES = [ vimeo.SUITE, google_video.SUITE, youtube.SUITE, blip.SUITE] def scrape_suite(url, suite, fields=None): scraped_data = {} funcs_map = suite['funcs'] fields = fields or funcs_...
Fix the blip autoscrape. Missed an import.
Fix the blip autoscrape. Missed an import. Stupid stupid stupid. Should have tested before pushing.
Python
bsd-3-clause
pculture/vidscraper,pculture/vidscraper
from vidscraper import errors from vidscraper.sites import ( vimeo, google_video, youtube) AUTOSCRAPE_SUITES = [ vimeo.SUITE, google_video.SUITE, youtube.SUITE, blip.SUITE] def scrape_suite(url, suite, fields=None): scraped_data = {} funcs_map = suite['funcs'] fields = fields or funcs_map.ke...
from vidscraper import errors from vidscraper.sites import ( vimeo, google_video, youtube, blip) AUTOSCRAPE_SUITES = [ vimeo.SUITE, google_video.SUITE, youtube.SUITE, blip.SUITE] def scrape_suite(url, suite, fields=None): scraped_data = {} funcs_map = suite['funcs'] fields = fields or funcs_...
<commit_before>from vidscraper import errors from vidscraper.sites import ( vimeo, google_video, youtube) AUTOSCRAPE_SUITES = [ vimeo.SUITE, google_video.SUITE, youtube.SUITE, blip.SUITE] def scrape_suite(url, suite, fields=None): scraped_data = {} funcs_map = suite['funcs'] fields = fields ...
from vidscraper import errors from vidscraper.sites import ( vimeo, google_video, youtube, blip) AUTOSCRAPE_SUITES = [ vimeo.SUITE, google_video.SUITE, youtube.SUITE, blip.SUITE] def scrape_suite(url, suite, fields=None): scraped_data = {} funcs_map = suite['funcs'] fields = fields or funcs_...
from vidscraper import errors from vidscraper.sites import ( vimeo, google_video, youtube) AUTOSCRAPE_SUITES = [ vimeo.SUITE, google_video.SUITE, youtube.SUITE, blip.SUITE] def scrape_suite(url, suite, fields=None): scraped_data = {} funcs_map = suite['funcs'] fields = fields or funcs_map.ke...
<commit_before>from vidscraper import errors from vidscraper.sites import ( vimeo, google_video, youtube) AUTOSCRAPE_SUITES = [ vimeo.SUITE, google_video.SUITE, youtube.SUITE, blip.SUITE] def scrape_suite(url, suite, fields=None): scraped_data = {} funcs_map = suite['funcs'] fields = fields ...
fc3e5201935653228a71d4a52eeffb94de284141
vesper/external_urls.py
vesper/external_urls.py
""" Functions that return external URLs, for example for the Vesper documentation. """ import vesper.version as vesper_version _USE_LATEST_DOCUMENTATION_VERSION = False """Set this `True` during development, `False` for release.""" def _create_documentation_url(): if _USE_LATEST_DOCUMENTATION_VERSION: ...
""" Functions that return external URLs, for example for the Vesper documentation. """ import vesper.version as vesper_version _USE_LATEST_DOCUMENTATION_VERSION = True """Set this `True` during development, `False` for release.""" def _create_documentation_url(): if _USE_LATEST_DOCUMENTATION_VERSION: ...
Edit external URLs module for development.
Edit external URLs module for development.
Python
mit
HaroldMills/Vesper,HaroldMills/Vesper,HaroldMills/Vesper,HaroldMills/Vesper,HaroldMills/Vesper
""" Functions that return external URLs, for example for the Vesper documentation. """ import vesper.version as vesper_version _USE_LATEST_DOCUMENTATION_VERSION = False """Set this `True` during development, `False` for release.""" def _create_documentation_url(): if _USE_LATEST_DOCUMENTATION_VERSION: ...
""" Functions that return external URLs, for example for the Vesper documentation. """ import vesper.version as vesper_version _USE_LATEST_DOCUMENTATION_VERSION = True """Set this `True` during development, `False` for release.""" def _create_documentation_url(): if _USE_LATEST_DOCUMENTATION_VERSION: ...
<commit_before>""" Functions that return external URLs, for example for the Vesper documentation. """ import vesper.version as vesper_version _USE_LATEST_DOCUMENTATION_VERSION = False """Set this `True` during development, `False` for release.""" def _create_documentation_url(): if _USE_LATEST_DOCUMENTAT...
""" Functions that return external URLs, for example for the Vesper documentation. """ import vesper.version as vesper_version _USE_LATEST_DOCUMENTATION_VERSION = True """Set this `True` during development, `False` for release.""" def _create_documentation_url(): if _USE_LATEST_DOCUMENTATION_VERSION: ...
""" Functions that return external URLs, for example for the Vesper documentation. """ import vesper.version as vesper_version _USE_LATEST_DOCUMENTATION_VERSION = False """Set this `True` during development, `False` for release.""" def _create_documentation_url(): if _USE_LATEST_DOCUMENTATION_VERSION: ...
<commit_before>""" Functions that return external URLs, for example for the Vesper documentation. """ import vesper.version as vesper_version _USE_LATEST_DOCUMENTATION_VERSION = False """Set this `True` during development, `False` for release.""" def _create_documentation_url(): if _USE_LATEST_DOCUMENTAT...
ba9386fc7c14be6335896e1d888c822db972dfe1
indra/java_vm.py
indra/java_vm.py
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" import os import warnings import jnius_config if '-Xmx4g' not in jnius_config.get_options(): if not jnius_config.vm_running: jnius_config.add_options('-Xmx4g') else: ...
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" import os import warnings import jnius_config if '-Xmx4g' not in jnius_config.get_options(): if not jnius_config.vm_running: jnius_config.add_options('-Xmx4g') else: ...
Remove messages from Java VM
Remove messages from Java VM
Python
bsd-2-clause
bgyori/indra,johnbachman/belpy,johnbachman/indra,bgyori/indra,sorgerlab/indra,jmuhlich/indra,pvtodorov/indra,johnbachman/belpy,sorgerlab/indra,pvtodorov/indra,jmuhlich/indra,sorgerlab/belpy,sorgerlab/belpy,pvtodorov/indra,johnbachman/belpy,sorgerlab/indra,jmuhlich/indra,bgyori/indra,johnbachman/indra,pvtodorov/indra,jo...
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" import os import warnings import jnius_config if '-Xmx4g' not in jnius_config.get_options(): if not jnius_config.vm_running: jnius_config.add_options('-Xmx4g') else: ...
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" import os import warnings import jnius_config if '-Xmx4g' not in jnius_config.get_options(): if not jnius_config.vm_running: jnius_config.add_options('-Xmx4g') else: ...
<commit_before>"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" import os import warnings import jnius_config if '-Xmx4g' not in jnius_config.get_options(): if not jnius_config.vm_running: jnius_config.add_options('-Xmx4g...
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" import os import warnings import jnius_config if '-Xmx4g' not in jnius_config.get_options(): if not jnius_config.vm_running: jnius_config.add_options('-Xmx4g') else: ...
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" import os import warnings import jnius_config if '-Xmx4g' not in jnius_config.get_options(): if not jnius_config.vm_running: jnius_config.add_options('-Xmx4g') else: ...
<commit_before>"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" import os import warnings import jnius_config if '-Xmx4g' not in jnius_config.get_options(): if not jnius_config.vm_running: jnius_config.add_options('-Xmx4g...
8d170381532228ffbef32534ca1217714b5f1594
dataproperty/type/_typecode.py
dataproperty/type/_typecode.py
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import absolute_import class Typecode(object): NONE = 0 INT = 1 << 0 FLOAT = 1 << 1 STRING = 1 << 2 DATETIME = 1 << 3 INFINITY = 1 << 4 NAN = 1 << 5 BOOL = 1 << 6 DEFAULT_TYPENAME_T...
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import absolute_import class Typecode(object): NONE = 0 INT = 1 << 0 FLOAT = 1 << 1 STRING = 1 << 2 DATETIME = 1 << 3 INFINITY = 1 << 4 NAN = 1 << 5 BOOL = 1 << 6 DEFAULT_TYPENAME_T...
Change integer default type name
Change integer default type name
Python
mit
thombashi/DataProperty
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import absolute_import class Typecode(object): NONE = 0 INT = 1 << 0 FLOAT = 1 << 1 STRING = 1 << 2 DATETIME = 1 << 3 INFINITY = 1 << 4 NAN = 1 << 5 BOOL = 1 << 6 DEFAULT_TYPENAME_T...
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import absolute_import class Typecode(object): NONE = 0 INT = 1 << 0 FLOAT = 1 << 1 STRING = 1 << 2 DATETIME = 1 << 3 INFINITY = 1 << 4 NAN = 1 << 5 BOOL = 1 << 6 DEFAULT_TYPENAME_T...
<commit_before># encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import absolute_import class Typecode(object): NONE = 0 INT = 1 << 0 FLOAT = 1 << 1 STRING = 1 << 2 DATETIME = 1 << 3 INFINITY = 1 << 4 NAN = 1 << 5 BOOL = 1 << 6 DEF...
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import absolute_import class Typecode(object): NONE = 0 INT = 1 << 0 FLOAT = 1 << 1 STRING = 1 << 2 DATETIME = 1 << 3 INFINITY = 1 << 4 NAN = 1 << 5 BOOL = 1 << 6 DEFAULT_TYPENAME_T...
# encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import absolute_import class Typecode(object): NONE = 0 INT = 1 << 0 FLOAT = 1 << 1 STRING = 1 << 2 DATETIME = 1 << 3 INFINITY = 1 << 4 NAN = 1 << 5 BOOL = 1 << 6 DEFAULT_TYPENAME_T...
<commit_before># encoding: utf-8 """ .. codeauthor:: Tsuyoshi Hombashi <gogogo.vm@gmail.com> """ from __future__ import absolute_import class Typecode(object): NONE = 0 INT = 1 << 0 FLOAT = 1 << 1 STRING = 1 << 2 DATETIME = 1 << 3 INFINITY = 1 << 4 NAN = 1 << 5 BOOL = 1 << 6 DEF...
d66b4be946785d7b9223a0a3497d8ec4a4cebea9
project/settings/production.py
project/settings/production.py
import os from .common import * DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'singlepoint', } } PUBLIC_ROOT = os.path.join(os.sep, 'var', 'www', 'singlepoint', 'public') STATIC_ROOT = os.path.join(PUBLIC_ROOT, 'static') MEDIA_ROOT = os.path.join(PUBLI...
import os from .common import * DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'singlepoint', } } PUBLIC_ROOT = os.path.join(os.sep, 'var', 'www', 'singlepoint', 'public') STATIC_ROOT = os.path.join(PUBLIC_ROOT, 'static') MEDIA_ROOT = os.path.join(PUBLI...
Add django celery to installed apps
Add django celery to installed apps
Python
mit
xobb1t/ddash2013,xobb1t/ddash2013
import os from .common import * DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'singlepoint', } } PUBLIC_ROOT = os.path.join(os.sep, 'var', 'www', 'singlepoint', 'public') STATIC_ROOT = os.path.join(PUBLIC_ROOT, 'static') MEDIA_ROOT = os.path.join(PUBLI...
import os from .common import * DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'singlepoint', } } PUBLIC_ROOT = os.path.join(os.sep, 'var', 'www', 'singlepoint', 'public') STATIC_ROOT = os.path.join(PUBLIC_ROOT, 'static') MEDIA_ROOT = os.path.join(PUBLI...
<commit_before>import os from .common import * DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'singlepoint', } } PUBLIC_ROOT = os.path.join(os.sep, 'var', 'www', 'singlepoint', 'public') STATIC_ROOT = os.path.join(PUBLIC_ROOT, 'static') MEDIA_ROOT = os....
import os from .common import * DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'singlepoint', } } PUBLIC_ROOT = os.path.join(os.sep, 'var', 'www', 'singlepoint', 'public') STATIC_ROOT = os.path.join(PUBLIC_ROOT, 'static') MEDIA_ROOT = os.path.join(PUBLI...
import os from .common import * DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'singlepoint', } } PUBLIC_ROOT = os.path.join(os.sep, 'var', 'www', 'singlepoint', 'public') STATIC_ROOT = os.path.join(PUBLIC_ROOT, 'static') MEDIA_ROOT = os.path.join(PUBLI...
<commit_before>import os from .common import * DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'singlepoint', } } PUBLIC_ROOT = os.path.join(os.sep, 'var', 'www', 'singlepoint', 'public') STATIC_ROOT = os.path.join(PUBLIC_ROOT, 'static') MEDIA_ROOT = os....
88fd32be09bc20ce734f272b7d3a54a71958e6b4
energy/models.py
energy/models.py
from sqlalchemy import create_engine from sqlalchemy.sql import text import arrow def get_energy_chart_data(meterId, start_date="2016-09-01", end_date="2016-10-01"): """ Return json object for flot chart """ engine = create_engine('sqlite:///../data/'+ str(meterId) + '.db', echo=...
from sqlalchemy import create_engine from sqlalchemy import MetaData, Table, Column, DateTime, Float, between from sqlalchemy.sql import select, text import arrow metadata = MetaData() meter_readings = Table('interval_readings', metadata, Column('reading_date', DateTime, primary_key=True), Column('ch1', Float...
Use sqlalchemy to generate query
Use sqlalchemy to generate query
Python
agpl-3.0
aguinane/energyusage,aguinane/energyusage,aguinane/energyusage,aguinane/energyusage
from sqlalchemy import create_engine from sqlalchemy.sql import text import arrow def get_energy_chart_data(meterId, start_date="2016-09-01", end_date="2016-10-01"): """ Return json object for flot chart """ engine = create_engine('sqlite:///../data/'+ str(meterId) + '.db', echo=...
from sqlalchemy import create_engine from sqlalchemy import MetaData, Table, Column, DateTime, Float, between from sqlalchemy.sql import select, text import arrow metadata = MetaData() meter_readings = Table('interval_readings', metadata, Column('reading_date', DateTime, primary_key=True), Column('ch1', Float...
<commit_before>from sqlalchemy import create_engine from sqlalchemy.sql import text import arrow def get_energy_chart_data(meterId, start_date="2016-09-01", end_date="2016-10-01"): """ Return json object for flot chart """ engine = create_engine('sqlite:///../data/'+ str(meterId)...
from sqlalchemy import create_engine from sqlalchemy import MetaData, Table, Column, DateTime, Float, between from sqlalchemy.sql import select, text import arrow metadata = MetaData() meter_readings = Table('interval_readings', metadata, Column('reading_date', DateTime, primary_key=True), Column('ch1', Float...
from sqlalchemy import create_engine from sqlalchemy.sql import text import arrow def get_energy_chart_data(meterId, start_date="2016-09-01", end_date="2016-10-01"): """ Return json object for flot chart """ engine = create_engine('sqlite:///../data/'+ str(meterId) + '.db', echo=...
<commit_before>from sqlalchemy import create_engine from sqlalchemy.sql import text import arrow def get_energy_chart_data(meterId, start_date="2016-09-01", end_date="2016-10-01"): """ Return json object for flot chart """ engine = create_engine('sqlite:///../data/'+ str(meterId)...
0b132427e5e81d7e502085d62177bc079cb9d6e8
gaphor/misc/tests/test_gidlethread.py
gaphor/misc/tests/test_gidlethread.py
import pytest from gaphor.misc.gidlethread import GIdleThread def counter(count): for x in range(count): yield x @pytest.fixture def gidle_counter(request): # Setup GIdle Thread with 0.01 sec timeout t = GIdleThread(counter(request.param)) t.start() assert t.is_alive() wait_result =...
import pytest from gaphor.misc.gidlethread import GIdleThread def counter(count): for x in range(count): yield x @pytest.fixture def gidle_counter(request): # Setup GIdle Thread with 0.02 sec timeout t = GIdleThread(counter(request.param)) t.start() assert t.is_alive() wait_result =...
Fix test failing in macOS due to short GIdleThread timeout
Fix test failing in macOS due to short GIdleThread timeout Signed-off-by: Dan Yeaw <2591e5f46f28d303f9dc027d475a5c60d8dea17a@yeaw.me>
Python
lgpl-2.1
amolenaar/gaphor,amolenaar/gaphor
import pytest from gaphor.misc.gidlethread import GIdleThread def counter(count): for x in range(count): yield x @pytest.fixture def gidle_counter(request): # Setup GIdle Thread with 0.01 sec timeout t = GIdleThread(counter(request.param)) t.start() assert t.is_alive() wait_result =...
import pytest from gaphor.misc.gidlethread import GIdleThread def counter(count): for x in range(count): yield x @pytest.fixture def gidle_counter(request): # Setup GIdle Thread with 0.02 sec timeout t = GIdleThread(counter(request.param)) t.start() assert t.is_alive() wait_result =...
<commit_before>import pytest from gaphor.misc.gidlethread import GIdleThread def counter(count): for x in range(count): yield x @pytest.fixture def gidle_counter(request): # Setup GIdle Thread with 0.01 sec timeout t = GIdleThread(counter(request.param)) t.start() assert t.is_alive() ...
import pytest from gaphor.misc.gidlethread import GIdleThread def counter(count): for x in range(count): yield x @pytest.fixture def gidle_counter(request): # Setup GIdle Thread with 0.02 sec timeout t = GIdleThread(counter(request.param)) t.start() assert t.is_alive() wait_result =...
import pytest from gaphor.misc.gidlethread import GIdleThread def counter(count): for x in range(count): yield x @pytest.fixture def gidle_counter(request): # Setup GIdle Thread with 0.01 sec timeout t = GIdleThread(counter(request.param)) t.start() assert t.is_alive() wait_result =...
<commit_before>import pytest from gaphor.misc.gidlethread import GIdleThread def counter(count): for x in range(count): yield x @pytest.fixture def gidle_counter(request): # Setup GIdle Thread with 0.01 sec timeout t = GIdleThread(counter(request.param)) t.start() assert t.is_alive() ...
ea1389d6dfb0060cda8d194079aacc900bbf56ae
simple_graph.py
simple_graph.py
#!/usr/bin/env python from __future__ import print_function from __future__ import unicode_literals class Graph(object): ''' Create an empty graph. ''' def __init__(self): self.graph = {} return def nodes(): return nodes def edges(): return edges def add_node(sel...
#!/usr/bin/env python from __future__ import print_function from __future__ import unicode_literals class Graph(object): ''' Create an empty graph. ''' def __init__(self): self.graph = {} return def nodes(self): return self.graph.keys() def edges(self): edge_list = []...
Add functions for adding a node, an edge, and defining a node
Add functions for adding a node, an edge, and defining a node
Python
mit
constanthatz/data-structures
#!/usr/bin/env python from __future__ import print_function from __future__ import unicode_literals class Graph(object): ''' Create an empty graph. ''' def __init__(self): self.graph = {} return def nodes(): return nodes def edges(): return edges def add_node(sel...
#!/usr/bin/env python from __future__ import print_function from __future__ import unicode_literals class Graph(object): ''' Create an empty graph. ''' def __init__(self): self.graph = {} return def nodes(self): return self.graph.keys() def edges(self): edge_list = []...
<commit_before>#!/usr/bin/env python from __future__ import print_function from __future__ import unicode_literals class Graph(object): ''' Create an empty graph. ''' def __init__(self): self.graph = {} return def nodes(): return nodes def edges(): return edges d...
#!/usr/bin/env python from __future__ import print_function from __future__ import unicode_literals class Graph(object): ''' Create an empty graph. ''' def __init__(self): self.graph = {} return def nodes(self): return self.graph.keys() def edges(self): edge_list = []...
#!/usr/bin/env python from __future__ import print_function from __future__ import unicode_literals class Graph(object): ''' Create an empty graph. ''' def __init__(self): self.graph = {} return def nodes(): return nodes def edges(): return edges def add_node(sel...
<commit_before>#!/usr/bin/env python from __future__ import print_function from __future__ import unicode_literals class Graph(object): ''' Create an empty graph. ''' def __init__(self): self.graph = {} return def nodes(): return nodes def edges(): return edges d...
2d50e06c7e55c19e3055d555d78fac699c61104d
tests/integration/test_os_signals.py
tests/integration/test_os_signals.py
import os import signal import diesel state = {'triggered':False} def waiter(): diesel.signal(signal.SIGUSR1) state['triggered'] = True def test_can_wait_on_os_signals(): # Start our Loop that will wait on USR1 diesel.fork(waiter) # Let execution switch to the newly spawned loop diesel.slee...
import os import signal import diesel from diesel.util.event import Countdown state = {'triggered':False} def waiter(): diesel.signal(signal.SIGUSR1) state['triggered'] = True def test_can_wait_on_os_signals(): # Start our Loop that will wait on USR1 diesel.fork(waiter) # Let execution switch...
Test for multiple waiters on a signal
Test for multiple waiters on a signal
Python
bsd-3-clause
dieseldev/diesel
import os import signal import diesel state = {'triggered':False} def waiter(): diesel.signal(signal.SIGUSR1) state['triggered'] = True def test_can_wait_on_os_signals(): # Start our Loop that will wait on USR1 diesel.fork(waiter) # Let execution switch to the newly spawned loop diesel.slee...
import os import signal import diesel from diesel.util.event import Countdown state = {'triggered':False} def waiter(): diesel.signal(signal.SIGUSR1) state['triggered'] = True def test_can_wait_on_os_signals(): # Start our Loop that will wait on USR1 diesel.fork(waiter) # Let execution switch...
<commit_before>import os import signal import diesel state = {'triggered':False} def waiter(): diesel.signal(signal.SIGUSR1) state['triggered'] = True def test_can_wait_on_os_signals(): # Start our Loop that will wait on USR1 diesel.fork(waiter) # Let execution switch to the newly spawned loop ...
import os import signal import diesel from diesel.util.event import Countdown state = {'triggered':False} def waiter(): diesel.signal(signal.SIGUSR1) state['triggered'] = True def test_can_wait_on_os_signals(): # Start our Loop that will wait on USR1 diesel.fork(waiter) # Let execution switch...
import os import signal import diesel state = {'triggered':False} def waiter(): diesel.signal(signal.SIGUSR1) state['triggered'] = True def test_can_wait_on_os_signals(): # Start our Loop that will wait on USR1 diesel.fork(waiter) # Let execution switch to the newly spawned loop diesel.slee...
<commit_before>import os import signal import diesel state = {'triggered':False} def waiter(): diesel.signal(signal.SIGUSR1) state['triggered'] = True def test_can_wait_on_os_signals(): # Start our Loop that will wait on USR1 diesel.fork(waiter) # Let execution switch to the newly spawned loop ...
caa3b8a7c06f3e1fffb7ec6b957216bd6d147f23
numbas_auth.py
numbas_auth.py
from django_auth_ldap.backend import LDAPBackend class NumbasAuthBackend(LDAPBackend): """Authentication backend overriding LDAPBackend. This could be used to override certain functionality within the LDAP authentication backend. The example here overrides get_or_create_user() to alter the LDAP g...
from django_auth_ldap.backend import LDAPBackend class NumbasAuthBackend(LDAPBackend): """Authentication backend overriding LDAPBackend. This could be used to override certain functionality within the LDAP authentication backend. The example here overrides get_or_create_user() to alter the LDAP g...
Fix case sensitive LDAP attributes
Fix case sensitive LDAP attributes
Python
apache-2.0
numbas/editor,numbas/editor,numbas/editor
from django_auth_ldap.backend import LDAPBackend class NumbasAuthBackend(LDAPBackend): """Authentication backend overriding LDAPBackend. This could be used to override certain functionality within the LDAP authentication backend. The example here overrides get_or_create_user() to alter the LDAP g...
from django_auth_ldap.backend import LDAPBackend class NumbasAuthBackend(LDAPBackend): """Authentication backend overriding LDAPBackend. This could be used to override certain functionality within the LDAP authentication backend. The example here overrides get_or_create_user() to alter the LDAP g...
<commit_before>from django_auth_ldap.backend import LDAPBackend class NumbasAuthBackend(LDAPBackend): """Authentication backend overriding LDAPBackend. This could be used to override certain functionality within the LDAP authentication backend. The example here overrides get_or_create_user() to a...
from django_auth_ldap.backend import LDAPBackend class NumbasAuthBackend(LDAPBackend): """Authentication backend overriding LDAPBackend. This could be used to override certain functionality within the LDAP authentication backend. The example here overrides get_or_create_user() to alter the LDAP g...
from django_auth_ldap.backend import LDAPBackend class NumbasAuthBackend(LDAPBackend): """Authentication backend overriding LDAPBackend. This could be used to override certain functionality within the LDAP authentication backend. The example here overrides get_or_create_user() to alter the LDAP g...
<commit_before>from django_auth_ldap.backend import LDAPBackend class NumbasAuthBackend(LDAPBackend): """Authentication backend overriding LDAPBackend. This could be used to override certain functionality within the LDAP authentication backend. The example here overrides get_or_create_user() to a...
c7d03f4f8d4d50ce837cf0df446a52b24e891cee
config/flask_prod.py
config/flask_prod.py
import os from rmc.config.flask_base import * import rmc.shared.secrets as s JS_DIR = 'js_prod' DEBUG = False ENV = 'prod' GA_PROPERTY_ID = 'UA-35073503-1' LOG_DIR = '/home/rmc/logs' LOG_PATH = os.path.join(LOG_DIR, 'server/server.log') FB_APP_ID = '219309734863464' FB_APP_SECRET = s.FB_APP_SECRET_PROD
import os from rmc.config.flask_base import * import rmc.shared.secrets as s JS_DIR = 'js' DEBUG = False ENV = 'prod' GA_PROPERTY_ID = 'UA-35073503-1' LOG_DIR = '/home/rmc/logs' LOG_PATH = os.path.join(LOG_DIR, 'server/server.log') FB_APP_ID = '219309734863464' FB_APP_SECRET = s.FB_APP_SECRET_PROD
Revert "Revert "do not use minified js on prod"" (=don't minify to fix things)
Revert "Revert "do not use minified js on prod"" (=don't minify to fix things) This reverts commit 88f2886393991ac660ac382d48c65088eff56d52.
Python
mit
sachdevs/rmc,MichalKononenko/rmc,sachdevs/rmc,ccqi/rmc,JGulbronson/rmc,MichalKononenko/rmc,JGulbronson/rmc,JGulbronson/rmc,sachdevs/rmc,rageandqq/rmc,MichalKononenko/rmc,JGulbronson/rmc,ccqi/rmc,shakilkanji/rmc,MichalKononenko/rmc,rageandqq/rmc,UWFlow/rmc,UWFlow/rmc,UWFlow/rmc,ccqi/rmc,rageandqq/rmc,UWFlow/rmc,duaayous...
import os from rmc.config.flask_base import * import rmc.shared.secrets as s JS_DIR = 'js_prod' DEBUG = False ENV = 'prod' GA_PROPERTY_ID = 'UA-35073503-1' LOG_DIR = '/home/rmc/logs' LOG_PATH = os.path.join(LOG_DIR, 'server/server.log') FB_APP_ID = '219309734863464' FB_APP_SECRET = s.FB_APP_SECRET_PROD Revert "Revert...
import os from rmc.config.flask_base import * import rmc.shared.secrets as s JS_DIR = 'js' DEBUG = False ENV = 'prod' GA_PROPERTY_ID = 'UA-35073503-1' LOG_DIR = '/home/rmc/logs' LOG_PATH = os.path.join(LOG_DIR, 'server/server.log') FB_APP_ID = '219309734863464' FB_APP_SECRET = s.FB_APP_SECRET_PROD
<commit_before>import os from rmc.config.flask_base import * import rmc.shared.secrets as s JS_DIR = 'js_prod' DEBUG = False ENV = 'prod' GA_PROPERTY_ID = 'UA-35073503-1' LOG_DIR = '/home/rmc/logs' LOG_PATH = os.path.join(LOG_DIR, 'server/server.log') FB_APP_ID = '219309734863464' FB_APP_SECRET = s.FB_APP_SECRET_PROD...
import os from rmc.config.flask_base import * import rmc.shared.secrets as s JS_DIR = 'js' DEBUG = False ENV = 'prod' GA_PROPERTY_ID = 'UA-35073503-1' LOG_DIR = '/home/rmc/logs' LOG_PATH = os.path.join(LOG_DIR, 'server/server.log') FB_APP_ID = '219309734863464' FB_APP_SECRET = s.FB_APP_SECRET_PROD
import os from rmc.config.flask_base import * import rmc.shared.secrets as s JS_DIR = 'js_prod' DEBUG = False ENV = 'prod' GA_PROPERTY_ID = 'UA-35073503-1' LOG_DIR = '/home/rmc/logs' LOG_PATH = os.path.join(LOG_DIR, 'server/server.log') FB_APP_ID = '219309734863464' FB_APP_SECRET = s.FB_APP_SECRET_PROD Revert "Revert...
<commit_before>import os from rmc.config.flask_base import * import rmc.shared.secrets as s JS_DIR = 'js_prod' DEBUG = False ENV = 'prod' GA_PROPERTY_ID = 'UA-35073503-1' LOG_DIR = '/home/rmc/logs' LOG_PATH = os.path.join(LOG_DIR, 'server/server.log') FB_APP_ID = '219309734863464' FB_APP_SECRET = s.FB_APP_SECRET_PROD...
931ae68671abef1fedde46d585a4057b24ecbb04
reinforcement-learning/play.py
reinforcement-learning/play.py
"""Load the trained q table and make actions based on that. """ import time import env import rl rl.load_q() env.make("pygame") while True: env.reset() for _ in range(15): if env.done: break action = rl.choose_action(rl.table[env.object[0]]) env.action(action) time...
"""Load the trained q table and make actions based on that. """ import time import env import rl rl.load_q() env.make("pygame") while True: env.reset() for _ in range(15): if env.done: break action = rl.choose_action(env.player, "test") env.action(action) time.slee...
Update to newest version of rl.py.
Update to newest version of rl.py.
Python
mit
danieloconell/Louis
"""Load the trained q table and make actions based on that. """ import time import env import rl rl.load_q() env.make("pygame") while True: env.reset() for _ in range(15): if env.done: break action = rl.choose_action(rl.table[env.object[0]]) env.action(action) time...
"""Load the trained q table and make actions based on that. """ import time import env import rl rl.load_q() env.make("pygame") while True: env.reset() for _ in range(15): if env.done: break action = rl.choose_action(env.player, "test") env.action(action) time.slee...
<commit_before>"""Load the trained q table and make actions based on that. """ import time import env import rl rl.load_q() env.make("pygame") while True: env.reset() for _ in range(15): if env.done: break action = rl.choose_action(rl.table[env.object[0]]) env.action(actio...
"""Load the trained q table and make actions based on that. """ import time import env import rl rl.load_q() env.make("pygame") while True: env.reset() for _ in range(15): if env.done: break action = rl.choose_action(env.player, "test") env.action(action) time.slee...
"""Load the trained q table and make actions based on that. """ import time import env import rl rl.load_q() env.make("pygame") while True: env.reset() for _ in range(15): if env.done: break action = rl.choose_action(rl.table[env.object[0]]) env.action(action) time...
<commit_before>"""Load the trained q table and make actions based on that. """ import time import env import rl rl.load_q() env.make("pygame") while True: env.reset() for _ in range(15): if env.done: break action = rl.choose_action(rl.table[env.object[0]]) env.action(actio...
bb6b6b46860f6e03abc4ac9c47751fe4309f0e17
md2pdf/core.py
md2pdf/core.py
# -*- coding: utf-8 -*- from markdown2 import markdown, markdown_path from weasyprint import HTML, CSS from .exceptions import ValidationError __title__ = 'md2pdf' __version__ = '0.2.1' __author__ = 'Julien Maupetit' __license__ = 'MIT' __copyright__ = 'Copyright 2013 Julien Maupetit' def md2pdf(pdf_file_path, md_...
# -*- coding: utf-8 -*- from markdown2 import markdown, markdown_path from weasyprint import HTML, CSS from .exceptions import ValidationError __title__ = 'md2pdf' __version__ = '0.2.1' __author__ = 'Julien Maupetit' __license__ = 'MIT' __copyright__ = 'Copyright 2013 Julien Maupetit' def md2pdf(pdf_file_path, md_...
Allow to add a base url to find media
Allow to add a base url to find media
Python
mit
jmaupetit/md2pdf
# -*- coding: utf-8 -*- from markdown2 import markdown, markdown_path from weasyprint import HTML, CSS from .exceptions import ValidationError __title__ = 'md2pdf' __version__ = '0.2.1' __author__ = 'Julien Maupetit' __license__ = 'MIT' __copyright__ = 'Copyright 2013 Julien Maupetit' def md2pdf(pdf_file_path, md_...
# -*- coding: utf-8 -*- from markdown2 import markdown, markdown_path from weasyprint import HTML, CSS from .exceptions import ValidationError __title__ = 'md2pdf' __version__ = '0.2.1' __author__ = 'Julien Maupetit' __license__ = 'MIT' __copyright__ = 'Copyright 2013 Julien Maupetit' def md2pdf(pdf_file_path, md_...
<commit_before># -*- coding: utf-8 -*- from markdown2 import markdown, markdown_path from weasyprint import HTML, CSS from .exceptions import ValidationError __title__ = 'md2pdf' __version__ = '0.2.1' __author__ = 'Julien Maupetit' __license__ = 'MIT' __copyright__ = 'Copyright 2013 Julien Maupetit' def md2pdf(pdf...
# -*- coding: utf-8 -*- from markdown2 import markdown, markdown_path from weasyprint import HTML, CSS from .exceptions import ValidationError __title__ = 'md2pdf' __version__ = '0.2.1' __author__ = 'Julien Maupetit' __license__ = 'MIT' __copyright__ = 'Copyright 2013 Julien Maupetit' def md2pdf(pdf_file_path, md_...
# -*- coding: utf-8 -*- from markdown2 import markdown, markdown_path from weasyprint import HTML, CSS from .exceptions import ValidationError __title__ = 'md2pdf' __version__ = '0.2.1' __author__ = 'Julien Maupetit' __license__ = 'MIT' __copyright__ = 'Copyright 2013 Julien Maupetit' def md2pdf(pdf_file_path, md_...
<commit_before># -*- coding: utf-8 -*- from markdown2 import markdown, markdown_path from weasyprint import HTML, CSS from .exceptions import ValidationError __title__ = 'md2pdf' __version__ = '0.2.1' __author__ = 'Julien Maupetit' __license__ = 'MIT' __copyright__ = 'Copyright 2013 Julien Maupetit' def md2pdf(pdf...
0e19f960b2234fcd9711f123526f8de507ed2d99
src/registry.py
src/registry.py
from .formatter import * class FormatterRegistry(): def __init__(self): self.__formatters = [] def populate(self): self.__formatters = [ ClangFormat(), ElmFormat(), GoFormat(), JavaScriptFormat(), JsonFormat(), PythonFormat(), RustFormat(), TerraformFormat() ] ...
from .formatter import * class FormatterRegistry(): def __init__(self): self.__formatters = [] self.__formatter_source_map = {} def populate(self): self.__formatters = [ ClangFormat(), ElmFormat(), GoFormat(), JavaScriptFormat(), JsonFormat(), PythonFormat(), R...
Speed up lookup of formatter by source type
Speed up lookup of formatter by source type
Python
mit
Rypac/sublime-format
from .formatter import * class FormatterRegistry(): def __init__(self): self.__formatters = [] def populate(self): self.__formatters = [ ClangFormat(), ElmFormat(), GoFormat(), JavaScriptFormat(), JsonFormat(), PythonFormat(), RustFormat(), TerraformFormat() ] ...
from .formatter import * class FormatterRegistry(): def __init__(self): self.__formatters = [] self.__formatter_source_map = {} def populate(self): self.__formatters = [ ClangFormat(), ElmFormat(), GoFormat(), JavaScriptFormat(), JsonFormat(), PythonFormat(), R...
<commit_before>from .formatter import * class FormatterRegistry(): def __init__(self): self.__formatters = [] def populate(self): self.__formatters = [ ClangFormat(), ElmFormat(), GoFormat(), JavaScriptFormat(), JsonFormat(), PythonFormat(), RustFormat(), TerraformForm...
from .formatter import * class FormatterRegistry(): def __init__(self): self.__formatters = [] self.__formatter_source_map = {} def populate(self): self.__formatters = [ ClangFormat(), ElmFormat(), GoFormat(), JavaScriptFormat(), JsonFormat(), PythonFormat(), R...
from .formatter import * class FormatterRegistry(): def __init__(self): self.__formatters = [] def populate(self): self.__formatters = [ ClangFormat(), ElmFormat(), GoFormat(), JavaScriptFormat(), JsonFormat(), PythonFormat(), RustFormat(), TerraformFormat() ] ...
<commit_before>from .formatter import * class FormatterRegistry(): def __init__(self): self.__formatters = [] def populate(self): self.__formatters = [ ClangFormat(), ElmFormat(), GoFormat(), JavaScriptFormat(), JsonFormat(), PythonFormat(), RustFormat(), TerraformForm...
22cb22dfdb5ec4c19e8a90f65483cf372c5731a0
src/examples/command_group.py
src/examples/command_group.py
from cmdtree import group, argument, entry @group("docker") @argument("ip") def docker(): pass # nested command @docker.command("run") @argument("container-name") def run(ip, container_name): print( "container [{name}] on host [{ip}]".format( ip=ip, name=container_name, ...
from cmdtree import group, argument, entry @group("fake-docker", "fake-docker command binds") def fake_docker(): pass @group("docker", "docker command binds") @argument("ip", help="docker daemon ip addr") def docker(): pass # nested command @docker.command("run", help="run docker command") @argument("cont...
Update examples for multiple group
Update: Update examples for multiple group
Python
mit
winkidney/cmdtree,winkidney/cmdtree
from cmdtree import group, argument, entry @group("docker") @argument("ip") def docker(): pass # nested command @docker.command("run") @argument("container-name") def run(ip, container_name): print( "container [{name}] on host [{ip}]".format( ip=ip, name=container_name, ...
from cmdtree import group, argument, entry @group("fake-docker", "fake-docker command binds") def fake_docker(): pass @group("docker", "docker command binds") @argument("ip", help="docker daemon ip addr") def docker(): pass # nested command @docker.command("run", help="run docker command") @argument("cont...
<commit_before>from cmdtree import group, argument, entry @group("docker") @argument("ip") def docker(): pass # nested command @docker.command("run") @argument("container-name") def run(ip, container_name): print( "container [{name}] on host [{ip}]".format( ip=ip, name=contai...
from cmdtree import group, argument, entry @group("fake-docker", "fake-docker command binds") def fake_docker(): pass @group("docker", "docker command binds") @argument("ip", help="docker daemon ip addr") def docker(): pass # nested command @docker.command("run", help="run docker command") @argument("cont...
from cmdtree import group, argument, entry @group("docker") @argument("ip") def docker(): pass # nested command @docker.command("run") @argument("container-name") def run(ip, container_name): print( "container [{name}] on host [{ip}]".format( ip=ip, name=container_name, ...
<commit_before>from cmdtree import group, argument, entry @group("docker") @argument("ip") def docker(): pass # nested command @docker.command("run") @argument("container-name") def run(ip, container_name): print( "container [{name}] on host [{ip}]".format( ip=ip, name=contai...
934acb38906b9b6e42620d2e8153dbfd129f01e4
src/damis/models.py
src/damis/models.py
from django.db import models from django.contrib.auth.models import User class DatasetLicence(models.Model): title = models.CharField(max_length=255) short_title = models.CharField(max_length=30) url = models.URLField() summary = models.TextField() updated = models.DateTimeField(auto_now=True) ...
from django.db import models from django.contrib.auth.models import User class DatasetLicence(models.Model): title = models.CharField(max_length=255) short_title = models.CharField(max_length=30) url = models.URLField() summary = models.TextField() updated = models.DateTimeField(auto_now=True) ...
Add slug field to Dataset model. Using slugs for API looks better than pk.
Add slug field to Dataset model. Using slugs for API looks better than pk.
Python
agpl-3.0
InScience/DAMIS-old,InScience/DAMIS-old
from django.db import models from django.contrib.auth.models import User class DatasetLicence(models.Model): title = models.CharField(max_length=255) short_title = models.CharField(max_length=30) url = models.URLField() summary = models.TextField() updated = models.DateTimeField(auto_now=True) ...
from django.db import models from django.contrib.auth.models import User class DatasetLicence(models.Model): title = models.CharField(max_length=255) short_title = models.CharField(max_length=30) url = models.URLField() summary = models.TextField() updated = models.DateTimeField(auto_now=True) ...
<commit_before>from django.db import models from django.contrib.auth.models import User class DatasetLicence(models.Model): title = models.CharField(max_length=255) short_title = models.CharField(max_length=30) url = models.URLField() summary = models.TextField() updated = models.DateTimeField(aut...
from django.db import models from django.contrib.auth.models import User class DatasetLicence(models.Model): title = models.CharField(max_length=255) short_title = models.CharField(max_length=30) url = models.URLField() summary = models.TextField() updated = models.DateTimeField(auto_now=True) ...
from django.db import models from django.contrib.auth.models import User class DatasetLicence(models.Model): title = models.CharField(max_length=255) short_title = models.CharField(max_length=30) url = models.URLField() summary = models.TextField() updated = models.DateTimeField(auto_now=True) ...
<commit_before>from django.db import models from django.contrib.auth.models import User class DatasetLicence(models.Model): title = models.CharField(max_length=255) short_title = models.CharField(max_length=30) url = models.URLField() summary = models.TextField() updated = models.DateTimeField(aut...
d82588adaded8943543b9f0300e0d683925496ce
01/server.py
01/server.py
from google.appengine.api import users import webapp2 class MainPage(webapp2.RequestHandler): def get(self): self.response.set_status(200) self.response.headers['Content-Type'] = 'text/html; charset=utf-8' if users.get_current_user(): url = users.create_logout_url(self.request.uri) ...
import webapp2 class MainPage(webapp2.RequestHandler): def get(self): self.response.set_status(200) self.response.headers['Content-Type'] = 'text/html; charset=utf-8' self.response.out.write('Hello World') application = webapp2.WSGIApplication([ ('/', MainPage), ], debug=True)
Simplify by removing user login.
Simplify by removing user login.
Python
apache-2.0
luisibanez/appengine-python-101
from google.appengine.api import users import webapp2 class MainPage(webapp2.RequestHandler): def get(self): self.response.set_status(200) self.response.headers['Content-Type'] = 'text/html; charset=utf-8' if users.get_current_user(): url = users.create_logout_url(self.request.uri) ...
import webapp2 class MainPage(webapp2.RequestHandler): def get(self): self.response.set_status(200) self.response.headers['Content-Type'] = 'text/html; charset=utf-8' self.response.out.write('Hello World') application = webapp2.WSGIApplication([ ('/', MainPage), ], debug=True)
<commit_before> from google.appengine.api import users import webapp2 class MainPage(webapp2.RequestHandler): def get(self): self.response.set_status(200) self.response.headers['Content-Type'] = 'text/html; charset=utf-8' if users.get_current_user(): url = users.create_logout_url(self....
import webapp2 class MainPage(webapp2.RequestHandler): def get(self): self.response.set_status(200) self.response.headers['Content-Type'] = 'text/html; charset=utf-8' self.response.out.write('Hello World') application = webapp2.WSGIApplication([ ('/', MainPage), ], debug=True)
from google.appengine.api import users import webapp2 class MainPage(webapp2.RequestHandler): def get(self): self.response.set_status(200) self.response.headers['Content-Type'] = 'text/html; charset=utf-8' if users.get_current_user(): url = users.create_logout_url(self.request.uri) ...
<commit_before> from google.appengine.api import users import webapp2 class MainPage(webapp2.RequestHandler): def get(self): self.response.set_status(200) self.response.headers['Content-Type'] = 'text/html; charset=utf-8' if users.get_current_user(): url = users.create_logout_url(self....
6b1ad76140741fd29d8a0d0a0e057b59cd312587
corehq/sql_db/routers.py
corehq/sql_db/routers.py
from .config import PartitionConfig PROXY_APP = 'sql_proxy_accessors' SQL_ACCESSORS_APP = 'sql_accessors' FORM_PROCESSING_GROUP = 'form_processing' PROXY_GROUP = 'proxy' MAIN_GROUP = 'main' class PartitionRouter(object): def __init__(self): self.config = PartitionConfig() def allow_migrate(self, d...
from .config import PartitionConfig PROXY_APP = 'sql_proxy_accessors' SQL_ACCESSORS_APP = 'sql_accessors' FORM_PROCESSING_GROUP = 'form_processing' PROXY_GROUP = 'proxy' MAIN_GROUP = 'main' class PartitionRouter(object): def __init__(self): self.config = PartitionConfig() def allow_migrate(self, d...
Remove unnecessary call to PartitionConfig
Remove unnecessary call to PartitionConfig
Python
bsd-3-clause
dimagi/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq
from .config import PartitionConfig PROXY_APP = 'sql_proxy_accessors' SQL_ACCESSORS_APP = 'sql_accessors' FORM_PROCESSING_GROUP = 'form_processing' PROXY_GROUP = 'proxy' MAIN_GROUP = 'main' class PartitionRouter(object): def __init__(self): self.config = PartitionConfig() def allow_migrate(self, d...
from .config import PartitionConfig PROXY_APP = 'sql_proxy_accessors' SQL_ACCESSORS_APP = 'sql_accessors' FORM_PROCESSING_GROUP = 'form_processing' PROXY_GROUP = 'proxy' MAIN_GROUP = 'main' class PartitionRouter(object): def __init__(self): self.config = PartitionConfig() def allow_migrate(self, d...
<commit_before>from .config import PartitionConfig PROXY_APP = 'sql_proxy_accessors' SQL_ACCESSORS_APP = 'sql_accessors' FORM_PROCESSING_GROUP = 'form_processing' PROXY_GROUP = 'proxy' MAIN_GROUP = 'main' class PartitionRouter(object): def __init__(self): self.config = PartitionConfig() def allow_...
from .config import PartitionConfig PROXY_APP = 'sql_proxy_accessors' SQL_ACCESSORS_APP = 'sql_accessors' FORM_PROCESSING_GROUP = 'form_processing' PROXY_GROUP = 'proxy' MAIN_GROUP = 'main' class PartitionRouter(object): def __init__(self): self.config = PartitionConfig() def allow_migrate(self, d...
from .config import PartitionConfig PROXY_APP = 'sql_proxy_accessors' SQL_ACCESSORS_APP = 'sql_accessors' FORM_PROCESSING_GROUP = 'form_processing' PROXY_GROUP = 'proxy' MAIN_GROUP = 'main' class PartitionRouter(object): def __init__(self): self.config = PartitionConfig() def allow_migrate(self, d...
<commit_before>from .config import PartitionConfig PROXY_APP = 'sql_proxy_accessors' SQL_ACCESSORS_APP = 'sql_accessors' FORM_PROCESSING_GROUP = 'form_processing' PROXY_GROUP = 'proxy' MAIN_GROUP = 'main' class PartitionRouter(object): def __init__(self): self.config = PartitionConfig() def allow_...
8a0ce66150bb4e1147f5fb88fdd8fd0d391c7daa
dask_ndmeasure/_utils.py
dask_ndmeasure/_utils.py
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*- import numpy import dask.array from . import _compat def _norm_input_labels_index(input, labels=None, index=None): """ Normalize arguments to a standard form. """ input = _compat._asarray(input) if labels is None: labels = (input != 0).astype(numpy.int64) ...
Add arg normalizing function for labels and index
Add arg normalizing function for labels and index Refactored from code in `center_of_mass`, the `_norm_input_labels_index` function handles the normalization of `input`, `labels`, and `index` arguments. As these particular arguments will show up repeatedly in the API, it will be very helpful to have normalize them in ...
Python
bsd-3-clause
dask-image/dask-ndmeasure
# -*- coding: utf-8 -*- Add arg normalizing function for labels and index Refactored from code in `center_of_mass`, the `_norm_input_labels_index` function handles the normalization of `input`, `labels`, and `index` arguments. As these particular arguments will show up repeatedly in the API, it will be very helpful to...
# -*- coding: utf-8 -*- import numpy import dask.array from . import _compat def _norm_input_labels_index(input, labels=None, index=None): """ Normalize arguments to a standard form. """ input = _compat._asarray(input) if labels is None: labels = (input != 0).astype(numpy.int64) ...
<commit_before># -*- coding: utf-8 -*- <commit_msg>Add arg normalizing function for labels and index Refactored from code in `center_of_mass`, the `_norm_input_labels_index` function handles the normalization of `input`, `labels`, and `index` arguments. As these particular arguments will show up repeatedly in the API,...
# -*- coding: utf-8 -*- import numpy import dask.array from . import _compat def _norm_input_labels_index(input, labels=None, index=None): """ Normalize arguments to a standard form. """ input = _compat._asarray(input) if labels is None: labels = (input != 0).astype(numpy.int64) ...
# -*- coding: utf-8 -*- Add arg normalizing function for labels and index Refactored from code in `center_of_mass`, the `_norm_input_labels_index` function handles the normalization of `input`, `labels`, and `index` arguments. As these particular arguments will show up repeatedly in the API, it will be very helpful to...
<commit_before># -*- coding: utf-8 -*- <commit_msg>Add arg normalizing function for labels and index Refactored from code in `center_of_mass`, the `_norm_input_labels_index` function handles the normalization of `input`, `labels`, and `index` arguments. As these particular arguments will show up repeatedly in the API,...
b8d50cf4f7431ed617957e7d6e432a1729656524
setuptools/command/__init__.py
setuptools/command/__init__.py
from distutils.command.bdist import bdist import sys if 'egg' not in bdist.format_commands: bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") bdist.format_commands.append('egg') del bdist, sys
from distutils.command.bdist import bdist import sys if 'egg' not in bdist.format_commands: try: bdist.format_commands['egg'] = ('bdist_egg', "Python .egg file") except TypeError: # For backward compatibility with older distutils (stdlib) bdist.format_command['egg'] = ('bdist_egg', "Pyt...
Update 'bdist' format addition to assume a single 'format_commands' as a dictionary, but fall back to the dual dict/list model for compatibility with stdlib.
Update 'bdist' format addition to assume a single 'format_commands' as a dictionary, but fall back to the dual dict/list model for compatibility with stdlib.
Python
mit
pypa/setuptools,pypa/setuptools,pypa/setuptools
from distutils.command.bdist import bdist import sys if 'egg' not in bdist.format_commands: bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") bdist.format_commands.append('egg') del bdist, sys Update 'bdist' format addition to assume a single 'format_commands' as a dictionary, but fall back to t...
from distutils.command.bdist import bdist import sys if 'egg' not in bdist.format_commands: try: bdist.format_commands['egg'] = ('bdist_egg', "Python .egg file") except TypeError: # For backward compatibility with older distutils (stdlib) bdist.format_command['egg'] = ('bdist_egg', "Pyt...
<commit_before>from distutils.command.bdist import bdist import sys if 'egg' not in bdist.format_commands: bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") bdist.format_commands.append('egg') del bdist, sys <commit_msg>Update 'bdist' format addition to assume a single 'format_commands' as a dic...
from distutils.command.bdist import bdist import sys if 'egg' not in bdist.format_commands: try: bdist.format_commands['egg'] = ('bdist_egg', "Python .egg file") except TypeError: # For backward compatibility with older distutils (stdlib) bdist.format_command['egg'] = ('bdist_egg', "Pyt...
from distutils.command.bdist import bdist import sys if 'egg' not in bdist.format_commands: bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") bdist.format_commands.append('egg') del bdist, sys Update 'bdist' format addition to assume a single 'format_commands' as a dictionary, but fall back to t...
<commit_before>from distutils.command.bdist import bdist import sys if 'egg' not in bdist.format_commands: bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") bdist.format_commands.append('egg') del bdist, sys <commit_msg>Update 'bdist' format addition to assume a single 'format_commands' as a dic...
e392998022ec41b82276464ffecbd859d5e13c63
src/models/facility_monitoring.py
src/models/facility_monitoring.py
import pandas as pd import numpy as np import matplotlib.pyplot as plt class facility(object): """ A Facility currently under monitoring """ def __init__(self , data) : self.validated_data = data def monitor_new_report(self) : out = np.random.choice(['Validate' , 'Supervise - Data' ...
import pandas as pd import numpy as np import matplotlib.pyplot as plt from reports_monitoring import * store = pd.HDFStore('../../data/processed/orbf_benin.h5') data_orbf = store['data'] store.close() class facility(object): """ A Facility currently under monitoring """ def __init__(self , data) : ...
Add report making for facility
Add report making for facility
Python
mit
grlurton/orbf_data_validation,grlurton/orbf_data_validation
import pandas as pd import numpy as np import matplotlib.pyplot as plt class facility(object): """ A Facility currently under monitoring """ def __init__(self , data) : self.validated_data = data def monitor_new_report(self) : out = np.random.choice(['Validate' , 'Supervise - Data' ...
import pandas as pd import numpy as np import matplotlib.pyplot as plt from reports_monitoring import * store = pd.HDFStore('../../data/processed/orbf_benin.h5') data_orbf = store['data'] store.close() class facility(object): """ A Facility currently under monitoring """ def __init__(self , data) : ...
<commit_before>import pandas as pd import numpy as np import matplotlib.pyplot as plt class facility(object): """ A Facility currently under monitoring """ def __init__(self , data) : self.validated_data = data def monitor_new_report(self) : out = np.random.choice(['Validate' , 'Sup...
import pandas as pd import numpy as np import matplotlib.pyplot as plt from reports_monitoring import * store = pd.HDFStore('../../data/processed/orbf_benin.h5') data_orbf = store['data'] store.close() class facility(object): """ A Facility currently under monitoring """ def __init__(self , data) : ...
import pandas as pd import numpy as np import matplotlib.pyplot as plt class facility(object): """ A Facility currently under monitoring """ def __init__(self , data) : self.validated_data = data def monitor_new_report(self) : out = np.random.choice(['Validate' , 'Supervise - Data' ...
<commit_before>import pandas as pd import numpy as np import matplotlib.pyplot as plt class facility(object): """ A Facility currently under monitoring """ def __init__(self , data) : self.validated_data = data def monitor_new_report(self) : out = np.random.choice(['Validate' , 'Sup...
7c47a2960d644b34ce3ff569042fb5e965270e8c
netsecus/task.py
netsecus/task.py
from __future__ import unicode_literals class Task(object): def __init__(self, taskID, sheetID, name, description, maxPoints, reachedPoints=0): self.id = taskID self.sheetID = sheetID self.name = name self.description = description self.maxPoints = maxPoints self.r...
from __future__ import unicode_literals class Task(object): def __init__(self, taskID, sheetID, name, description, maxPoints): self.id = taskID self.sheetID = sheetID self.name = name self.description = description self.maxPoints = maxPoints
Remove unneeded 'reachedPoints' variable from Task class
Remove unneeded 'reachedPoints' variable from Task class
Python
mit
hhucn/netsec-uebungssystem,hhucn/netsec-uebungssystem,hhucn/netsec-uebungssystem
from __future__ import unicode_literals class Task(object): def __init__(self, taskID, sheetID, name, description, maxPoints, reachedPoints=0): self.id = taskID self.sheetID = sheetID self.name = name self.description = description self.maxPoints = maxPoints self.r...
from __future__ import unicode_literals class Task(object): def __init__(self, taskID, sheetID, name, description, maxPoints): self.id = taskID self.sheetID = sheetID self.name = name self.description = description self.maxPoints = maxPoints
<commit_before>from __future__ import unicode_literals class Task(object): def __init__(self, taskID, sheetID, name, description, maxPoints, reachedPoints=0): self.id = taskID self.sheetID = sheetID self.name = name self.description = description self.maxPoints = maxPoints...
from __future__ import unicode_literals class Task(object): def __init__(self, taskID, sheetID, name, description, maxPoints): self.id = taskID self.sheetID = sheetID self.name = name self.description = description self.maxPoints = maxPoints
from __future__ import unicode_literals class Task(object): def __init__(self, taskID, sheetID, name, description, maxPoints, reachedPoints=0): self.id = taskID self.sheetID = sheetID self.name = name self.description = description self.maxPoints = maxPoints self.r...
<commit_before>from __future__ import unicode_literals class Task(object): def __init__(self, taskID, sheetID, name, description, maxPoints, reachedPoints=0): self.id = taskID self.sheetID = sheetID self.name = name self.description = description self.maxPoints = maxPoints...
fac2335ddbd0b3924ab5fe899ce547734b286471
spec/data/fixtures/__init__.py
spec/data/fixtures/__init__.py
from data import anagram_index, crossword, warehouse from spec.data.fixtures import tries def _get_unigram_anagram_index(): return anagram_index.AnagramIndex(warehouse.get('/words/unigram/trie')) def _get_unigram_trie(): return tries.kitchen_sink() def _get_crossword(): connection = crossword.init(':memory:')...
import collections from data import anagram_index, crossword, warehouse from spec.data.fixtures import tries def _get_unigram(): return collections.OrderedDict(tries.kitchen_sink_data()) def _get_unigram_anagram_index(): return anagram_index.AnagramIndex(warehouse.get('/words/unigram')) def _get_unigram_trie()...
Introduce unigram data to warehouse module.
Introduce unigram data to warehouse module.
Python
mit
PhilHarnish/forge,PhilHarnish/forge,PhilHarnish/forge,PhilHarnish/forge,PhilHarnish/forge,PhilHarnish/forge
from data import anagram_index, crossword, warehouse from spec.data.fixtures import tries def _get_unigram_anagram_index(): return anagram_index.AnagramIndex(warehouse.get('/words/unigram/trie')) def _get_unigram_trie(): return tries.kitchen_sink() def _get_crossword(): connection = crossword.init(':memory:')...
import collections from data import anagram_index, crossword, warehouse from spec.data.fixtures import tries def _get_unigram(): return collections.OrderedDict(tries.kitchen_sink_data()) def _get_unigram_anagram_index(): return anagram_index.AnagramIndex(warehouse.get('/words/unigram')) def _get_unigram_trie()...
<commit_before>from data import anagram_index, crossword, warehouse from spec.data.fixtures import tries def _get_unigram_anagram_index(): return anagram_index.AnagramIndex(warehouse.get('/words/unigram/trie')) def _get_unigram_trie(): return tries.kitchen_sink() def _get_crossword(): connection = crossword.i...
import collections from data import anagram_index, crossword, warehouse from spec.data.fixtures import tries def _get_unigram(): return collections.OrderedDict(tries.kitchen_sink_data()) def _get_unigram_anagram_index(): return anagram_index.AnagramIndex(warehouse.get('/words/unigram')) def _get_unigram_trie()...
from data import anagram_index, crossword, warehouse from spec.data.fixtures import tries def _get_unigram_anagram_index(): return anagram_index.AnagramIndex(warehouse.get('/words/unigram/trie')) def _get_unigram_trie(): return tries.kitchen_sink() def _get_crossword(): connection = crossword.init(':memory:')...
<commit_before>from data import anagram_index, crossword, warehouse from spec.data.fixtures import tries def _get_unigram_anagram_index(): return anagram_index.AnagramIndex(warehouse.get('/words/unigram/trie')) def _get_unigram_trie(): return tries.kitchen_sink() def _get_crossword(): connection = crossword.i...
c20a0eb932f99ee4d1336560f25e3e46f86d9d17
oembed/models.py
oembed/models.py
import datetime from django.db import models try: import json except ImportError: from django.utils import simplejson as json from django.utils.timezone import now from django.utils.translation import ugettext_lazy as _ JSON = 1 XML = 2 FORMAT_CHOICES = ( (JSON, "JSON"), (XML, "XML"), ) class Provider...
import json from django.db import models from django.utils.timezone import now from django.utils.translation import ugettext_lazy as _ JSON = 1 XML = 2 FORMAT_CHOICES = ( (JSON, "JSON"), (XML, "XML"), ) class ProviderRule(models.Model): name = models.CharField(_("name"), max_length=128, null=True, blank=T...
Update imports (json in Py2.6+); removed unused datetime import
Update imports (json in Py2.6+); removed unused datetime import
Python
bsd-3-clause
JordanReiter/django-oembed,JordanReiter/django-oembed
import datetime from django.db import models try: import json except ImportError: from django.utils import simplejson as json from django.utils.timezone import now from django.utils.translation import ugettext_lazy as _ JSON = 1 XML = 2 FORMAT_CHOICES = ( (JSON, "JSON"), (XML, "XML"), ) class Provider...
import json from django.db import models from django.utils.timezone import now from django.utils.translation import ugettext_lazy as _ JSON = 1 XML = 2 FORMAT_CHOICES = ( (JSON, "JSON"), (XML, "XML"), ) class ProviderRule(models.Model): name = models.CharField(_("name"), max_length=128, null=True, blank=T...
<commit_before>import datetime from django.db import models try: import json except ImportError: from django.utils import simplejson as json from django.utils.timezone import now from django.utils.translation import ugettext_lazy as _ JSON = 1 XML = 2 FORMAT_CHOICES = ( (JSON, "JSON"), (XML, "XML"), ) ...
import json from django.db import models from django.utils.timezone import now from django.utils.translation import ugettext_lazy as _ JSON = 1 XML = 2 FORMAT_CHOICES = ( (JSON, "JSON"), (XML, "XML"), ) class ProviderRule(models.Model): name = models.CharField(_("name"), max_length=128, null=True, blank=T...
import datetime from django.db import models try: import json except ImportError: from django.utils import simplejson as json from django.utils.timezone import now from django.utils.translation import ugettext_lazy as _ JSON = 1 XML = 2 FORMAT_CHOICES = ( (JSON, "JSON"), (XML, "XML"), ) class Provider...
<commit_before>import datetime from django.db import models try: import json except ImportError: from django.utils import simplejson as json from django.utils.timezone import now from django.utils.translation import ugettext_lazy as _ JSON = 1 XML = 2 FORMAT_CHOICES = ( (JSON, "JSON"), (XML, "XML"), ) ...
4283aa4bc2c831dc99968929c24b11496078fd26
nightreads/emails/admin.py
nightreads/emails/admin.py
from django.contrib import admin from .models import Email class EmailAdmin(admin.ModelAdmin): exclude = ('targetted_users', 'is_sent') admin.site.register(Email, EmailAdmin)
from django.contrib import admin from .models import Email class EmailAdmin(admin.ModelAdmin): readonly_fields = ('targetted_users', 'is_sent',) add_fieldsets = ( (None, { 'fields': ('subject', 'message', 'post'), }), ) def get_fieldsets(self, request, obj=None): ...
Customize how fields on Email are displayed while adding & editing
Customize how fields on Email are displayed while adding & editing - Hide fields `targetted_users`, `is_sent` while adding a new Email object - Display all fields but make `targetted_users`, `is_sent` fields read only when editing an Email object
Python
mit
avinassh/nightreads,avinassh/nightreads
from django.contrib import admin from .models import Email class EmailAdmin(admin.ModelAdmin): exclude = ('targetted_users', 'is_sent') admin.site.register(Email, EmailAdmin) Customize how fields on Email are displayed while adding & editing - Hide fields `targetted_users`, `is_sent` while adding a new Email...
from django.contrib import admin from .models import Email class EmailAdmin(admin.ModelAdmin): readonly_fields = ('targetted_users', 'is_sent',) add_fieldsets = ( (None, { 'fields': ('subject', 'message', 'post'), }), ) def get_fieldsets(self, request, obj=None): ...
<commit_before>from django.contrib import admin from .models import Email class EmailAdmin(admin.ModelAdmin): exclude = ('targetted_users', 'is_sent') admin.site.register(Email, EmailAdmin) <commit_msg>Customize how fields on Email are displayed while adding & editing - Hide fields `targetted_users`, `is_sent`...
from django.contrib import admin from .models import Email class EmailAdmin(admin.ModelAdmin): readonly_fields = ('targetted_users', 'is_sent',) add_fieldsets = ( (None, { 'fields': ('subject', 'message', 'post'), }), ) def get_fieldsets(self, request, obj=None): ...
from django.contrib import admin from .models import Email class EmailAdmin(admin.ModelAdmin): exclude = ('targetted_users', 'is_sent') admin.site.register(Email, EmailAdmin) Customize how fields on Email are displayed while adding & editing - Hide fields `targetted_users`, `is_sent` while adding a new Email...
<commit_before>from django.contrib import admin from .models import Email class EmailAdmin(admin.ModelAdmin): exclude = ('targetted_users', 'is_sent') admin.site.register(Email, EmailAdmin) <commit_msg>Customize how fields on Email are displayed while adding & editing - Hide fields `targetted_users`, `is_sent`...
d1f1664f7c15a156270dc7e506bb3edb37dc517d
dipy/reconst/__init__.py
dipy/reconst/__init__.py
#init for reconst aka the reconstruction module # Test callable from numpy.testing import Tester test = Tester().test bench = Tester().bench del Tester
# init for reconst aka the reconstruction module # Test callable from numpy.testing import Tester test = Tester().test bench = Tester().bench del Tester
Update code in dipy/reconst (PEP8)
Update code in dipy/reconst (PEP8) Using `pycodestyle` output, the file `dipy/reconst/__init__.py` was updated to pass `pycodestyle` check Signed-off-by: Antonio Ossa <1ecf3d2f96b6e61cf9b68f0fc294cab57dc5d597@uc.cl>
Python
bsd-3-clause
FrancoisRheaultUS/dipy,FrancoisRheaultUS/dipy,nilgoyyou/dipy,nilgoyyou/dipy
#init for reconst aka the reconstruction module # Test callable from numpy.testing import Tester test = Tester().test bench = Tester().bench del Tester Update code in dipy/reconst (PEP8) Using `pycodestyle` output, the file `dipy/reconst/__init__.py` was updated to pass `pycodestyle` check Signed-off-by: Antoni...
# init for reconst aka the reconstruction module # Test callable from numpy.testing import Tester test = Tester().test bench = Tester().bench del Tester
<commit_before>#init for reconst aka the reconstruction module # Test callable from numpy.testing import Tester test = Tester().test bench = Tester().bench del Tester <commit_msg>Update code in dipy/reconst (PEP8) Using `pycodestyle` output, the file `dipy/reconst/__init__.py` was updated to pass `pycodestyle` c...
# init for reconst aka the reconstruction module # Test callable from numpy.testing import Tester test = Tester().test bench = Tester().bench del Tester
#init for reconst aka the reconstruction module # Test callable from numpy.testing import Tester test = Tester().test bench = Tester().bench del Tester Update code in dipy/reconst (PEP8) Using `pycodestyle` output, the file `dipy/reconst/__init__.py` was updated to pass `pycodestyle` check Signed-off-by: Antoni...
<commit_before>#init for reconst aka the reconstruction module # Test callable from numpy.testing import Tester test = Tester().test bench = Tester().bench del Tester <commit_msg>Update code in dipy/reconst (PEP8) Using `pycodestyle` output, the file `dipy/reconst/__init__.py` was updated to pass `pycodestyle` c...
dd89173cc177f7130eca426eb4fa5737ec59c91d
test/vpp_mac.py
test/vpp_mac.py
""" MAC Types """ from util import mactobinary class VppMacAddress(): def __init__(self, addr): self.address = addr def encode(self): return { 'bytes': self.bytes } @property def bytes(self): return mactobinary(self.address) @property def addr...
""" MAC Types """ from util import mactobinary class VppMacAddress(): def __init__(self, addr): self.address = addr def encode(self): return { 'bytes': self.bytes } @property def bytes(self): return mactobinary(self.address) @property def addr...
Fix L2BD arp termination Test Case
Fix L2BD arp termination Test Case ============================================================================== L2BD arp termination Test Case ============================================================================== 12:02:21,850 Couldn't stat : /tmp/vpp-unittest-TestL2bdArpTerm-_h44qo/stats.sock L2BD arp term ...
Python
apache-2.0
chrisy/vpp,vpp-dev/vpp,FDio/vpp,FDio/vpp,FDio/vpp,FDio/vpp,chrisy/vpp,FDio/vpp,chrisy/vpp,vpp-dev/vpp,chrisy/vpp,vpp-dev/vpp,vpp-dev/vpp,vpp-dev/vpp,FDio/vpp,chrisy/vpp,chrisy/vpp,chrisy/vpp,vpp-dev/vpp,vpp-dev/vpp,FDio/vpp,chrisy/vpp,FDio/vpp
""" MAC Types """ from util import mactobinary class VppMacAddress(): def __init__(self, addr): self.address = addr def encode(self): return { 'bytes': self.bytes } @property def bytes(self): return mactobinary(self.address) @property def addr...
""" MAC Types """ from util import mactobinary class VppMacAddress(): def __init__(self, addr): self.address = addr def encode(self): return { 'bytes': self.bytes } @property def bytes(self): return mactobinary(self.address) @property def addr...
<commit_before>""" MAC Types """ from util import mactobinary class VppMacAddress(): def __init__(self, addr): self.address = addr def encode(self): return { 'bytes': self.bytes } @property def bytes(self): return mactobinary(self.address) @proper...
""" MAC Types """ from util import mactobinary class VppMacAddress(): def __init__(self, addr): self.address = addr def encode(self): return { 'bytes': self.bytes } @property def bytes(self): return mactobinary(self.address) @property def addr...
""" MAC Types """ from util import mactobinary class VppMacAddress(): def __init__(self, addr): self.address = addr def encode(self): return { 'bytes': self.bytes } @property def bytes(self): return mactobinary(self.address) @property def addr...
<commit_before>""" MAC Types """ from util import mactobinary class VppMacAddress(): def __init__(self, addr): self.address = addr def encode(self): return { 'bytes': self.bytes } @property def bytes(self): return mactobinary(self.address) @proper...
3f7091cbf22c483672aa6c07ad640ee2c3d18e5b
lbrynet/daemon/auth/factory.py
lbrynet/daemon/auth/factory.py
import logging import os from twisted.web import server, guard, resource from twisted.cred import portal from lbrynet import conf from .auth import PasswordChecker, HttpPasswordRealm from .util import initialize_api_key_file log = logging.getLogger(__name__) class AuthJSONRPCResource(resource.Resource): def __...
import logging import os from twisted.web import server, guard, resource from twisted.cred import portal from lbrynet import conf from .auth import PasswordChecker, HttpPasswordRealm from .util import initialize_api_key_file log = logging.getLogger(__name__) class AuthJSONRPCResource(resource.Resource): def __...
Make curl work in py3 again
Make curl work in py3 again
Python
mit
lbryio/lbry,lbryio/lbry,lbryio/lbry
import logging import os from twisted.web import server, guard, resource from twisted.cred import portal from lbrynet import conf from .auth import PasswordChecker, HttpPasswordRealm from .util import initialize_api_key_file log = logging.getLogger(__name__) class AuthJSONRPCResource(resource.Resource): def __...
import logging import os from twisted.web import server, guard, resource from twisted.cred import portal from lbrynet import conf from .auth import PasswordChecker, HttpPasswordRealm from .util import initialize_api_key_file log = logging.getLogger(__name__) class AuthJSONRPCResource(resource.Resource): def __...
<commit_before>import logging import os from twisted.web import server, guard, resource from twisted.cred import portal from lbrynet import conf from .auth import PasswordChecker, HttpPasswordRealm from .util import initialize_api_key_file log = logging.getLogger(__name__) class AuthJSONRPCResource(resource.Resour...
import logging import os from twisted.web import server, guard, resource from twisted.cred import portal from lbrynet import conf from .auth import PasswordChecker, HttpPasswordRealm from .util import initialize_api_key_file log = logging.getLogger(__name__) class AuthJSONRPCResource(resource.Resource): def __...
import logging import os from twisted.web import server, guard, resource from twisted.cred import portal from lbrynet import conf from .auth import PasswordChecker, HttpPasswordRealm from .util import initialize_api_key_file log = logging.getLogger(__name__) class AuthJSONRPCResource(resource.Resource): def __...
<commit_before>import logging import os from twisted.web import server, guard, resource from twisted.cred import portal from lbrynet import conf from .auth import PasswordChecker, HttpPasswordRealm from .util import initialize_api_key_file log = logging.getLogger(__name__) class AuthJSONRPCResource(resource.Resour...
74f25eccd2153bd63eff338fff19721dc1488b5c
plugoo/assets.py
plugoo/assets.py
class Asset: """ This is an ooni-probe asset. It is a python iterator object, allowing it to be efficiently looped. To create your own custom asset your should subclass this and override the next_asset method and the len method for computing the length of the asset. """ def __init__(self...
class Asset: """ This is an ooni-probe asset. It is a python iterator object, allowing it to be efficiently looped. To create your own custom asset your should subclass this and override the next_asset method and the len method for computing the length of the asset. """ def __init__(self...
Add a line by line parser
Add a line by line parser
Python
bsd-2-clause
kdmurray91/ooni-probe,lordappsec/ooni-probe,Karthikeyan-kkk/ooni-probe,lordappsec/ooni-probe,kdmurray91/ooni-probe,Karthikeyan-kkk/ooni-probe,juga0/ooni-probe,juga0/ooni-probe,0xPoly/ooni-probe,Karthikeyan-kkk/ooni-probe,kdmurray91/ooni-probe,hackerberry/ooni-probe,0xPoly/ooni-probe,lordappsec/ooni-probe,lordappsec/oon...
class Asset: """ This is an ooni-probe asset. It is a python iterator object, allowing it to be efficiently looped. To create your own custom asset your should subclass this and override the next_asset method and the len method for computing the length of the asset. """ def __init__(self...
class Asset: """ This is an ooni-probe asset. It is a python iterator object, allowing it to be efficiently looped. To create your own custom asset your should subclass this and override the next_asset method and the len method for computing the length of the asset. """ def __init__(self...
<commit_before>class Asset: """ This is an ooni-probe asset. It is a python iterator object, allowing it to be efficiently looped. To create your own custom asset your should subclass this and override the next_asset method and the len method for computing the length of the asset. """ de...
class Asset: """ This is an ooni-probe asset. It is a python iterator object, allowing it to be efficiently looped. To create your own custom asset your should subclass this and override the next_asset method and the len method for computing the length of the asset. """ def __init__(self...
class Asset: """ This is an ooni-probe asset. It is a python iterator object, allowing it to be efficiently looped. To create your own custom asset your should subclass this and override the next_asset method and the len method for computing the length of the asset. """ def __init__(self...
<commit_before>class Asset: """ This is an ooni-probe asset. It is a python iterator object, allowing it to be efficiently looped. To create your own custom asset your should subclass this and override the next_asset method and the len method for computing the length of the asset. """ de...
1455b0a77d323812417e561e50dbd69a219cc9e6
preconditions.py
preconditions.py
import inspect class PreconditionError (TypeError): pass def preconditions(*precs): precinfo = [] for p in precs: spec = inspect.getargspec(p) if spec.varargs or spec.keywords: raise PreconditionError( 'Precondition {!r} must not accept * nor ** args.'.format...
from functools import wraps import inspect class PreconditionError (TypeError): pass def preconditions(*precs): precinfo = [] for p in precs: spec = inspect.getargspec(p) if spec.varargs or spec.keywords: raise PreconditionError( 'Precondition {!r} must not a...
Implement the interface specification in two easy lines (plus an import).
Implement the interface specification in two easy lines (plus an import).
Python
mit
nejucomo/preconditions
import inspect class PreconditionError (TypeError): pass def preconditions(*precs): precinfo = [] for p in precs: spec = inspect.getargspec(p) if spec.varargs or spec.keywords: raise PreconditionError( 'Precondition {!r} must not accept * nor ** args.'.format...
from functools import wraps import inspect class PreconditionError (TypeError): pass def preconditions(*precs): precinfo = [] for p in precs: spec = inspect.getargspec(p) if spec.varargs or spec.keywords: raise PreconditionError( 'Precondition {!r} must not a...
<commit_before>import inspect class PreconditionError (TypeError): pass def preconditions(*precs): precinfo = [] for p in precs: spec = inspect.getargspec(p) if spec.varargs or spec.keywords: raise PreconditionError( 'Precondition {!r} must not accept * nor *...
from functools import wraps import inspect class PreconditionError (TypeError): pass def preconditions(*precs): precinfo = [] for p in precs: spec = inspect.getargspec(p) if spec.varargs or spec.keywords: raise PreconditionError( 'Precondition {!r} must not a...
import inspect class PreconditionError (TypeError): pass def preconditions(*precs): precinfo = [] for p in precs: spec = inspect.getargspec(p) if spec.varargs or spec.keywords: raise PreconditionError( 'Precondition {!r} must not accept * nor ** args.'.format...
<commit_before>import inspect class PreconditionError (TypeError): pass def preconditions(*precs): precinfo = [] for p in precs: spec = inspect.getargspec(p) if spec.varargs or spec.keywords: raise PreconditionError( 'Precondition {!r} must not accept * nor *...
519ab89b892a3caead4d1d56a2bf017ef97c135d
tests/basics/OverflowFunctions.py
tests/basics/OverflowFunctions.py
# # Kay Hayen, mailto:kayhayen@gmx.de # # Python test originally created or extracted from other peoples work. The # parts from me are in the public domain. It is at least Free Software # where it's copied from other people. In these cases, it will normally be # indicated. # # If you submit Kay ...
# # Kay Hayen, mailto:kayhayen@gmx.de # # Python test originally created or extracted from other peoples work. The # parts from me are in the public domain. It is at least Free Software # where it's copied from other people. In these cases, it will normally be # indicated. # # If you submit Kay ...
Cover an even deeper nesting of closures for the overflow function, still commented out though.
Cover an even deeper nesting of closures for the overflow function, still commented out though.
Python
apache-2.0
wfxiang08/Nuitka,tempbottle/Nuitka,kayhayen/Nuitka,kayhayen/Nuitka,tempbottle/Nuitka,tempbottle/Nuitka,kayhayen/Nuitka,tempbottle/Nuitka,wfxiang08/Nuitka,wfxiang08/Nuitka,kayhayen/Nuitka,wfxiang08/Nuitka
# # Kay Hayen, mailto:kayhayen@gmx.de # # Python test originally created or extracted from other peoples work. The # parts from me are in the public domain. It is at least Free Software # where it's copied from other people. In these cases, it will normally be # indicated. # # If you submit Kay ...
# # Kay Hayen, mailto:kayhayen@gmx.de # # Python test originally created or extracted from other peoples work. The # parts from me are in the public domain. It is at least Free Software # where it's copied from other people. In these cases, it will normally be # indicated. # # If you submit Kay ...
<commit_before># # Kay Hayen, mailto:kayhayen@gmx.de # # Python test originally created or extracted from other peoples work. The # parts from me are in the public domain. It is at least Free Software # where it's copied from other people. In these cases, it will normally be # indicated. # # If ...
# # Kay Hayen, mailto:kayhayen@gmx.de # # Python test originally created or extracted from other peoples work. The # parts from me are in the public domain. It is at least Free Software # where it's copied from other people. In these cases, it will normally be # indicated. # # If you submit Kay ...
# # Kay Hayen, mailto:kayhayen@gmx.de # # Python test originally created or extracted from other peoples work. The # parts from me are in the public domain. It is at least Free Software # where it's copied from other people. In these cases, it will normally be # indicated. # # If you submit Kay ...
<commit_before># # Kay Hayen, mailto:kayhayen@gmx.de # # Python test originally created or extracted from other peoples work. The # parts from me are in the public domain. It is at least Free Software # where it's copied from other people. In these cases, it will normally be # indicated. # # If ...
f6cfe079cadd545a27ad62ec416115d3bbcf357f
tests/test_between_correls.py
tests/test_between_correls.py
import pytest import os from SCNIC.general import simulate_correls from SCNIC.between_correls import between_correls @pytest.fixture() def args(): class Arguments(object): def __init__(self): self.table1 = "table1.biom" self.table2 = "table2.biom" self.output = "out_dir...
import pytest import os from SCNIC.general import simulate_correls from SCNIC.between_correls import between_correls @pytest.fixture() def args(): class Arguments(object): def __init__(self): self.table1 = "table1.biom" self.table2 = "table2.biom" self.output = "out_dir...
Add module.py test and modify some others for better coverage. Remove files not used.
Add module.py test and modify some others for better coverage. Remove files not used.
Python
bsd-3-clause
shafferm/SCNIC
import pytest import os from SCNIC.general import simulate_correls from SCNIC.between_correls import between_correls @pytest.fixture() def args(): class Arguments(object): def __init__(self): self.table1 = "table1.biom" self.table2 = "table2.biom" self.output = "out_dir...
import pytest import os from SCNIC.general import simulate_correls from SCNIC.between_correls import between_correls @pytest.fixture() def args(): class Arguments(object): def __init__(self): self.table1 = "table1.biom" self.table2 = "table2.biom" self.output = "out_dir...
<commit_before>import pytest import os from SCNIC.general import simulate_correls from SCNIC.between_correls import between_correls @pytest.fixture() def args(): class Arguments(object): def __init__(self): self.table1 = "table1.biom" self.table2 = "table2.biom" self.ou...
import pytest import os from SCNIC.general import simulate_correls from SCNIC.between_correls import between_correls @pytest.fixture() def args(): class Arguments(object): def __init__(self): self.table1 = "table1.biom" self.table2 = "table2.biom" self.output = "out_dir...
import pytest import os from SCNIC.general import simulate_correls from SCNIC.between_correls import between_correls @pytest.fixture() def args(): class Arguments(object): def __init__(self): self.table1 = "table1.biom" self.table2 = "table2.biom" self.output = "out_dir...
<commit_before>import pytest import os from SCNIC.general import simulate_correls from SCNIC.between_correls import between_correls @pytest.fixture() def args(): class Arguments(object): def __init__(self): self.table1 = "table1.biom" self.table2 = "table2.biom" self.ou...
792a4c92c9718e202fb8b180f76c8a08b374e223
lib/sparkperf/mesos_cluster.py
lib/sparkperf/mesos_cluster.py
from sparkperf.cluster import Cluster import json import re import os import sys import time import urllib2 class MesosCluster(Cluster): """ Functionality for interacting with a already running Mesos Spark cluster. All the behavior for starting and stopping the cluster is not supported. """ def _...
from sparkperf.cluster import Cluster import json import os import urllib2 class MesosCluster(Cluster): """ Functionality for interacting with a already running Mesos Spark cluster. All the behavior for starting and stopping the cluster is not supported. """ def __init__(self, spark_home, mesos_m...
Remove unused imports in mesos cluster
Remove unused imports in mesos cluster
Python
apache-2.0
arijitt/spark-perf,jkbradley/spark-perf,feynmanliang/spark-perf,mengxr/spark-perf,XiaoqingWang/spark-perf,databricks/spark-perf,mengxr/spark-perf,nchammas/spark-perf,zsxwing/spark-perf,XiaoqingWang/spark-perf,zsxwing/spark-perf,arijitt/spark-perf,Altiscale/spark-perf,Altiscale/spark-perf,nchammas/spark-perf,jkbradley/s...
from sparkperf.cluster import Cluster import json import re import os import sys import time import urllib2 class MesosCluster(Cluster): """ Functionality for interacting with a already running Mesos Spark cluster. All the behavior for starting and stopping the cluster is not supported. """ def _...
from sparkperf.cluster import Cluster import json import os import urllib2 class MesosCluster(Cluster): """ Functionality for interacting with a already running Mesos Spark cluster. All the behavior for starting and stopping the cluster is not supported. """ def __init__(self, spark_home, mesos_m...
<commit_before>from sparkperf.cluster import Cluster import json import re import os import sys import time import urllib2 class MesosCluster(Cluster): """ Functionality for interacting with a already running Mesos Spark cluster. All the behavior for starting and stopping the cluster is not supported. ...
from sparkperf.cluster import Cluster import json import os import urllib2 class MesosCluster(Cluster): """ Functionality for interacting with a already running Mesos Spark cluster. All the behavior for starting and stopping the cluster is not supported. """ def __init__(self, spark_home, mesos_m...
from sparkperf.cluster import Cluster import json import re import os import sys import time import urllib2 class MesosCluster(Cluster): """ Functionality for interacting with a already running Mesos Spark cluster. All the behavior for starting and stopping the cluster is not supported. """ def _...
<commit_before>from sparkperf.cluster import Cluster import json import re import os import sys import time import urllib2 class MesosCluster(Cluster): """ Functionality for interacting with a already running Mesos Spark cluster. All the behavior for starting and stopping the cluster is not supported. ...
13b9aff7c134d5783987ca578cd8664effbe78ef
codegen/templates/python.ejs.py
codegen/templates/python.ejs.py
<% if (showSetup) { -%> from KalturaClient import * from KalturaClient.Plugins.Core import * <% plugins.forEach(function(p) { -%> from KalturaClient.Plugins.<%- p.charAt(0).toUpperCase() + p.substring(1) %> import * <% }) -%> config = KalturaConfiguration(<%- answers.partnerId %>) config.serviceUrl = "https://www.kalt...
<% if (showSetup) { -%> from KalturaClient import * from KalturaClient.Plugins.Core import * <% plugins.forEach(function(p) { -%> from KalturaClient.Plugins.<%- p.charAt(0).toUpperCase() + p.substring(1) %> import * <% }) -%> config = KalturaConfiguration(<%- answers.partnerId %>) config.serviceUrl = "https://www.kalt...
Drop the ';' in the Python codegen as it's not necessary.
Drop the ';' in the Python codegen as it's not necessary.
Python
agpl-3.0
kaltura/developer-platform,kaltura/developer-platform,kaltura/developer-platform,kaltura/developer-platform,kaltura/developer-platform,kaltura/developer-platform,kaltura/developer-platform,kaltura/developer-platform,kaltura/developer-platform,kaltura/developer-platform
<% if (showSetup) { -%> from KalturaClient import * from KalturaClient.Plugins.Core import * <% plugins.forEach(function(p) { -%> from KalturaClient.Plugins.<%- p.charAt(0).toUpperCase() + p.substring(1) %> import * <% }) -%> config = KalturaConfiguration(<%- answers.partnerId %>) config.serviceUrl = "https://www.kalt...
<% if (showSetup) { -%> from KalturaClient import * from KalturaClient.Plugins.Core import * <% plugins.forEach(function(p) { -%> from KalturaClient.Plugins.<%- p.charAt(0).toUpperCase() + p.substring(1) %> import * <% }) -%> config = KalturaConfiguration(<%- answers.partnerId %>) config.serviceUrl = "https://www.kalt...
<commit_before><% if (showSetup) { -%> from KalturaClient import * from KalturaClient.Plugins.Core import * <% plugins.forEach(function(p) { -%> from KalturaClient.Plugins.<%- p.charAt(0).toUpperCase() + p.substring(1) %> import * <% }) -%> config = KalturaConfiguration(<%- answers.partnerId %>) config.serviceUrl = "h...
<% if (showSetup) { -%> from KalturaClient import * from KalturaClient.Plugins.Core import * <% plugins.forEach(function(p) { -%> from KalturaClient.Plugins.<%- p.charAt(0).toUpperCase() + p.substring(1) %> import * <% }) -%> config = KalturaConfiguration(<%- answers.partnerId %>) config.serviceUrl = "https://www.kalt...
<% if (showSetup) { -%> from KalturaClient import * from KalturaClient.Plugins.Core import * <% plugins.forEach(function(p) { -%> from KalturaClient.Plugins.<%- p.charAt(0).toUpperCase() + p.substring(1) %> import * <% }) -%> config = KalturaConfiguration(<%- answers.partnerId %>) config.serviceUrl = "https://www.kalt...
<commit_before><% if (showSetup) { -%> from KalturaClient import * from KalturaClient.Plugins.Core import * <% plugins.forEach(function(p) { -%> from KalturaClient.Plugins.<%- p.charAt(0).toUpperCase() + p.substring(1) %> import * <% }) -%> config = KalturaConfiguration(<%- answers.partnerId %>) config.serviceUrl = "h...
d5597911837967c1f34d1c904282f9464e38e767
flask_controllers/GameModes.py
flask_controllers/GameModes.py
import logging from flask import request from flask.views import MethodView from flask_helpers.build_response import build_response # Import the Game Controller from Game.GameController import GameController class GameModes(MethodView): def get(self): logging.debug("GameModes: GET: Initializing GameObje...
import logging from flask import request from flask.views import MethodView from flask_helpers.build_response import build_response # Import the Game Controller from Game.GameController import GameController class GameModes(MethodView): def get(self): logging.debug("GameModes: GET: Initializing GameObje...
Update logging for message output and consistency.
Update logging for message output and consistency.
Python
apache-2.0
dsandersAzure/python_cowbull_server,dsandersAzure/python_cowbull_server
import logging from flask import request from flask.views import MethodView from flask_helpers.build_response import build_response # Import the Game Controller from Game.GameController import GameController class GameModes(MethodView): def get(self): logging.debug("GameModes: GET: Initializing GameObje...
import logging from flask import request from flask.views import MethodView from flask_helpers.build_response import build_response # Import the Game Controller from Game.GameController import GameController class GameModes(MethodView): def get(self): logging.debug("GameModes: GET: Initializing GameObje...
<commit_before>import logging from flask import request from flask.views import MethodView from flask_helpers.build_response import build_response # Import the Game Controller from Game.GameController import GameController class GameModes(MethodView): def get(self): logging.debug("GameModes: GET: Initia...
import logging from flask import request from flask.views import MethodView from flask_helpers.build_response import build_response # Import the Game Controller from Game.GameController import GameController class GameModes(MethodView): def get(self): logging.debug("GameModes: GET: Initializing GameObje...
import logging from flask import request from flask.views import MethodView from flask_helpers.build_response import build_response # Import the Game Controller from Game.GameController import GameController class GameModes(MethodView): def get(self): logging.debug("GameModes: GET: Initializing GameObje...
<commit_before>import logging from flask import request from flask.views import MethodView from flask_helpers.build_response import build_response # Import the Game Controller from Game.GameController import GameController class GameModes(MethodView): def get(self): logging.debug("GameModes: GET: Initia...
2c02816c05f3863ef76b3a412ac5bad9eecfafdd
testrepository/tests/test_setup.py
testrepository/tests/test_setup.py
# # Copyright (c) 2009 Testrepository Contributors # # Licensed under either the Apache License, Version 2.0 or the BSD 3-clause # license at the users choice. A copy of both licenses are available in the # project source as Apache-2.0 and BSD. You may not use this file except in # compliance with one of these two lic...
# # Copyright (c) 2009 Testrepository Contributors # # Licensed under either the Apache License, Version 2.0 or the BSD 3-clause # license at the users choice. A copy of both licenses are available in the # project source as Apache-2.0 and BSD. You may not use this file except in # compliance with one of these two lic...
Make setup.py smoke test more specific again as requested in review
Make setup.py smoke test more specific again as requested in review
Python
apache-2.0
masayukig/stestr,masayukig/stestr,mtreinish/stestr,mtreinish/stestr
# # Copyright (c) 2009 Testrepository Contributors # # Licensed under either the Apache License, Version 2.0 or the BSD 3-clause # license at the users choice. A copy of both licenses are available in the # project source as Apache-2.0 and BSD. You may not use this file except in # compliance with one of these two lic...
# # Copyright (c) 2009 Testrepository Contributors # # Licensed under either the Apache License, Version 2.0 or the BSD 3-clause # license at the users choice. A copy of both licenses are available in the # project source as Apache-2.0 and BSD. You may not use this file except in # compliance with one of these two lic...
<commit_before># # Copyright (c) 2009 Testrepository Contributors # # Licensed under either the Apache License, Version 2.0 or the BSD 3-clause # license at the users choice. A copy of both licenses are available in the # project source as Apache-2.0 and BSD. You may not use this file except in # compliance with one o...
# # Copyright (c) 2009 Testrepository Contributors # # Licensed under either the Apache License, Version 2.0 or the BSD 3-clause # license at the users choice. A copy of both licenses are available in the # project source as Apache-2.0 and BSD. You may not use this file except in # compliance with one of these two lic...
# # Copyright (c) 2009 Testrepository Contributors # # Licensed under either the Apache License, Version 2.0 or the BSD 3-clause # license at the users choice. A copy of both licenses are available in the # project source as Apache-2.0 and BSD. You may not use this file except in # compliance with one of these two lic...
<commit_before># # Copyright (c) 2009 Testrepository Contributors # # Licensed under either the Apache License, Version 2.0 or the BSD 3-clause # license at the users choice. A copy of both licenses are available in the # project source as Apache-2.0 and BSD. You may not use this file except in # compliance with one o...
6ab508d67d5e178abbf961479cab25beb0b6dc32
tests/integration/aiohttp_utils.py
tests/integration/aiohttp_utils.py
import aiohttp async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999 async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999 response = await session.request(method, url, **kwargs) # NOQA: E999 if output == 'text': content = await response....
import aiohttp async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999 async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999 async with session.request(method, url, **kwargs) as response: # NOQA: E999 if output == 'text': content = ...
Fix aiohttp_request to properly perform aiohttp requests
Fix aiohttp_request to properly perform aiohttp requests
Python
mit
kevin1024/vcrpy,kevin1024/vcrpy,graingert/vcrpy,graingert/vcrpy
import aiohttp async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999 async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999 response = await session.request(method, url, **kwargs) # NOQA: E999 if output == 'text': content = await response....
import aiohttp async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999 async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999 async with session.request(method, url, **kwargs) as response: # NOQA: E999 if output == 'text': content = ...
<commit_before>import aiohttp async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999 async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999 response = await session.request(method, url, **kwargs) # NOQA: E999 if output == 'text': content = ...
import aiohttp async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999 async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999 async with session.request(method, url, **kwargs) as response: # NOQA: E999 if output == 'text': content = ...
import aiohttp async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999 async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999 response = await session.request(method, url, **kwargs) # NOQA: E999 if output == 'text': content = await response....
<commit_before>import aiohttp async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999 async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999 response = await session.request(method, url, **kwargs) # NOQA: E999 if output == 'text': content = ...
81b3e9c6ec89123eedaf53931cfa9c9bc6817d3c
django_q/__init__.py
django_q/__init__.py
import os import sys from django import get_version myPath = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, myPath) VERSION = (0, 7, 18) default_app_config = 'django_q.apps.DjangoQConfig' # root imports will slowly be deprecated. # please import from the relevant sub modules split_version = get_versi...
import os import sys from django import get_version myPath = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, myPath) VERSION = (0, 7, 18) default_app_config = 'django_q.apps.DjangoQConfig' # root imports will slowly be deprecated. # please import from the relevant sub modules split_version = get_versi...
Add django 1.11 to the import check
Add django 1.11 to the import check
Python
mit
Koed00/django-q
import os import sys from django import get_version myPath = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, myPath) VERSION = (0, 7, 18) default_app_config = 'django_q.apps.DjangoQConfig' # root imports will slowly be deprecated. # please import from the relevant sub modules split_version = get_versi...
import os import sys from django import get_version myPath = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, myPath) VERSION = (0, 7, 18) default_app_config = 'django_q.apps.DjangoQConfig' # root imports will slowly be deprecated. # please import from the relevant sub modules split_version = get_versi...
<commit_before>import os import sys from django import get_version myPath = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, myPath) VERSION = (0, 7, 18) default_app_config = 'django_q.apps.DjangoQConfig' # root imports will slowly be deprecated. # please import from the relevant sub modules split_vers...
import os import sys from django import get_version myPath = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, myPath) VERSION = (0, 7, 18) default_app_config = 'django_q.apps.DjangoQConfig' # root imports will slowly be deprecated. # please import from the relevant sub modules split_version = get_versi...
import os import sys from django import get_version myPath = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, myPath) VERSION = (0, 7, 18) default_app_config = 'django_q.apps.DjangoQConfig' # root imports will slowly be deprecated. # please import from the relevant sub modules split_version = get_versi...
<commit_before>import os import sys from django import get_version myPath = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, myPath) VERSION = (0, 7, 18) default_app_config = 'django_q.apps.DjangoQConfig' # root imports will slowly be deprecated. # please import from the relevant sub modules split_vers...
b2cbc41f0ba422bfa666022e93be135899441430
tohu/cloning.py
tohu/cloning.py
__all__ = ['CloneableMeta'] class CloneableMeta(type): def __new__(metacls, cg_name, bases, clsdict): new_cls = super(CloneableMeta, metacls).__new__(metacls, cg_name, bases, clsdict) return new_cls
__all__ = ['CloneableMeta'] def attach_new_init_method(cls): """ Replace the existing cls.__init__() method with a new one which also initialises the _clones attribute to an empty list. """ orig_init = cls.__init__ def new_init(self, *args, **kwargs): orig_init(self, *args, **kwargs)...
Add _clones attribute in new init method
Add _clones attribute in new init method
Python
mit
maxalbert/tohu
__all__ = ['CloneableMeta'] class CloneableMeta(type): def __new__(metacls, cg_name, bases, clsdict): new_cls = super(CloneableMeta, metacls).__new__(metacls, cg_name, bases, clsdict) return new_clsAdd _clones attribute in new init method
__all__ = ['CloneableMeta'] def attach_new_init_method(cls): """ Replace the existing cls.__init__() method with a new one which also initialises the _clones attribute to an empty list. """ orig_init = cls.__init__ def new_init(self, *args, **kwargs): orig_init(self, *args, **kwargs)...
<commit_before>__all__ = ['CloneableMeta'] class CloneableMeta(type): def __new__(metacls, cg_name, bases, clsdict): new_cls = super(CloneableMeta, metacls).__new__(metacls, cg_name, bases, clsdict) return new_cls<commit_msg>Add _clones attribute in new init method<commit_after>
__all__ = ['CloneableMeta'] def attach_new_init_method(cls): """ Replace the existing cls.__init__() method with a new one which also initialises the _clones attribute to an empty list. """ orig_init = cls.__init__ def new_init(self, *args, **kwargs): orig_init(self, *args, **kwargs)...
__all__ = ['CloneableMeta'] class CloneableMeta(type): def __new__(metacls, cg_name, bases, clsdict): new_cls = super(CloneableMeta, metacls).__new__(metacls, cg_name, bases, clsdict) return new_clsAdd _clones attribute in new init method__all__ = ['CloneableMeta'] def attach_new_init_method(cl...
<commit_before>__all__ = ['CloneableMeta'] class CloneableMeta(type): def __new__(metacls, cg_name, bases, clsdict): new_cls = super(CloneableMeta, metacls).__new__(metacls, cg_name, bases, clsdict) return new_cls<commit_msg>Add _clones attribute in new init method<commit_after>__all__ = ['Clonea...
ed658354ebfa068441b974fe61056ed74aa4254d
lmod/__init__.py
lmod/__init__.py
import os # require by lmod output evaluated by exec() from functools import partial from os import environ from subprocess import Popen, PIPE LMOD_SYSTEM_NAME = environ.get('LMOD_SYSTEM_NAME', '') def module(command, *args): cmd = (environ['LMOD_CMD'], 'python', '--terse', command) result = Popen(cmd + arg...
import os # require by lmod output evaluated by exec() from functools import partial from os import environ from subprocess import Popen, PIPE LMOD_SYSTEM_NAME = environ.get('LMOD_SYSTEM_NAME', '') def module(command, *args): cmd = (environ['LMOD_CMD'], 'python', '--terse', command) result = Popen(cmd + arg...
Remove system name from savelist in lmod
Remove system name from savelist in lmod
Python
mit
cmd-ntrf/jupyter-lmod,cmd-ntrf/jupyter-lmod,cmd-ntrf/jupyter-lmod
import os # require by lmod output evaluated by exec() from functools import partial from os import environ from subprocess import Popen, PIPE LMOD_SYSTEM_NAME = environ.get('LMOD_SYSTEM_NAME', '') def module(command, *args): cmd = (environ['LMOD_CMD'], 'python', '--terse', command) result = Popen(cmd + arg...
import os # require by lmod output evaluated by exec() from functools import partial from os import environ from subprocess import Popen, PIPE LMOD_SYSTEM_NAME = environ.get('LMOD_SYSTEM_NAME', '') def module(command, *args): cmd = (environ['LMOD_CMD'], 'python', '--terse', command) result = Popen(cmd + arg...
<commit_before>import os # require by lmod output evaluated by exec() from functools import partial from os import environ from subprocess import Popen, PIPE LMOD_SYSTEM_NAME = environ.get('LMOD_SYSTEM_NAME', '') def module(command, *args): cmd = (environ['LMOD_CMD'], 'python', '--terse', command) result = ...
import os # require by lmod output evaluated by exec() from functools import partial from os import environ from subprocess import Popen, PIPE LMOD_SYSTEM_NAME = environ.get('LMOD_SYSTEM_NAME', '') def module(command, *args): cmd = (environ['LMOD_CMD'], 'python', '--terse', command) result = Popen(cmd + arg...
import os # require by lmod output evaluated by exec() from functools import partial from os import environ from subprocess import Popen, PIPE LMOD_SYSTEM_NAME = environ.get('LMOD_SYSTEM_NAME', '') def module(command, *args): cmd = (environ['LMOD_CMD'], 'python', '--terse', command) result = Popen(cmd + arg...
<commit_before>import os # require by lmod output evaluated by exec() from functools import partial from os import environ from subprocess import Popen, PIPE LMOD_SYSTEM_NAME = environ.get('LMOD_SYSTEM_NAME', '') def module(command, *args): cmd = (environ['LMOD_CMD'], 'python', '--terse', command) result = ...
9d162a2919a1c9b56ded74d40963fa022fc7943b
src/config/settings/testing.py
src/config/settings/testing.py
"""Django configuration for testing and CI environments.""" from .common import * # Use in-memory file storage DEFAULT_FILE_STORAGE = 'inmemorystorage.InMemoryStorage' # Speed! PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher', ) # Database DATABASES = { 'default': { 'ENGINE': 'dj...
"""Django configuration for testing and CI environments.""" from .common import * # Use in-memory file storage DEFAULT_FILE_STORAGE = 'inmemorystorage.InMemoryStorage' # Speed! PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher', ) # Database DATABASES = { 'default': { 'ENGINE': 'dj...
Disable logging in test runs
Disable logging in test runs SPEED!
Python
agpl-3.0
FlowFX/unkenmathe.de,FlowFX/unkenmathe.de,FlowFX/unkenmathe.de,FlowFX/unkenmathe.de
"""Django configuration for testing and CI environments.""" from .common import * # Use in-memory file storage DEFAULT_FILE_STORAGE = 'inmemorystorage.InMemoryStorage' # Speed! PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher', ) # Database DATABASES = { 'default': { 'ENGINE': 'dj...
"""Django configuration for testing and CI environments.""" from .common import * # Use in-memory file storage DEFAULT_FILE_STORAGE = 'inmemorystorage.InMemoryStorage' # Speed! PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher', ) # Database DATABASES = { 'default': { 'ENGINE': 'dj...
<commit_before>"""Django configuration for testing and CI environments.""" from .common import * # Use in-memory file storage DEFAULT_FILE_STORAGE = 'inmemorystorage.InMemoryStorage' # Speed! PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher', ) # Database DATABASES = { 'default': { ...
"""Django configuration for testing and CI environments.""" from .common import * # Use in-memory file storage DEFAULT_FILE_STORAGE = 'inmemorystorage.InMemoryStorage' # Speed! PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher', ) # Database DATABASES = { 'default': { 'ENGINE': 'dj...
"""Django configuration for testing and CI environments.""" from .common import * # Use in-memory file storage DEFAULT_FILE_STORAGE = 'inmemorystorage.InMemoryStorage' # Speed! PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher', ) # Database DATABASES = { 'default': { 'ENGINE': 'dj...
<commit_before>"""Django configuration for testing and CI environments.""" from .common import * # Use in-memory file storage DEFAULT_FILE_STORAGE = 'inmemorystorage.InMemoryStorage' # Speed! PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher', ) # Database DATABASES = { 'default': { ...
9e706341fafc8a931a662ea497df39fff6f9408b
wooey/migrations/0028_add_script_subparser.py
wooey/migrations/0028_add_script_subparser.py
# -*- coding: utf-8 -*- # Generated by Django 1.9.4 on 2017-04-25 09:25 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion import wooey.models.mixins class Migration(migrations.Migration): dependencies = [ ('wooey', '0027_parameter_order'), ...
# -*- coding: utf-8 -*- # Generated by Django 1.9.4 on 2017-04-25 09:25 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion import wooey.models.mixins class Migration(migrations.Migration): dependencies = [ ('wooey', '0027_parameter_order'), ...
Add in shim nullable FK for initial scriptparameter update
Add in shim nullable FK for initial scriptparameter update
Python
bsd-3-clause
wooey/Wooey,wooey/Wooey,wooey/Wooey,wooey/Wooey
# -*- coding: utf-8 -*- # Generated by Django 1.9.4 on 2017-04-25 09:25 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion import wooey.models.mixins class Migration(migrations.Migration): dependencies = [ ('wooey', '0027_parameter_order'), ...
# -*- coding: utf-8 -*- # Generated by Django 1.9.4 on 2017-04-25 09:25 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion import wooey.models.mixins class Migration(migrations.Migration): dependencies = [ ('wooey', '0027_parameter_order'), ...
<commit_before># -*- coding: utf-8 -*- # Generated by Django 1.9.4 on 2017-04-25 09:25 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion import wooey.models.mixins class Migration(migrations.Migration): dependencies = [ ('wooey', '0027_para...
# -*- coding: utf-8 -*- # Generated by Django 1.9.4 on 2017-04-25 09:25 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion import wooey.models.mixins class Migration(migrations.Migration): dependencies = [ ('wooey', '0027_parameter_order'), ...
# -*- coding: utf-8 -*- # Generated by Django 1.9.4 on 2017-04-25 09:25 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion import wooey.models.mixins class Migration(migrations.Migration): dependencies = [ ('wooey', '0027_parameter_order'), ...
<commit_before># -*- coding: utf-8 -*- # Generated by Django 1.9.4 on 2017-04-25 09:25 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion import wooey.models.mixins class Migration(migrations.Migration): dependencies = [ ('wooey', '0027_para...
255d4d551b9eb576c787396f67ca165addf99dbe
cropimg/thumbnail_processors.py
cropimg/thumbnail_processors.py
try: from PIL import Image except ImportError: import Image def crop_ci_box(im, size, ci_box=False, **kwargs): """ Crop image based on very specific pixel values (x,y,width,height) ci_box Crop the source image to exactly match the requested box """ if not ci_box: return im...
try: from PIL import Image except ImportError: import Image def crop_box(im, size, ci_box=False, **kwargs): """ Crop image based on very specific pixel values (x,y,width,height) ci_box Crop the source image to exactly match the requested box """ if not ci_box: return im ...
Rename the processor back to its original name, crop_box
Rename the processor back to its original name, crop_box
Python
mit
rewardz/cropimg-django,rewardz/cropimg-django,rewardz/cropimg-django
try: from PIL import Image except ImportError: import Image def crop_ci_box(im, size, ci_box=False, **kwargs): """ Crop image based on very specific pixel values (x,y,width,height) ci_box Crop the source image to exactly match the requested box """ if not ci_box: return im...
try: from PIL import Image except ImportError: import Image def crop_box(im, size, ci_box=False, **kwargs): """ Crop image based on very specific pixel values (x,y,width,height) ci_box Crop the source image to exactly match the requested box """ if not ci_box: return im ...
<commit_before>try: from PIL import Image except ImportError: import Image def crop_ci_box(im, size, ci_box=False, **kwargs): """ Crop image based on very specific pixel values (x,y,width,height) ci_box Crop the source image to exactly match the requested box """ if not ci_box: ...
try: from PIL import Image except ImportError: import Image def crop_box(im, size, ci_box=False, **kwargs): """ Crop image based on very specific pixel values (x,y,width,height) ci_box Crop the source image to exactly match the requested box """ if not ci_box: return im ...
try: from PIL import Image except ImportError: import Image def crop_ci_box(im, size, ci_box=False, **kwargs): """ Crop image based on very specific pixel values (x,y,width,height) ci_box Crop the source image to exactly match the requested box """ if not ci_box: return im...
<commit_before>try: from PIL import Image except ImportError: import Image def crop_ci_box(im, size, ci_box=False, **kwargs): """ Crop image based on very specific pixel values (x,y,width,height) ci_box Crop the source image to exactly match the requested box """ if not ci_box: ...
2033c71a84f03e7e8d40c567e632afd2e013aad3
url/__init__.py
url/__init__.py
#!/usr/bin/env python # # Copyright (c) 2012-2013 SEOmoz, Inc. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, m...
#!/usr/bin/env python # # Copyright (c) 2012-2013 SEOmoz, Inc. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, m...
Drop unused import of sys.
Drop unused import of sys.
Python
mit
seomoz/url-py,seomoz/url-py
#!/usr/bin/env python # # Copyright (c) 2012-2013 SEOmoz, Inc. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, m...
#!/usr/bin/env python # # Copyright (c) 2012-2013 SEOmoz, Inc. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, m...
<commit_before>#!/usr/bin/env python # # Copyright (c) 2012-2013 SEOmoz, Inc. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights ...
#!/usr/bin/env python # # Copyright (c) 2012-2013 SEOmoz, Inc. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, m...
#!/usr/bin/env python # # Copyright (c) 2012-2013 SEOmoz, Inc. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, m...
<commit_before>#!/usr/bin/env python # # Copyright (c) 2012-2013 SEOmoz, Inc. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights ...
a10e21a8fe811e896998ba510255592a966f0782
infra/recipes/build_windows.py
infra/recipes/build_windows.py
# Copyright 2022 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. from recipe_engine.post_process import Filter PYTHON_VERSION_COMPATIBILITY = "PY3" DEPS = [ "crosvm", "recipe_engine/buildbucket", "recipe_engine/context", "re...
# Copyright 2022 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. from recipe_engine.post_process import Filter PYTHON_VERSION_COMPATIBILITY = "PY3" DEPS = [ "crosvm", "recipe_engine/buildbucket", "recipe_engine/context", "re...
Enable clippy in windows LUCI
crosvm: Enable clippy in windows LUCI For linux based systems, clippy continues to run in health_check BUG=b:257249038 TEST=CQ Change-Id: I39d3d45a0db72c61e79fd2c51b195b82c067a244 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3993934 Reviewed-by: Dennis Kempin <cd09796fb571bec2782819dbfd333...
Python
bsd-3-clause
google/crosvm,google/crosvm,google/crosvm,google/crosvm
# Copyright 2022 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. from recipe_engine.post_process import Filter PYTHON_VERSION_COMPATIBILITY = "PY3" DEPS = [ "crosvm", "recipe_engine/buildbucket", "recipe_engine/context", "re...
# Copyright 2022 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. from recipe_engine.post_process import Filter PYTHON_VERSION_COMPATIBILITY = "PY3" DEPS = [ "crosvm", "recipe_engine/buildbucket", "recipe_engine/context", "re...
<commit_before># Copyright 2022 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. from recipe_engine.post_process import Filter PYTHON_VERSION_COMPATIBILITY = "PY3" DEPS = [ "crosvm", "recipe_engine/buildbucket", "recipe_engine/co...
# Copyright 2022 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. from recipe_engine.post_process import Filter PYTHON_VERSION_COMPATIBILITY = "PY3" DEPS = [ "crosvm", "recipe_engine/buildbucket", "recipe_engine/context", "re...
# Copyright 2022 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. from recipe_engine.post_process import Filter PYTHON_VERSION_COMPATIBILITY = "PY3" DEPS = [ "crosvm", "recipe_engine/buildbucket", "recipe_engine/context", "re...
<commit_before># Copyright 2022 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. from recipe_engine.post_process import Filter PYTHON_VERSION_COMPATIBILITY = "PY3" DEPS = [ "crosvm", "recipe_engine/buildbucket", "recipe_engine/co...
fbdf73e3e9fb5f2801ec11637caa6020095acfdf
terrabot/packets/packetE.py
terrabot/packets/packetE.py
from terrabot.util.streamer import Streamer from terrabot.events.events import Events class PacketEParser(object): def parse(self, world, player, data, ev_man): #If player is active if data[2] == 1: #Raise event with player_id ev_man.raise_event(Events.NewPlayer, data[1])...
from terrabot.util.streamer import Streamer from terrabot.events.events import Events class PacketEParser(object): def parse(self, world, player, data, ev_man): #If player is active if data[2] == 1 and player.logged_in: #Raise event with player_id ev_man.raise_event(Event...
Fix with 'newPlayer' event triggering on load
Fix with 'newPlayer' event triggering on load
Python
mit
flammified/terrabot
from terrabot.util.streamer import Streamer from terrabot.events.events import Events class PacketEParser(object): def parse(self, world, player, data, ev_man): #If player is active if data[2] == 1: #Raise event with player_id ev_man.raise_event(Events.NewPlayer, data[1])...
from terrabot.util.streamer import Streamer from terrabot.events.events import Events class PacketEParser(object): def parse(self, world, player, data, ev_man): #If player is active if data[2] == 1 and player.logged_in: #Raise event with player_id ev_man.raise_event(Event...
<commit_before>from terrabot.util.streamer import Streamer from terrabot.events.events import Events class PacketEParser(object): def parse(self, world, player, data, ev_man): #If player is active if data[2] == 1: #Raise event with player_id ev_man.raise_event(Events.NewP...
from terrabot.util.streamer import Streamer from terrabot.events.events import Events class PacketEParser(object): def parse(self, world, player, data, ev_man): #If player is active if data[2] == 1 and player.logged_in: #Raise event with player_id ev_man.raise_event(Event...
from terrabot.util.streamer import Streamer from terrabot.events.events import Events class PacketEParser(object): def parse(self, world, player, data, ev_man): #If player is active if data[2] == 1: #Raise event with player_id ev_man.raise_event(Events.NewPlayer, data[1])...
<commit_before>from terrabot.util.streamer import Streamer from terrabot.events.events import Events class PacketEParser(object): def parse(self, world, player, data, ev_man): #If player is active if data[2] == 1: #Raise event with player_id ev_man.raise_event(Events.NewP...
088295e7d4d81b5e2fb23564b49ddd08beb3f720
chatterbot/__init__.py
chatterbot/__init__.py
""" ChatterBot is a machine learning, conversational dialog engine. """ from .chatterbot import ChatBot __version__ = '0.5.4' __author__ = 'Gunther Cox' __email__ = 'gunthercx@gmail.com' __url__ = 'https://github.com/gunthercox/ChatterBot'
""" ChatterBot is a machine learning, conversational dialog engine. """ from .chatterbot import ChatBot __version__ = '0.5.5' __author__ = 'Gunther Cox' __email__ = 'gunthercx@gmail.com' __url__ = 'https://github.com/gunthercox/ChatterBot'
Update package version to 0.5.5
Update package version to 0.5.5
Python
bsd-3-clause
Reinaesaya/OUIRL-ChatBot,Gustavo6046/ChatterBot,gunthercox/ChatterBot,davizucon/ChatterBot,Reinaesaya/OUIRL-ChatBot,maclogan/VirtualPenPal,vkosuri/ChatterBot
""" ChatterBot is a machine learning, conversational dialog engine. """ from .chatterbot import ChatBot __version__ = '0.5.4' __author__ = 'Gunther Cox' __email__ = 'gunthercx@gmail.com' __url__ = 'https://github.com/gunthercox/ChatterBot' Update package version to 0.5.5
""" ChatterBot is a machine learning, conversational dialog engine. """ from .chatterbot import ChatBot __version__ = '0.5.5' __author__ = 'Gunther Cox' __email__ = 'gunthercx@gmail.com' __url__ = 'https://github.com/gunthercox/ChatterBot'
<commit_before>""" ChatterBot is a machine learning, conversational dialog engine. """ from .chatterbot import ChatBot __version__ = '0.5.4' __author__ = 'Gunther Cox' __email__ = 'gunthercx@gmail.com' __url__ = 'https://github.com/gunthercox/ChatterBot' <commit_msg>Update package version to 0.5.5<commit_after>
""" ChatterBot is a machine learning, conversational dialog engine. """ from .chatterbot import ChatBot __version__ = '0.5.5' __author__ = 'Gunther Cox' __email__ = 'gunthercx@gmail.com' __url__ = 'https://github.com/gunthercox/ChatterBot'
""" ChatterBot is a machine learning, conversational dialog engine. """ from .chatterbot import ChatBot __version__ = '0.5.4' __author__ = 'Gunther Cox' __email__ = 'gunthercx@gmail.com' __url__ = 'https://github.com/gunthercox/ChatterBot' Update package version to 0.5.5""" ChatterBot is a machine learning, conversati...
<commit_before>""" ChatterBot is a machine learning, conversational dialog engine. """ from .chatterbot import ChatBot __version__ = '0.5.4' __author__ = 'Gunther Cox' __email__ = 'gunthercx@gmail.com' __url__ = 'https://github.com/gunthercox/ChatterBot' <commit_msg>Update package version to 0.5.5<commit_after>""" Cha...
39ec7961bb3c4431bda67956f0208ab524a80213
blo/DBControl.py
blo/DBControl.py
import sqlite3 class DBControl: def __init__(self, db_name : str=":memory:"): self.db_conn = sqlite3.connect(db_name) def create_tables(self): c = self.db_conn.cursor() c.execute("""CREATE TABLE IF NOT EXISTS Articles ( id INTEGER PRIMARY KEY AUTOIN...
import sqlite3 from .BloArticle import BloArticle class DBControl: def __init__(self, db_name : str=":memory:"): self.db_conn = sqlite3.connect(db_name) def create_tables(self): c = self.db_conn.cursor() c.execute("""CREATE TABLE IF NOT EXISTS Articles ( ...
Implement stab of insert article information method.
Implement stab of insert article information method.
Python
mit
10nin/blo,10nin/blo
import sqlite3 class DBControl: def __init__(self, db_name : str=":memory:"): self.db_conn = sqlite3.connect(db_name) def create_tables(self): c = self.db_conn.cursor() c.execute("""CREATE TABLE IF NOT EXISTS Articles ( id INTEGER PRIMARY KEY AUTOIN...
import sqlite3 from .BloArticle import BloArticle class DBControl: def __init__(self, db_name : str=":memory:"): self.db_conn = sqlite3.connect(db_name) def create_tables(self): c = self.db_conn.cursor() c.execute("""CREATE TABLE IF NOT EXISTS Articles ( ...
<commit_before>import sqlite3 class DBControl: def __init__(self, db_name : str=":memory:"): self.db_conn = sqlite3.connect(db_name) def create_tables(self): c = self.db_conn.cursor() c.execute("""CREATE TABLE IF NOT EXISTS Articles ( id INTEGER PRI...
import sqlite3 from .BloArticle import BloArticle class DBControl: def __init__(self, db_name : str=":memory:"): self.db_conn = sqlite3.connect(db_name) def create_tables(self): c = self.db_conn.cursor() c.execute("""CREATE TABLE IF NOT EXISTS Articles ( ...
import sqlite3 class DBControl: def __init__(self, db_name : str=":memory:"): self.db_conn = sqlite3.connect(db_name) def create_tables(self): c = self.db_conn.cursor() c.execute("""CREATE TABLE IF NOT EXISTS Articles ( id INTEGER PRIMARY KEY AUTOIN...
<commit_before>import sqlite3 class DBControl: def __init__(self, db_name : str=":memory:"): self.db_conn = sqlite3.connect(db_name) def create_tables(self): c = self.db_conn.cursor() c.execute("""CREATE TABLE IF NOT EXISTS Articles ( id INTEGER PRI...
5dcb2564653e4b38359ca6f3e55195839d32ae67
tests/test_cmd.py
tests/test_cmd.py
import unittest from unittest import mock from click.testing import CliRunner from scuevals_api.cmd import cli class CmdsTestCase(unittest.TestCase): @classmethod def setUpClass(cls): cls.runner = CliRunner() def cli_run(self, *cmds): return self.runner.invoke(cli, cmds) ...
import unittest from unittest import mock from click.testing import CliRunner from scuevals_api.cmd import cli class CmdsTestCase(unittest.TestCase): @classmethod def setUpClass(cls): cls.runner = CliRunner() def cli_run(self, *cmds): return self.runner.invoke(cli, cmds) ...
Set test for start cmd to test env
Set test for start cmd to test env
Python
agpl-3.0
SCUEvals/scuevals-api,SCUEvals/scuevals-api
import unittest from unittest import mock from click.testing import CliRunner from scuevals_api.cmd import cli class CmdsTestCase(unittest.TestCase): @classmethod def setUpClass(cls): cls.runner = CliRunner() def cli_run(self, *cmds): return self.runner.invoke(cli, cmds) ...
import unittest from unittest import mock from click.testing import CliRunner from scuevals_api.cmd import cli class CmdsTestCase(unittest.TestCase): @classmethod def setUpClass(cls): cls.runner = CliRunner() def cli_run(self, *cmds): return self.runner.invoke(cli, cmds) ...
<commit_before>import unittest from unittest import mock from click.testing import CliRunner from scuevals_api.cmd import cli class CmdsTestCase(unittest.TestCase): @classmethod def setUpClass(cls): cls.runner = CliRunner() def cli_run(self, *cmds): return self.runner.invoke(cl...
import unittest from unittest import mock from click.testing import CliRunner from scuevals_api.cmd import cli class CmdsTestCase(unittest.TestCase): @classmethod def setUpClass(cls): cls.runner = CliRunner() def cli_run(self, *cmds): return self.runner.invoke(cli, cmds) ...
import unittest from unittest import mock from click.testing import CliRunner from scuevals_api.cmd import cli class CmdsTestCase(unittest.TestCase): @classmethod def setUpClass(cls): cls.runner = CliRunner() def cli_run(self, *cmds): return self.runner.invoke(cli, cmds) ...
<commit_before>import unittest from unittest import mock from click.testing import CliRunner from scuevals_api.cmd import cli class CmdsTestCase(unittest.TestCase): @classmethod def setUpClass(cls): cls.runner = CliRunner() def cli_run(self, *cmds): return self.runner.invoke(cl...
0ccb85a45e56438a5e4b7c0566634587624f0ce4
tests/test_log.py
tests/test_log.py
# -*- coding: utf-8 -*- from flask import url_for def test_view_build_log(test_client): test_client.get(url_for('log.build_log', sha='123456')) def test_view_lint_log(test_client): test_client.get(url_for('log.lint_log', sha='123456'))
# -*- coding: utf-8 -*- from flask import url_for def test_view_build_log(test_client): test_client.get(url_for('log.build_log', sha='123456'))
Remove lint_log view test case
Remove lint_log view test case
Python
mit
bosondata/badwolf,bosondata/badwolf,bosondata/badwolf
# -*- coding: utf-8 -*- from flask import url_for def test_view_build_log(test_client): test_client.get(url_for('log.build_log', sha='123456')) def test_view_lint_log(test_client): test_client.get(url_for('log.lint_log', sha='123456')) Remove lint_log view test case
# -*- coding: utf-8 -*- from flask import url_for def test_view_build_log(test_client): test_client.get(url_for('log.build_log', sha='123456'))
<commit_before># -*- coding: utf-8 -*- from flask import url_for def test_view_build_log(test_client): test_client.get(url_for('log.build_log', sha='123456')) def test_view_lint_log(test_client): test_client.get(url_for('log.lint_log', sha='123456')) <commit_msg>Remove lint_log view test case<commit_after>
# -*- coding: utf-8 -*- from flask import url_for def test_view_build_log(test_client): test_client.get(url_for('log.build_log', sha='123456'))
# -*- coding: utf-8 -*- from flask import url_for def test_view_build_log(test_client): test_client.get(url_for('log.build_log', sha='123456')) def test_view_lint_log(test_client): test_client.get(url_for('log.lint_log', sha='123456')) Remove lint_log view test case# -*- coding: utf-8 -*- from flask import ...
<commit_before># -*- coding: utf-8 -*- from flask import url_for def test_view_build_log(test_client): test_client.get(url_for('log.build_log', sha='123456')) def test_view_lint_log(test_client): test_client.get(url_for('log.lint_log', sha='123456')) <commit_msg>Remove lint_log view test case<commit_after>#...
aa008a13d9d10107f440dca71085f21d9622cd95
src/pybel/parser/baseparser.py
src/pybel/parser/baseparser.py
# -*- coding: utf-8 -*- import logging import time log = logging.getLogger(__name__) __all__ = ['BaseParser'] class BaseParser: """This abstract class represents a language backed by a PyParsing statement Multiple parsers can be easily chained together when they are all inheriting from this base class ...
# -*- coding: utf-8 -*- import logging import time log = logging.getLogger(__name__) __all__ = ['BaseParser'] class BaseParser: """This abstract class represents a language backed by a PyParsing statement Multiple parsers can be easily chained together when they are all inheriting from this base class ...
Add line state to base parser
Add line state to base parser References #155
Python
mit
pybel/pybel,pybel/pybel,pybel/pybel
# -*- coding: utf-8 -*- import logging import time log = logging.getLogger(__name__) __all__ = ['BaseParser'] class BaseParser: """This abstract class represents a language backed by a PyParsing statement Multiple parsers can be easily chained together when they are all inheriting from this base class ...
# -*- coding: utf-8 -*- import logging import time log = logging.getLogger(__name__) __all__ = ['BaseParser'] class BaseParser: """This abstract class represents a language backed by a PyParsing statement Multiple parsers can be easily chained together when they are all inheriting from this base class ...
<commit_before># -*- coding: utf-8 -*- import logging import time log = logging.getLogger(__name__) __all__ = ['BaseParser'] class BaseParser: """This abstract class represents a language backed by a PyParsing statement Multiple parsers can be easily chained together when they are all inheriting from this...
# -*- coding: utf-8 -*- import logging import time log = logging.getLogger(__name__) __all__ = ['BaseParser'] class BaseParser: """This abstract class represents a language backed by a PyParsing statement Multiple parsers can be easily chained together when they are all inheriting from this base class ...
# -*- coding: utf-8 -*- import logging import time log = logging.getLogger(__name__) __all__ = ['BaseParser'] class BaseParser: """This abstract class represents a language backed by a PyParsing statement Multiple parsers can be easily chained together when they are all inheriting from this base class ...
<commit_before># -*- coding: utf-8 -*- import logging import time log = logging.getLogger(__name__) __all__ = ['BaseParser'] class BaseParser: """This abstract class represents a language backed by a PyParsing statement Multiple parsers can be easily chained together when they are all inheriting from this...
0edc91468c5f424a57be80675422723f9bac4a89
falmer/auth/admin.py
falmer/auth/admin.py
from django.contrib import admin from django.contrib.admin import register from . import models @register(models.FalmerUser) class FalmerUserModelAdmin(admin.ModelAdmin): list_display = ('name_or_email', 'identifier', 'authority') list_filter = ('authority', ) search_fields = ('name', 'identifier')
from django.contrib import admin from django.contrib.auth.admin import UserAdmin # @register(models.FalmerUser) # class FalmerUserModelAdmin(admin.ModelAdmin): # list_display = ('name_or_email', 'identifier', 'authority') # list_filter = ('authority', ) # search_fields = ('name', 'identifier') from falmer....
Replace FalmerUserAdmin with extention of base
Replace FalmerUserAdmin with extention of base
Python
mit
sussexstudent/falmer,sussexstudent/falmer,sussexstudent/falmer,sussexstudent/falmer
from django.contrib import admin from django.contrib.admin import register from . import models @register(models.FalmerUser) class FalmerUserModelAdmin(admin.ModelAdmin): list_display = ('name_or_email', 'identifier', 'authority') list_filter = ('authority', ) search_fields = ('name', 'identifier') Replac...
from django.contrib import admin from django.contrib.auth.admin import UserAdmin # @register(models.FalmerUser) # class FalmerUserModelAdmin(admin.ModelAdmin): # list_display = ('name_or_email', 'identifier', 'authority') # list_filter = ('authority', ) # search_fields = ('name', 'identifier') from falmer....
<commit_before>from django.contrib import admin from django.contrib.admin import register from . import models @register(models.FalmerUser) class FalmerUserModelAdmin(admin.ModelAdmin): list_display = ('name_or_email', 'identifier', 'authority') list_filter = ('authority', ) search_fields = ('name', 'ident...
from django.contrib import admin from django.contrib.auth.admin import UserAdmin # @register(models.FalmerUser) # class FalmerUserModelAdmin(admin.ModelAdmin): # list_display = ('name_or_email', 'identifier', 'authority') # list_filter = ('authority', ) # search_fields = ('name', 'identifier') from falmer....
from django.contrib import admin from django.contrib.admin import register from . import models @register(models.FalmerUser) class FalmerUserModelAdmin(admin.ModelAdmin): list_display = ('name_or_email', 'identifier', 'authority') list_filter = ('authority', ) search_fields = ('name', 'identifier') Replac...
<commit_before>from django.contrib import admin from django.contrib.admin import register from . import models @register(models.FalmerUser) class FalmerUserModelAdmin(admin.ModelAdmin): list_display = ('name_or_email', 'identifier', 'authority') list_filter = ('authority', ) search_fields = ('name', 'ident...
ea54f0a306c6defa4edc58c50794da0083ed345d
setup_app.py
setup_app.py
import os from flask_app.database import init_db # Generate new secret key secret_key = os.urandom(24).encode('hex').strip() with open('flask_app/secret_key.py', 'w') as key_file: key_file.write('secret_key = """' + secret_key + '""".decode("hex")') # Initialize database init_db()
import os from flask_app.database import init_db # Generate new secret key key_file_path = 'flask_app/secret_key.py' if not os.path.isfile(key_file_path): secret_key = os.urandom(24).encode('hex').strip() with open(key_file_path, 'w') as key_file: key_file.write('secret_key = """' + secret_key + '"""....
Check if keyfile exists before generating new key
Check if keyfile exists before generating new key
Python
mit
szeestraten/kidsakoder-minecraft,szeestraten/kidsakoder-minecraft,szeestraten/kidsakoder-minecraft,szeestraten/kidsakoder-minecraft
import os from flask_app.database import init_db # Generate new secret key secret_key = os.urandom(24).encode('hex').strip() with open('flask_app/secret_key.py', 'w') as key_file: key_file.write('secret_key = """' + secret_key + '""".decode("hex")') # Initialize database init_db() Check if keyfile exists before ...
import os from flask_app.database import init_db # Generate new secret key key_file_path = 'flask_app/secret_key.py' if not os.path.isfile(key_file_path): secret_key = os.urandom(24).encode('hex').strip() with open(key_file_path, 'w') as key_file: key_file.write('secret_key = """' + secret_key + '"""....
<commit_before> import os from flask_app.database import init_db # Generate new secret key secret_key = os.urandom(24).encode('hex').strip() with open('flask_app/secret_key.py', 'w') as key_file: key_file.write('secret_key = """' + secret_key + '""".decode("hex")') # Initialize database init_db() <commit_msg>Chec...
import os from flask_app.database import init_db # Generate new secret key key_file_path = 'flask_app/secret_key.py' if not os.path.isfile(key_file_path): secret_key = os.urandom(24).encode('hex').strip() with open(key_file_path, 'w') as key_file: key_file.write('secret_key = """' + secret_key + '"""....
import os from flask_app.database import init_db # Generate new secret key secret_key = os.urandom(24).encode('hex').strip() with open('flask_app/secret_key.py', 'w') as key_file: key_file.write('secret_key = """' + secret_key + '""".decode("hex")') # Initialize database init_db() Check if keyfile exists before ...
<commit_before> import os from flask_app.database import init_db # Generate new secret key secret_key = os.urandom(24).encode('hex').strip() with open('flask_app/secret_key.py', 'w') as key_file: key_file.write('secret_key = """' + secret_key + '""".decode("hex")') # Initialize database init_db() <commit_msg>Chec...
0451d8e1ee2ad136e3b0f69c43dca9658fdbb85c
16B/spw_setup.py
16B/spw_setup.py
# Line SPW setup for 16B projects linespw_dict = {0: ["HI", "1.420405752GHz"], 3: ["OH1612", "1.612231GHz"], 5: ["OH1665", "1.6654018GHz"], 6: ["OH1667", "1.667359GHz"], 7: ["OH1720", "1.72053GHz"], 9: ["H152alp", "1.85425GHz"], ...
# Line SPW setup for 16B projects linespw_dict = {0: ["HI", "1.420405752GHz", 4096], 3: ["OH1612", "1.612231GHz", 256], 5: ["OH1665", "1.6654018GHz", 256], 6: ["OH1667", "1.667359GHz", 256], 7: ["OH1720", "1.72053GHz", 256], 9: ["H152alp"...
Add channel numbers to 16B spectral setup
Add channel numbers to 16B spectral setup
Python
mit
e-koch/VLA_Lband,e-koch/VLA_Lband
# Line SPW setup for 16B projects linespw_dict = {0: ["HI", "1.420405752GHz"], 3: ["OH1612", "1.612231GHz"], 5: ["OH1665", "1.6654018GHz"], 6: ["OH1667", "1.667359GHz"], 7: ["OH1720", "1.72053GHz"], 9: ["H152alp", "1.85425GHz"], ...
# Line SPW setup for 16B projects linespw_dict = {0: ["HI", "1.420405752GHz", 4096], 3: ["OH1612", "1.612231GHz", 256], 5: ["OH1665", "1.6654018GHz", 256], 6: ["OH1667", "1.667359GHz", 256], 7: ["OH1720", "1.72053GHz", 256], 9: ["H152alp"...
<commit_before> # Line SPW setup for 16B projects linespw_dict = {0: ["HI", "1.420405752GHz"], 3: ["OH1612", "1.612231GHz"], 5: ["OH1665", "1.6654018GHz"], 6: ["OH1667", "1.667359GHz"], 7: ["OH1720", "1.72053GHz"], 9: ["H152alp", "1.85425G...
# Line SPW setup for 16B projects linespw_dict = {0: ["HI", "1.420405752GHz", 4096], 3: ["OH1612", "1.612231GHz", 256], 5: ["OH1665", "1.6654018GHz", 256], 6: ["OH1667", "1.667359GHz", 256], 7: ["OH1720", "1.72053GHz", 256], 9: ["H152alp"...
# Line SPW setup for 16B projects linespw_dict = {0: ["HI", "1.420405752GHz"], 3: ["OH1612", "1.612231GHz"], 5: ["OH1665", "1.6654018GHz"], 6: ["OH1667", "1.667359GHz"], 7: ["OH1720", "1.72053GHz"], 9: ["H152alp", "1.85425GHz"], ...
<commit_before> # Line SPW setup for 16B projects linespw_dict = {0: ["HI", "1.420405752GHz"], 3: ["OH1612", "1.612231GHz"], 5: ["OH1665", "1.6654018GHz"], 6: ["OH1667", "1.667359GHz"], 7: ["OH1720", "1.72053GHz"], 9: ["H152alp", "1.85425G...
e4b516f612d60eac8cb278d1c8675b3fdbad8652
windmill/server/__init__.py
windmill/server/__init__.py
# Copyright (c) 2006-2007 Open Source Applications Foundation # Copyright (c) 2008-2009 Mikeal Rogers <mikeal.rogers@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
# Copyright (c) 2006-2007 Open Source Applications Foundation # Copyright (c) 2008-2009 Mikeal Rogers <mikeal.rogers@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
Fix for [ticket:281]. Do not forward livebookmarks request.
Fix for [ticket:281]. Do not forward livebookmarks request. git-svn-id: 87d19257dd11500985d055ec4730e446075a5f07@1261 78c7df6f-8922-0410-bcd3-9426b1ad491b
Python
apache-2.0
ept/windmill,ept/windmill,ept/windmill
# Copyright (c) 2006-2007 Open Source Applications Foundation # Copyright (c) 2008-2009 Mikeal Rogers <mikeal.rogers@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
# Copyright (c) 2006-2007 Open Source Applications Foundation # Copyright (c) 2008-2009 Mikeal Rogers <mikeal.rogers@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
<commit_before># Copyright (c) 2006-2007 Open Source Applications Foundation # Copyright (c) 2008-2009 Mikeal Rogers <mikeal.rogers@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the L...
# Copyright (c) 2006-2007 Open Source Applications Foundation # Copyright (c) 2008-2009 Mikeal Rogers <mikeal.rogers@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
# Copyright (c) 2006-2007 Open Source Applications Foundation # Copyright (c) 2008-2009 Mikeal Rogers <mikeal.rogers@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
<commit_before># Copyright (c) 2006-2007 Open Source Applications Foundation # Copyright (c) 2008-2009 Mikeal Rogers <mikeal.rogers@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the L...
1a77599911f26cf660e9d11693ab95aef38d44b7
first_django/urls.py
first_django/urls.py
"""first_django URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.8/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Clas...
"""first_django URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.8/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Clas...
Test use vcs plugin to commit.
Test use vcs plugin to commit.
Python
apache-2.0
wmh-demos/django-first-demo,wmh-demos/django-first-demo
"""first_django URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.8/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Clas...
"""first_django URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.8/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Clas...
<commit_before>"""first_django URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.8/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, na...
"""first_django URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.8/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Clas...
"""first_django URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.8/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Clas...
<commit_before>"""first_django URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.8/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, na...
6c891692c5595f4cf9822bee6b42a33f141af5ed
fmn/consumer/util.py
fmn/consumer/util.py
import fedora.client import logging log = logging.getLogger("fmn") def new_packager(topic, msg): """ Returns a username if the message is about a new packager in FAS. """ if '.fas.group.member.sponsor' in topic: group = msg['msg']['group'] if group == 'packager': return msg['msg']...
import fedora.client import logging log = logging.getLogger("fmn") def new_packager(topic, msg): """ Returns a username if the message is about a new packager in FAS. """ if '.fas.group.member.sponsor' in topic: group = msg['msg']['group'] if group == 'packager': return msg['msg']...
Use dict interface to bunch.
Use dict interface to bunch. I'm not sure why, but we got this error on the server:: Traceback (most recent call last): File "fmn/consumer/util.py", line 33, in get_fas_email if person.email: AttributeError: 'dict' object has no attribute 'email' This should fix that.
Python
lgpl-2.1
jeremycline/fmn,jeremycline/fmn,jeremycline/fmn
import fedora.client import logging log = logging.getLogger("fmn") def new_packager(topic, msg): """ Returns a username if the message is about a new packager in FAS. """ if '.fas.group.member.sponsor' in topic: group = msg['msg']['group'] if group == 'packager': return msg['msg']...
import fedora.client import logging log = logging.getLogger("fmn") def new_packager(topic, msg): """ Returns a username if the message is about a new packager in FAS. """ if '.fas.group.member.sponsor' in topic: group = msg['msg']['group'] if group == 'packager': return msg['msg']...
<commit_before>import fedora.client import logging log = logging.getLogger("fmn") def new_packager(topic, msg): """ Returns a username if the message is about a new packager in FAS. """ if '.fas.group.member.sponsor' in topic: group = msg['msg']['group'] if group == 'packager': re...
import fedora.client import logging log = logging.getLogger("fmn") def new_packager(topic, msg): """ Returns a username if the message is about a new packager in FAS. """ if '.fas.group.member.sponsor' in topic: group = msg['msg']['group'] if group == 'packager': return msg['msg']...
import fedora.client import logging log = logging.getLogger("fmn") def new_packager(topic, msg): """ Returns a username if the message is about a new packager in FAS. """ if '.fas.group.member.sponsor' in topic: group = msg['msg']['group'] if group == 'packager': return msg['msg']...
<commit_before>import fedora.client import logging log = logging.getLogger("fmn") def new_packager(topic, msg): """ Returns a username if the message is about a new packager in FAS. """ if '.fas.group.member.sponsor' in topic: group = msg['msg']['group'] if group == 'packager': re...
ef497d6bac0f60dee04e47a8ec742744c1ab9427
poyo/patterns.py
poyo/patterns.py
# -*- coding: utf-8 -*- INDENT = r"(?P<indent>^ *)" VARIABLE = r"(?P<variable>.+):" VALUE = r"(?P<value>((?P<q2>['\"]).*?(?P=q2))|[^#]+?)" NEWLINE = r"$\n" BLANK = r" +" INLINE_COMMENT = r"( +#.*)?" COMMENT = r"^ *#.*" + NEWLINE BLANK_LINE = r"^[ \t]*" + NEWLINE DASHES = r"^---" + NEWLINE SECTION = INDENT + VARIABLE...
# -*- coding: utf-8 -*- INDENT = r"(?P<indent>^ *)" VARIABLE = r"(?P<variable>.+):" VALUE = r"(?P<value>(?:(?P<q2>['\"]).*?(?P=q2))|[^#]+?)" NEWLINE = r"$\n" BLANK = r" +" INLINE_COMMENT = r"(?: +#.*)?" COMMENT = r"^ *#.*" + NEWLINE BLANK_LINE = r"^[ \t]*" + NEWLINE DASHES = r"^---" + NEWLINE SECTION = INDENT + VARI...
Update to non-capturing groups in VALUE and INLINE_COMMENT
Update to non-capturing groups in VALUE and INLINE_COMMENT
Python
mit
hackebrot/poyo
# -*- coding: utf-8 -*- INDENT = r"(?P<indent>^ *)" VARIABLE = r"(?P<variable>.+):" VALUE = r"(?P<value>((?P<q2>['\"]).*?(?P=q2))|[^#]+?)" NEWLINE = r"$\n" BLANK = r" +" INLINE_COMMENT = r"( +#.*)?" COMMENT = r"^ *#.*" + NEWLINE BLANK_LINE = r"^[ \t]*" + NEWLINE DASHES = r"^---" + NEWLINE SECTION = INDENT + VARIABLE...
# -*- coding: utf-8 -*- INDENT = r"(?P<indent>^ *)" VARIABLE = r"(?P<variable>.+):" VALUE = r"(?P<value>(?:(?P<q2>['\"]).*?(?P=q2))|[^#]+?)" NEWLINE = r"$\n" BLANK = r" +" INLINE_COMMENT = r"(?: +#.*)?" COMMENT = r"^ *#.*" + NEWLINE BLANK_LINE = r"^[ \t]*" + NEWLINE DASHES = r"^---" + NEWLINE SECTION = INDENT + VARI...
<commit_before># -*- coding: utf-8 -*- INDENT = r"(?P<indent>^ *)" VARIABLE = r"(?P<variable>.+):" VALUE = r"(?P<value>((?P<q2>['\"]).*?(?P=q2))|[^#]+?)" NEWLINE = r"$\n" BLANK = r" +" INLINE_COMMENT = r"( +#.*)?" COMMENT = r"^ *#.*" + NEWLINE BLANK_LINE = r"^[ \t]*" + NEWLINE DASHES = r"^---" + NEWLINE SECTION = IN...
# -*- coding: utf-8 -*- INDENT = r"(?P<indent>^ *)" VARIABLE = r"(?P<variable>.+):" VALUE = r"(?P<value>(?:(?P<q2>['\"]).*?(?P=q2))|[^#]+?)" NEWLINE = r"$\n" BLANK = r" +" INLINE_COMMENT = r"(?: +#.*)?" COMMENT = r"^ *#.*" + NEWLINE BLANK_LINE = r"^[ \t]*" + NEWLINE DASHES = r"^---" + NEWLINE SECTION = INDENT + VARI...
# -*- coding: utf-8 -*- INDENT = r"(?P<indent>^ *)" VARIABLE = r"(?P<variable>.+):" VALUE = r"(?P<value>((?P<q2>['\"]).*?(?P=q2))|[^#]+?)" NEWLINE = r"$\n" BLANK = r" +" INLINE_COMMENT = r"( +#.*)?" COMMENT = r"^ *#.*" + NEWLINE BLANK_LINE = r"^[ \t]*" + NEWLINE DASHES = r"^---" + NEWLINE SECTION = INDENT + VARIABLE...
<commit_before># -*- coding: utf-8 -*- INDENT = r"(?P<indent>^ *)" VARIABLE = r"(?P<variable>.+):" VALUE = r"(?P<value>((?P<q2>['\"]).*?(?P=q2))|[^#]+?)" NEWLINE = r"$\n" BLANK = r" +" INLINE_COMMENT = r"( +#.*)?" COMMENT = r"^ *#.*" + NEWLINE BLANK_LINE = r"^[ \t]*" + NEWLINE DASHES = r"^---" + NEWLINE SECTION = IN...
12eea471fb50c229dff5627e1e97b7ddeceedd18
TWLight/ezproxy/urls.py
TWLight/ezproxy/urls.py
from django.conf.urls import url from django.contrib.auth.decorators import login_required from . import views urlpatterns = [ url(r'^u/(?P<url>http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)$', login_required(views.EZProxyAuth.as_view()), name='ezproxy_auth_u' ...
from django.conf.urls import url from django.contrib.auth.decorators import login_required from . import views urlpatterns = [ url(r'^u/(?P<url>http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)$', login_required(views.EZProxyAuth.as_view()), name='ezproxy_auth_u' ...
Use a more precise pattern to id ^R ezproxy url tokens.
Use a more precise pattern to id ^R ezproxy url tokens.
Python
mit
WikipediaLibrary/TWLight,WikipediaLibrary/TWLight,WikipediaLibrary/TWLight,WikipediaLibrary/TWLight,WikipediaLibrary/TWLight
from django.conf.urls import url from django.contrib.auth.decorators import login_required from . import views urlpatterns = [ url(r'^u/(?P<url>http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)$', login_required(views.EZProxyAuth.as_view()), name='ezproxy_auth_u' ...
from django.conf.urls import url from django.contrib.auth.decorators import login_required from . import views urlpatterns = [ url(r'^u/(?P<url>http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)$', login_required(views.EZProxyAuth.as_view()), name='ezproxy_auth_u' ...
<commit_before>from django.conf.urls import url from django.contrib.auth.decorators import login_required from . import views urlpatterns = [ url(r'^u/(?P<url>http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)$', login_required(views.EZProxyAuth.as_view()), name='ezpro...
from django.conf.urls import url from django.contrib.auth.decorators import login_required from . import views urlpatterns = [ url(r'^u/(?P<url>http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)$', login_required(views.EZProxyAuth.as_view()), name='ezproxy_auth_u' ...
from django.conf.urls import url from django.contrib.auth.decorators import login_required from . import views urlpatterns = [ url(r'^u/(?P<url>http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)$', login_required(views.EZProxyAuth.as_view()), name='ezproxy_auth_u' ...
<commit_before>from django.conf.urls import url from django.contrib.auth.decorators import login_required from . import views urlpatterns = [ url(r'^u/(?P<url>http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)$', login_required(views.EZProxyAuth.as_view()), name='ezpro...
f1941a96a08545ac83ff15675331939bc2beddcb
server/gauges.py
server/gauges.py
#!/usr/bin/env python3 import os from flask import Flask, jsonify, send_from_directory, abort, Response, request import psycopg2 app = Flask(__name__) conn = psycopg2.connect("dbname='rivers' user='nelson' host='localhost' password='NONE'") #@app.route('/') #def index(): # return send_from_directory('.', 'index.htm...
#!/usr/bin/env python3 import os from flask import Flask, jsonify, send_from_directory, abort, Response, request import psycopg2 import psycopg2.extras app = Flask(__name__) conn = psycopg2.connect("dbname='rivers' user='nelson' host='localhost' password='NONE'") #@app.route('/') #def index(): # return send_from_di...
Return data in dict form
Return data in dict form
Python
bsd-3-clause
r-barnes/waterviz,HydroLogic/waterviz,r-barnes/waterviz,HydroLogic/waterviz,r-barnes/waterviz,HydroLogic/waterviz,r-barnes/waterviz,HydroLogic/waterviz
#!/usr/bin/env python3 import os from flask import Flask, jsonify, send_from_directory, abort, Response, request import psycopg2 app = Flask(__name__) conn = psycopg2.connect("dbname='rivers' user='nelson' host='localhost' password='NONE'") #@app.route('/') #def index(): # return send_from_directory('.', 'index.htm...
#!/usr/bin/env python3 import os from flask import Flask, jsonify, send_from_directory, abort, Response, request import psycopg2 import psycopg2.extras app = Flask(__name__) conn = psycopg2.connect("dbname='rivers' user='nelson' host='localhost' password='NONE'") #@app.route('/') #def index(): # return send_from_di...
<commit_before>#!/usr/bin/env python3 import os from flask import Flask, jsonify, send_from_directory, abort, Response, request import psycopg2 app = Flask(__name__) conn = psycopg2.connect("dbname='rivers' user='nelson' host='localhost' password='NONE'") #@app.route('/') #def index(): # return send_from_directory(...
#!/usr/bin/env python3 import os from flask import Flask, jsonify, send_from_directory, abort, Response, request import psycopg2 import psycopg2.extras app = Flask(__name__) conn = psycopg2.connect("dbname='rivers' user='nelson' host='localhost' password='NONE'") #@app.route('/') #def index(): # return send_from_di...
#!/usr/bin/env python3 import os from flask import Flask, jsonify, send_from_directory, abort, Response, request import psycopg2 app = Flask(__name__) conn = psycopg2.connect("dbname='rivers' user='nelson' host='localhost' password='NONE'") #@app.route('/') #def index(): # return send_from_directory('.', 'index.htm...
<commit_before>#!/usr/bin/env python3 import os from flask import Flask, jsonify, send_from_directory, abort, Response, request import psycopg2 app = Flask(__name__) conn = psycopg2.connect("dbname='rivers' user='nelson' host='localhost' password='NONE'") #@app.route('/') #def index(): # return send_from_directory(...
349b0ca88a85a8e9f234debe35807d2c9bc93544
src/setup.py
src/setup.py
from distutils.core import setup from distutils.command.install import install import os import shutil class issue(Exception): def __init__(self, errorStr): self.errorStr = errorStr def __str__(self): return repr(self.errorStr) class post_install(install): def copyStuff(self, dataDir, des...
from distutils.core import setup from distutils.command.install import install import os import shutil class issue(Exception): def __init__(self, errorStr): self.errorStr = errorStr def __str__(self): return repr(self.errorStr) class post_install(install): def copyStuff(self, dataDir, des...
Add clusterDB to python egg
Add clusterDB to python egg
Python
apache-2.0
deepgrant/deep-tools
from distutils.core import setup from distutils.command.install import install import os import shutil class issue(Exception): def __init__(self, errorStr): self.errorStr = errorStr def __str__(self): return repr(self.errorStr) class post_install(install): def copyStuff(self, dataDir, des...
from distutils.core import setup from distutils.command.install import install import os import shutil class issue(Exception): def __init__(self, errorStr): self.errorStr = errorStr def __str__(self): return repr(self.errorStr) class post_install(install): def copyStuff(self, dataDir, des...
<commit_before>from distutils.core import setup from distutils.command.install import install import os import shutil class issue(Exception): def __init__(self, errorStr): self.errorStr = errorStr def __str__(self): return repr(self.errorStr) class post_install(install): def copyStuff(sel...
from distutils.core import setup from distutils.command.install import install import os import shutil class issue(Exception): def __init__(self, errorStr): self.errorStr = errorStr def __str__(self): return repr(self.errorStr) class post_install(install): def copyStuff(self, dataDir, des...
from distutils.core import setup from distutils.command.install import install import os import shutil class issue(Exception): def __init__(self, errorStr): self.errorStr = errorStr def __str__(self): return repr(self.errorStr) class post_install(install): def copyStuff(self, dataDir, des...
<commit_before>from distutils.core import setup from distutils.command.install import install import os import shutil class issue(Exception): def __init__(self, errorStr): self.errorStr = errorStr def __str__(self): return repr(self.errorStr) class post_install(install): def copyStuff(sel...
43acbf596e615f68eef119fb828aff55df0586d5
FlaskRequests.py
FlaskRequests.py
from flask import Request, Response class RqRequest(Request): def rq_headers(self): headers = {} if 'Authorization' in self.headers: headers['Authorization'] = self.headers['Authorization'] if self.headers['Accept'] == 'application/xml': headers['Accept'] = 'applicati...
from flask import Request, Response class RqRequest(Request): def rq_headers(self): headers = {} if 'Authorization' in self.headers: headers['Authorization'] = self.headers['Authorization'] if self.headers.get('Accept') == 'application/xml': headers['Accept'] = 'appli...
Fix KeyError when accessing non-existing header
Fix KeyError when accessing non-existing header
Python
mit
Timothee/Passeplat
from flask import Request, Response class RqRequest(Request): def rq_headers(self): headers = {} if 'Authorization' in self.headers: headers['Authorization'] = self.headers['Authorization'] if self.headers['Accept'] == 'application/xml': headers['Accept'] = 'applicati...
from flask import Request, Response class RqRequest(Request): def rq_headers(self): headers = {} if 'Authorization' in self.headers: headers['Authorization'] = self.headers['Authorization'] if self.headers.get('Accept') == 'application/xml': headers['Accept'] = 'appli...
<commit_before>from flask import Request, Response class RqRequest(Request): def rq_headers(self): headers = {} if 'Authorization' in self.headers: headers['Authorization'] = self.headers['Authorization'] if self.headers['Accept'] == 'application/xml': headers['Accept...
from flask import Request, Response class RqRequest(Request): def rq_headers(self): headers = {} if 'Authorization' in self.headers: headers['Authorization'] = self.headers['Authorization'] if self.headers.get('Accept') == 'application/xml': headers['Accept'] = 'appli...
from flask import Request, Response class RqRequest(Request): def rq_headers(self): headers = {} if 'Authorization' in self.headers: headers['Authorization'] = self.headers['Authorization'] if self.headers['Accept'] == 'application/xml': headers['Accept'] = 'applicati...
<commit_before>from flask import Request, Response class RqRequest(Request): def rq_headers(self): headers = {} if 'Authorization' in self.headers: headers['Authorization'] = self.headers['Authorization'] if self.headers['Accept'] == 'application/xml': headers['Accept...
a2776a5cfcad7e9957eb44ab5882d36878026b1e
property_transformation.py
property_transformation.py
from types import UnicodeType, StringType class PropertyMappingFailedException(Exception): pass def get_transformed_properties(source_properties, prop_map): results = {} for key, value in prop_map.iteritems(): if type(value) in (StringType, UnicodeType): if value in source_properties: ...
from types import UnicodeType, StringType class PropertyMappingFailedException(Exception): pass def get_transformed_properties(source_properties, prop_map): results = {} for key, value in prop_map.iteritems(): if type(value) in (StringType, UnicodeType): if value in source_properties: ...
Add option to include static values in properties
Add option to include static values in properties
Python
mit
OpenBounds/Processing
from types import UnicodeType, StringType class PropertyMappingFailedException(Exception): pass def get_transformed_properties(source_properties, prop_map): results = {} for key, value in prop_map.iteritems(): if type(value) in (StringType, UnicodeType): if value in source_properties: ...
from types import UnicodeType, StringType class PropertyMappingFailedException(Exception): pass def get_transformed_properties(source_properties, prop_map): results = {} for key, value in prop_map.iteritems(): if type(value) in (StringType, UnicodeType): if value in source_properties: ...
<commit_before>from types import UnicodeType, StringType class PropertyMappingFailedException(Exception): pass def get_transformed_properties(source_properties, prop_map): results = {} for key, value in prop_map.iteritems(): if type(value) in (StringType, UnicodeType): if value in sour...
from types import UnicodeType, StringType class PropertyMappingFailedException(Exception): pass def get_transformed_properties(source_properties, prop_map): results = {} for key, value in prop_map.iteritems(): if type(value) in (StringType, UnicodeType): if value in source_properties: ...
from types import UnicodeType, StringType class PropertyMappingFailedException(Exception): pass def get_transformed_properties(source_properties, prop_map): results = {} for key, value in prop_map.iteritems(): if type(value) in (StringType, UnicodeType): if value in source_properties: ...
<commit_before>from types import UnicodeType, StringType class PropertyMappingFailedException(Exception): pass def get_transformed_properties(source_properties, prop_map): results = {} for key, value in prop_map.iteritems(): if type(value) in (StringType, UnicodeType): if value in sour...
eb698848c67a5f2ffe1b47c2b4620946f3133c3f
pyautoupdate/_move_glob.py
pyautoupdate/_move_glob.py
import glob import shutil import os def move_glob(src,dst): """Moves files from src to dest. src may be any glob to recognize files. dst must be a folder.""" for obj in glob.iglob(src): shutil.move(obj,dst) def copy_glob(src,dst): """Copies files from src to dest. src may be any glob to ...
import glob import shutil import os if os.name == "nt": from .ntcommonpath import commonpath else: from .posixcommonpath import commonpath def move_glob(src,dst): """Moves files from src to dest. src may be any glob to recognize files. dst must be a folder.""" for obj in glob.iglob(src): ...
Use backported commonpath instead of built in os.path.commonpath
Use backported commonpath instead of built in os.path.commonpath The built in one is only available for Python 3.5
Python
lgpl-2.1
rlee287/pyautoupdate,rlee287/pyautoupdate
import glob import shutil import os def move_glob(src,dst): """Moves files from src to dest. src may be any glob to recognize files. dst must be a folder.""" for obj in glob.iglob(src): shutil.move(obj,dst) def copy_glob(src,dst): """Copies files from src to dest. src may be any glob to ...
import glob import shutil import os if os.name == "nt": from .ntcommonpath import commonpath else: from .posixcommonpath import commonpath def move_glob(src,dst): """Moves files from src to dest. src may be any glob to recognize files. dst must be a folder.""" for obj in glob.iglob(src): ...
<commit_before>import glob import shutil import os def move_glob(src,dst): """Moves files from src to dest. src may be any glob to recognize files. dst must be a folder.""" for obj in glob.iglob(src): shutil.move(obj,dst) def copy_glob(src,dst): """Copies files from src to dest. src may ...
import glob import shutil import os if os.name == "nt": from .ntcommonpath import commonpath else: from .posixcommonpath import commonpath def move_glob(src,dst): """Moves files from src to dest. src may be any glob to recognize files. dst must be a folder.""" for obj in glob.iglob(src): ...
import glob import shutil import os def move_glob(src,dst): """Moves files from src to dest. src may be any glob to recognize files. dst must be a folder.""" for obj in glob.iglob(src): shutil.move(obj,dst) def copy_glob(src,dst): """Copies files from src to dest. src may be any glob to ...
<commit_before>import glob import shutil import os def move_glob(src,dst): """Moves files from src to dest. src may be any glob to recognize files. dst must be a folder.""" for obj in glob.iglob(src): shutil.move(obj,dst) def copy_glob(src,dst): """Copies files from src to dest. src may ...
397e4b3841dde6f82ad7f1d3f6458f99da69d678
px/px_install.py
px/px_install.py
import sys import shutil import os def install(src, dest): """ Copy src (file) into dest (file) and make dest executable. On trouble, prints message and exits with an error code. """ try: _install(src, dest) except Exception as e: sys.stderr.write("Installing {} failed, pleas...
import sys import shutil import os def install(src, dest): """ Copy src (file) into dest (file) and make dest executable. On trouble, prints message and exits with an error code. """ try: _install(src, dest) except Exception as e: sys.stderr.write("Installing {} failed, pleas...
Handle installing px on top of itself
Handle installing px on top of itself
Python
mit
walles/px,walles/px
import sys import shutil import os def install(src, dest): """ Copy src (file) into dest (file) and make dest executable. On trouble, prints message and exits with an error code. """ try: _install(src, dest) except Exception as e: sys.stderr.write("Installing {} failed, pleas...
import sys import shutil import os def install(src, dest): """ Copy src (file) into dest (file) and make dest executable. On trouble, prints message and exits with an error code. """ try: _install(src, dest) except Exception as e: sys.stderr.write("Installing {} failed, pleas...
<commit_before>import sys import shutil import os def install(src, dest): """ Copy src (file) into dest (file) and make dest executable. On trouble, prints message and exits with an error code. """ try: _install(src, dest) except Exception as e: sys.stderr.write("Installing {...
import sys import shutil import os def install(src, dest): """ Copy src (file) into dest (file) and make dest executable. On trouble, prints message and exits with an error code. """ try: _install(src, dest) except Exception as e: sys.stderr.write("Installing {} failed, pleas...
import sys import shutil import os def install(src, dest): """ Copy src (file) into dest (file) and make dest executable. On trouble, prints message and exits with an error code. """ try: _install(src, dest) except Exception as e: sys.stderr.write("Installing {} failed, pleas...
<commit_before>import sys import shutil import os def install(src, dest): """ Copy src (file) into dest (file) and make dest executable. On trouble, prints message and exits with an error code. """ try: _install(src, dest) except Exception as e: sys.stderr.write("Installing {...
c181c54ee749408401b47c9528e9ee085b582692
timelapse.py
timelapse.py
import os import datetime import time import picamera from PIL import Image, ImageStat, ImageFont, ImageDraw with picamera.PiCamera() as camera: camera.resolution = (1024, 768) camera.rotation = 180 time.sleep(2) # camera warm-up time for filename in camera.capture_continuous('images/img_{timesta...
import os import datetime import time import picamera from PIL import Image, ImageStat, ImageFont, ImageDraw with picamera.PiCamera() as camera: camera.resolution = (1024, 768) camera.rotation = 180 time.sleep(2) # camera warm-up time for filename in camera.capture_continuous('images/img_{timesta...
Revert "E arruma o alinhamento do texto"
Revert "E arruma o alinhamento do texto" This reverts commit a7cb58ef323df97de537bb7cf0571c5ed26e113c.
Python
mit
dvl/raspberry-pi_timelapse,dvl/raspberry-pi_timelapse
import os import datetime import time import picamera from PIL import Image, ImageStat, ImageFont, ImageDraw with picamera.PiCamera() as camera: camera.resolution = (1024, 768) camera.rotation = 180 time.sleep(2) # camera warm-up time for filename in camera.capture_continuous('images/img_{timesta...
import os import datetime import time import picamera from PIL import Image, ImageStat, ImageFont, ImageDraw with picamera.PiCamera() as camera: camera.resolution = (1024, 768) camera.rotation = 180 time.sleep(2) # camera warm-up time for filename in camera.capture_continuous('images/img_{timesta...
<commit_before>import os import datetime import time import picamera from PIL import Image, ImageStat, ImageFont, ImageDraw with picamera.PiCamera() as camera: camera.resolution = (1024, 768) camera.rotation = 180 time.sleep(2) # camera warm-up time for filename in camera.capture_continuous('imag...
import os import datetime import time import picamera from PIL import Image, ImageStat, ImageFont, ImageDraw with picamera.PiCamera() as camera: camera.resolution = (1024, 768) camera.rotation = 180 time.sleep(2) # camera warm-up time for filename in camera.capture_continuous('images/img_{timesta...
import os import datetime import time import picamera from PIL import Image, ImageStat, ImageFont, ImageDraw with picamera.PiCamera() as camera: camera.resolution = (1024, 768) camera.rotation = 180 time.sleep(2) # camera warm-up time for filename in camera.capture_continuous('images/img_{timesta...
<commit_before>import os import datetime import time import picamera from PIL import Image, ImageStat, ImageFont, ImageDraw with picamera.PiCamera() as camera: camera.resolution = (1024, 768) camera.rotation = 180 time.sleep(2) # camera warm-up time for filename in camera.capture_continuous('imag...
0c3ed07548cd196ceac2641a38f4d20a1e104d11
admin/test/test_acceptance.py
admin/test/test_acceptance.py
# Copyright Hybrid Logic Ltd. See LICENSE file for details. """ Tests for ``admin.acceptance``. """ from zope.interface.verify import verifyObject from twisted.trial.unittest import SynchronousTestCase from ..acceptance import IClusterRunner, ManagedRunner class ManagedRunnerTests(SynchronousTestCase): """ ...
# Copyright Hybrid Logic Ltd. See LICENSE file for details. """ Tests for ``admin.acceptance``. """ from zope.interface.verify import verifyObject from twisted.trial.unittest import SynchronousTestCase from ..acceptance import IClusterRunner, ManagedRunner from flocker.provision import PackageSource from flocker.ac...
Create the ManagedRunner with all the new args.
Create the ManagedRunner with all the new args.
Python
apache-2.0
jml/flocker,lukemarsden/flocker,wallnerryan/flocker-profiles,AndyHuu/flocker,adamtheturtle/flocker,mbrukman/flocker,lukemarsden/flocker,hackday-profilers/flocker,achanda/flocker,w4ngyi/flocker,1d4Nf6/flocker,Azulinho/flocker,mbrukman/flocker,LaynePeng/flocker,w4ngyi/flocker,moypray/flocker,w4ngyi/flocker,LaynePeng/floc...
# Copyright Hybrid Logic Ltd. See LICENSE file for details. """ Tests for ``admin.acceptance``. """ from zope.interface.verify import verifyObject from twisted.trial.unittest import SynchronousTestCase from ..acceptance import IClusterRunner, ManagedRunner class ManagedRunnerTests(SynchronousTestCase): """ ...
# Copyright Hybrid Logic Ltd. See LICENSE file for details. """ Tests for ``admin.acceptance``. """ from zope.interface.verify import verifyObject from twisted.trial.unittest import SynchronousTestCase from ..acceptance import IClusterRunner, ManagedRunner from flocker.provision import PackageSource from flocker.ac...
<commit_before># Copyright Hybrid Logic Ltd. See LICENSE file for details. """ Tests for ``admin.acceptance``. """ from zope.interface.verify import verifyObject from twisted.trial.unittest import SynchronousTestCase from ..acceptance import IClusterRunner, ManagedRunner class ManagedRunnerTests(SynchronousTestCas...
# Copyright Hybrid Logic Ltd. See LICENSE file for details. """ Tests for ``admin.acceptance``. """ from zope.interface.verify import verifyObject from twisted.trial.unittest import SynchronousTestCase from ..acceptance import IClusterRunner, ManagedRunner from flocker.provision import PackageSource from flocker.ac...
# Copyright Hybrid Logic Ltd. See LICENSE file for details. """ Tests for ``admin.acceptance``. """ from zope.interface.verify import verifyObject from twisted.trial.unittest import SynchronousTestCase from ..acceptance import IClusterRunner, ManagedRunner class ManagedRunnerTests(SynchronousTestCase): """ ...
<commit_before># Copyright Hybrid Logic Ltd. See LICENSE file for details. """ Tests for ``admin.acceptance``. """ from zope.interface.verify import verifyObject from twisted.trial.unittest import SynchronousTestCase from ..acceptance import IClusterRunner, ManagedRunner class ManagedRunnerTests(SynchronousTestCas...
fb82b4f77379ddd1525947cc61f1c46c34674da4
froide/publicbody/admin.py
froide/publicbody/admin.py
from django.contrib import admin from froide.publicbody.models import (PublicBody, FoiLaw, PublicBodyTopic, Jurisdiction) class PublicBodyAdmin(admin.ModelAdmin): prepopulated_fields = {"slug": ("name",)} list_display = ('name', 'email', 'url', 'classification', 'topic', 'depth',) list_filter = ('...
from django.contrib import admin from froide.publicbody.models import (PublicBody, FoiLaw, PublicBodyTopic, Jurisdiction) class PublicBodyAdmin(admin.ModelAdmin): prepopulated_fields = {"slug": ("name",)} list_display = ('name', 'email', 'url', 'classification', 'topic', 'depth',) list_filter = ('...
Add list filter by jurisdiction for public bodies
Add list filter by jurisdiction for public bodies
Python
mit
LilithWittmann/froide,fin/froide,ryankanno/froide,CodeforHawaii/froide,okfse/froide,stefanw/froide,ryankanno/froide,okfse/froide,stefanw/froide,catcosmo/froide,fin/froide,ryankanno/froide,CodeforHawaii/froide,stefanw/froide,LilithWittmann/froide,CodeforHawaii/froide,okfse/froide,okfse/froide,LilithWittmann/froide,fin/f...
from django.contrib import admin from froide.publicbody.models import (PublicBody, FoiLaw, PublicBodyTopic, Jurisdiction) class PublicBodyAdmin(admin.ModelAdmin): prepopulated_fields = {"slug": ("name",)} list_display = ('name', 'email', 'url', 'classification', 'topic', 'depth',) list_filter = ('...
from django.contrib import admin from froide.publicbody.models import (PublicBody, FoiLaw, PublicBodyTopic, Jurisdiction) class PublicBodyAdmin(admin.ModelAdmin): prepopulated_fields = {"slug": ("name",)} list_display = ('name', 'email', 'url', 'classification', 'topic', 'depth',) list_filter = ('...
<commit_before>from django.contrib import admin from froide.publicbody.models import (PublicBody, FoiLaw, PublicBodyTopic, Jurisdiction) class PublicBodyAdmin(admin.ModelAdmin): prepopulated_fields = {"slug": ("name",)} list_display = ('name', 'email', 'url', 'classification', 'topic', 'depth',) l...
from django.contrib import admin from froide.publicbody.models import (PublicBody, FoiLaw, PublicBodyTopic, Jurisdiction) class PublicBodyAdmin(admin.ModelAdmin): prepopulated_fields = {"slug": ("name",)} list_display = ('name', 'email', 'url', 'classification', 'topic', 'depth',) list_filter = ('...
from django.contrib import admin from froide.publicbody.models import (PublicBody, FoiLaw, PublicBodyTopic, Jurisdiction) class PublicBodyAdmin(admin.ModelAdmin): prepopulated_fields = {"slug": ("name",)} list_display = ('name', 'email', 'url', 'classification', 'topic', 'depth',) list_filter = ('...
<commit_before>from django.contrib import admin from froide.publicbody.models import (PublicBody, FoiLaw, PublicBodyTopic, Jurisdiction) class PublicBodyAdmin(admin.ModelAdmin): prepopulated_fields = {"slug": ("name",)} list_display = ('name', 'email', 'url', 'classification', 'topic', 'depth',) l...
6c49d28370cdcd96917286cf68e6a8218db4b8a5
indra/java_vm.py
indra/java_vm.py
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" from __future__ import absolute_import, print_function, unicode_literals from builtins import dict, str import os import logging import jnius_config logger = logging.getLogger('java_vm...
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" from __future__ import absolute_import, print_function, unicode_literals from builtins import dict, str import os import logging import jnius_config logger = logging.getLogger('java_vm...
Increase default maximum java heap size
Increase default maximum java heap size
Python
bsd-2-clause
johnbachman/indra,johnbachman/belpy,pvtodorov/indra,johnbachman/belpy,sorgerlab/belpy,sorgerlab/indra,pvtodorov/indra,pvtodorov/indra,johnbachman/indra,sorgerlab/indra,johnbachman/belpy,pvtodorov/indra,sorgerlab/belpy,johnbachman/indra,sorgerlab/indra,bgyori/indra,bgyori/indra,bgyori/indra,sorgerlab/belpy
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" from __future__ import absolute_import, print_function, unicode_literals from builtins import dict, str import os import logging import jnius_config logger = logging.getLogger('java_vm...
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" from __future__ import absolute_import, print_function, unicode_literals from builtins import dict, str import os import logging import jnius_config logger = logging.getLogger('java_vm...
<commit_before>"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" from __future__ import absolute_import, print_function, unicode_literals from builtins import dict, str import os import logging import jnius_config logger = logging.get...
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" from __future__ import absolute_import, print_function, unicode_literals from builtins import dict, str import os import logging import jnius_config logger = logging.getLogger('java_vm...
"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" from __future__ import absolute_import, print_function, unicode_literals from builtins import dict, str import os import logging import jnius_config logger = logging.getLogger('java_vm...
<commit_before>"""Handles all imports from jnius to prevent conflicts resulting from attempts to set JVM options while the VM is already running.""" from __future__ import absolute_import, print_function, unicode_literals from builtins import dict, str import os import logging import jnius_config logger = logging.get...
f1f500488197a40a007af67c2c8dcc0aaef60dd3
src/project/word2vec_corpus.py
src/project/word2vec_corpus.py
import sys from os.path import isdir, isfile from corpus import Corpus from gensim import models class W2VCorpus(Corpus): def __init__(self, dir, dict_loc, vec_loc): Corpus.__init__(self, dir) # Todo: Tweak the default paramaters self.model = models.Word2Vec(self.docs.get_texts(), size=10...
import sys from os.path import isdir, isfile from corpus import Corpus from gensim import models class W2VCorpus(Corpus): def __init__(self, dict_loc, vec_loc, dir=None): Corpus.__init__(self, dir) self.dict_loc = dict_loc self.vec_loc = vec_loc self.model = None if dir: ...
Add functionality to load/save w2v model
Add functionality to load/save w2v model
Python
mit
PinPinIre/Final-Year-Project,PinPinIre/Final-Year-Project,PinPinIre/Final-Year-Project
import sys from os.path import isdir, isfile from corpus import Corpus from gensim import models class W2VCorpus(Corpus): def __init__(self, dir, dict_loc, vec_loc): Corpus.__init__(self, dir) # Todo: Tweak the default paramaters self.model = models.Word2Vec(self.docs.get_texts(), size=10...
import sys from os.path import isdir, isfile from corpus import Corpus from gensim import models class W2VCorpus(Corpus): def __init__(self, dict_loc, vec_loc, dir=None): Corpus.__init__(self, dir) self.dict_loc = dict_loc self.vec_loc = vec_loc self.model = None if dir: ...
<commit_before>import sys from os.path import isdir, isfile from corpus import Corpus from gensim import models class W2VCorpus(Corpus): def __init__(self, dir, dict_loc, vec_loc): Corpus.__init__(self, dir) # Todo: Tweak the default paramaters self.model = models.Word2Vec(self.docs.get_t...
import sys from os.path import isdir, isfile from corpus import Corpus from gensim import models class W2VCorpus(Corpus): def __init__(self, dict_loc, vec_loc, dir=None): Corpus.__init__(self, dir) self.dict_loc = dict_loc self.vec_loc = vec_loc self.model = None if dir: ...
import sys from os.path import isdir, isfile from corpus import Corpus from gensim import models class W2VCorpus(Corpus): def __init__(self, dir, dict_loc, vec_loc): Corpus.__init__(self, dir) # Todo: Tweak the default paramaters self.model = models.Word2Vec(self.docs.get_texts(), size=10...
<commit_before>import sys from os.path import isdir, isfile from corpus import Corpus from gensim import models class W2VCorpus(Corpus): def __init__(self, dir, dict_loc, vec_loc): Corpus.__init__(self, dir) # Todo: Tweak the default paramaters self.model = models.Word2Vec(self.docs.get_t...
c9c3a81187fa3fe21b08fca9b37c6a608e7b03b2
sweettooth/extensions/feeds.py
sweettooth/extensions/feeds.py
from django.contrib.syndication.views import Feed from django.core.urlresolvers import reverse from extensions.models import Extension class LatestExtensionsFeed(Feed): title = "Latest extensions in GNOME Shell Extensions" link = "/" description = "The latest extensions in GNOME Shell Extensions" def...
from django.contrib.syndication.views import Feed from django.core.urlresolvers import reverse from extensions.models import Extension class LatestExtensionsFeed(Feed): title = "Latest extensions in GNOME Shell Extensions" link = "/" description = "The latest extensions in GNOME Shell Extensions" def...
Fix RSS feed some more.
Fix RSS feed some more.
Python
agpl-3.0
GNOME/extensions-web,GNOME/extensions-web,GNOME/extensions-web,GNOME/extensions-web,magcius/sweettooth,magcius/sweettooth
from django.contrib.syndication.views import Feed from django.core.urlresolvers import reverse from extensions.models import Extension class LatestExtensionsFeed(Feed): title = "Latest extensions in GNOME Shell Extensions" link = "/" description = "The latest extensions in GNOME Shell Extensions" def...
from django.contrib.syndication.views import Feed from django.core.urlresolvers import reverse from extensions.models import Extension class LatestExtensionsFeed(Feed): title = "Latest extensions in GNOME Shell Extensions" link = "/" description = "The latest extensions in GNOME Shell Extensions" def...
<commit_before> from django.contrib.syndication.views import Feed from django.core.urlresolvers import reverse from extensions.models import Extension class LatestExtensionsFeed(Feed): title = "Latest extensions in GNOME Shell Extensions" link = "/" description = "The latest extensions in GNOME Shell Exten...
from django.contrib.syndication.views import Feed from django.core.urlresolvers import reverse from extensions.models import Extension class LatestExtensionsFeed(Feed): title = "Latest extensions in GNOME Shell Extensions" link = "/" description = "The latest extensions in GNOME Shell Extensions" def...
from django.contrib.syndication.views import Feed from django.core.urlresolvers import reverse from extensions.models import Extension class LatestExtensionsFeed(Feed): title = "Latest extensions in GNOME Shell Extensions" link = "/" description = "The latest extensions in GNOME Shell Extensions" def...
<commit_before> from django.contrib.syndication.views import Feed from django.core.urlresolvers import reverse from extensions.models import Extension class LatestExtensionsFeed(Feed): title = "Latest extensions in GNOME Shell Extensions" link = "/" description = "The latest extensions in GNOME Shell Exten...
87c5f39d5cb072a778bb145e6e5fc49c8d4b350d
core/urls.py
core/urls.py
from django.conf.urls import url from django.views.generic import RedirectView from django.core.urlresolvers import reverse_lazy from .views import AppView, reports_export # Instead of using a wildcard for our app views we insert them one at a time # for naming purposes. This is so that users can change urls if they...
from django.conf.urls import url from django.views.generic import RedirectView from django.core.urlresolvers import reverse_lazy from .views import AppView, reports_export # Instead of using a wildcard for our app views we insert them one at a time # for naming purposes. This is so that users can change urls if they...
Add ability to go to individual invoice page
Add ability to go to individual invoice page
Python
bsd-2-clause
cdubz/timestrap,overshard/timestrap,overshard/timestrap,cdubz/timestrap,cdubz/timestrap,overshard/timestrap
from django.conf.urls import url from django.views.generic import RedirectView from django.core.urlresolvers import reverse_lazy from .views import AppView, reports_export # Instead of using a wildcard for our app views we insert them one at a time # for naming purposes. This is so that users can change urls if they...
from django.conf.urls import url from django.views.generic import RedirectView from django.core.urlresolvers import reverse_lazy from .views import AppView, reports_export # Instead of using a wildcard for our app views we insert them one at a time # for naming purposes. This is so that users can change urls if they...
<commit_before>from django.conf.urls import url from django.views.generic import RedirectView from django.core.urlresolvers import reverse_lazy from .views import AppView, reports_export # Instead of using a wildcard for our app views we insert them one at a time # for naming purposes. This is so that users can chan...
from django.conf.urls import url from django.views.generic import RedirectView from django.core.urlresolvers import reverse_lazy from .views import AppView, reports_export # Instead of using a wildcard for our app views we insert them one at a time # for naming purposes. This is so that users can change urls if they...
from django.conf.urls import url from django.views.generic import RedirectView from django.core.urlresolvers import reverse_lazy from .views import AppView, reports_export # Instead of using a wildcard for our app views we insert them one at a time # for naming purposes. This is so that users can change urls if they...
<commit_before>from django.conf.urls import url from django.views.generic import RedirectView from django.core.urlresolvers import reverse_lazy from .views import AppView, reports_export # Instead of using a wildcard for our app views we insert them one at a time # for naming purposes. This is so that users can chan...
3b7e9d42db8ba0f4f3330544d3789427e7e3858c
python/04-1.py
python/04-1.py
#!/usr/bin/env python import hashlib prefix = '' number = 1 with open('../inputs/04.txt') as f: prefix = f.readlines() prefix = prefix[0].rstrip() while True: md5 = hashlib.md5() md5.update('{0}{1}'.format(prefix, number)) if md5.hexdigest()[:5] == '00000': #print md5.hexdigest() print num...
#!/usr/bin/env python import hashlib prefix = '' number = 1 with open('../inputs/04.txt') as f: prefix = f.readlines() prefix = prefix[0].rstrip() md5 = hashlib.md5() md5.update(prefix) while True: m = md5.copy() m.update(str(number)) if m.hexdigest()[:5] == '00000': print number break ...
Use md5.copy() to be more efficient.
Use md5.copy() to be more efficient. The hash.copy() documentation says this is more efficient given a common initial substring.
Python
mit
opello/adventofcode
#!/usr/bin/env python import hashlib prefix = '' number = 1 with open('../inputs/04.txt') as f: prefix = f.readlines() prefix = prefix[0].rstrip() while True: md5 = hashlib.md5() md5.update('{0}{1}'.format(prefix, number)) if md5.hexdigest()[:5] == '00000': #print md5.hexdigest() print num...
#!/usr/bin/env python import hashlib prefix = '' number = 1 with open('../inputs/04.txt') as f: prefix = f.readlines() prefix = prefix[0].rstrip() md5 = hashlib.md5() md5.update(prefix) while True: m = md5.copy() m.update(str(number)) if m.hexdigest()[:5] == '00000': print number break ...
<commit_before>#!/usr/bin/env python import hashlib prefix = '' number = 1 with open('../inputs/04.txt') as f: prefix = f.readlines() prefix = prefix[0].rstrip() while True: md5 = hashlib.md5() md5.update('{0}{1}'.format(prefix, number)) if md5.hexdigest()[:5] == '00000': #print md5.hexdigest() ...
#!/usr/bin/env python import hashlib prefix = '' number = 1 with open('../inputs/04.txt') as f: prefix = f.readlines() prefix = prefix[0].rstrip() md5 = hashlib.md5() md5.update(prefix) while True: m = md5.copy() m.update(str(number)) if m.hexdigest()[:5] == '00000': print number break ...
#!/usr/bin/env python import hashlib prefix = '' number = 1 with open('../inputs/04.txt') as f: prefix = f.readlines() prefix = prefix[0].rstrip() while True: md5 = hashlib.md5() md5.update('{0}{1}'.format(prefix, number)) if md5.hexdigest()[:5] == '00000': #print md5.hexdigest() print num...
<commit_before>#!/usr/bin/env python import hashlib prefix = '' number = 1 with open('../inputs/04.txt') as f: prefix = f.readlines() prefix = prefix[0].rstrip() while True: md5 = hashlib.md5() md5.update('{0}{1}'.format(prefix, number)) if md5.hexdigest()[:5] == '00000': #print md5.hexdigest() ...
b179423a7678aef0a8e286977055b25b9b0aac99
plugin/main.py
plugin/main.py
#!/usr/bin/env python """ Deploy builds to a Rancher orchestrated stack using rancher-compose """ import os import drone import subprocess def main(): """The main entrypoint for the plugin.""" payload = drone.plugin.get_input() vargs = payload["vargs"] # Change directory to deploy path deploy_pa...
#!/usr/bin/env python """ Deploy builds to a Rancher orchestrated stack using rancher-compose """ import os import drone import subprocess def main(): """The main entrypoint for the plugin.""" payload = drone.plugin.get_input() vargs = payload["vargs"] # Change directory to deploy path deploy_pa...
Print rancher-compose command to help debug/confirmation
Print rancher-compose command to help debug/confirmation
Python
apache-2.0
dangerfarms/drone-rancher
#!/usr/bin/env python """ Deploy builds to a Rancher orchestrated stack using rancher-compose """ import os import drone import subprocess def main(): """The main entrypoint for the plugin.""" payload = drone.plugin.get_input() vargs = payload["vargs"] # Change directory to deploy path deploy_pa...
#!/usr/bin/env python """ Deploy builds to a Rancher orchestrated stack using rancher-compose """ import os import drone import subprocess def main(): """The main entrypoint for the plugin.""" payload = drone.plugin.get_input() vargs = payload["vargs"] # Change directory to deploy path deploy_pa...
<commit_before>#!/usr/bin/env python """ Deploy builds to a Rancher orchestrated stack using rancher-compose """ import os import drone import subprocess def main(): """The main entrypoint for the plugin.""" payload = drone.plugin.get_input() vargs = payload["vargs"] # Change directory to deploy pat...
#!/usr/bin/env python """ Deploy builds to a Rancher orchestrated stack using rancher-compose """ import os import drone import subprocess def main(): """The main entrypoint for the plugin.""" payload = drone.plugin.get_input() vargs = payload["vargs"] # Change directory to deploy path deploy_pa...
#!/usr/bin/env python """ Deploy builds to a Rancher orchestrated stack using rancher-compose """ import os import drone import subprocess def main(): """The main entrypoint for the plugin.""" payload = drone.plugin.get_input() vargs = payload["vargs"] # Change directory to deploy path deploy_pa...
<commit_before>#!/usr/bin/env python """ Deploy builds to a Rancher orchestrated stack using rancher-compose """ import os import drone import subprocess def main(): """The main entrypoint for the plugin.""" payload = drone.plugin.get_input() vargs = payload["vargs"] # Change directory to deploy pat...
39ed9fecd03f837c1ca7436b4695734b1602a356
create_sample.py
create_sample.py
# importing modules/ libraries import pandas as pd import random import numpy as np # create a sample of prior orders orders_df = pd.read_csv("Data/orders.csv") s = round(3214874 * 0.1) i = sorted(random.sample(list(orders_df[orders_df["eval_set"]=="prior"].index), s)) orders_df.loc[i,:].to_csv("Data/orders_prior_samp...
# importing modules/ libraries import pandas as pd import random import numpy as np # create a sample of prior orders orders_df = pd.read_csv("Data/orders.csv") s = round(3214874 * 0.1) i = sorted(random.sample(list(orders_df[orders_df["eval_set"]=="prior"].index), s)) orders_df.loc[i,:].to_csv("Data/orders_prior_samp...
Remove index argument while creating order products sample
fix: Remove index argument while creating order products sample
Python
mit
rjegankumar/instacart_prediction_model
# importing modules/ libraries import pandas as pd import random import numpy as np # create a sample of prior orders orders_df = pd.read_csv("Data/orders.csv") s = round(3214874 * 0.1) i = sorted(random.sample(list(orders_df[orders_df["eval_set"]=="prior"].index), s)) orders_df.loc[i,:].to_csv("Data/orders_prior_samp...
# importing modules/ libraries import pandas as pd import random import numpy as np # create a sample of prior orders orders_df = pd.read_csv("Data/orders.csv") s = round(3214874 * 0.1) i = sorted(random.sample(list(orders_df[orders_df["eval_set"]=="prior"].index), s)) orders_df.loc[i,:].to_csv("Data/orders_prior_samp...
<commit_before># importing modules/ libraries import pandas as pd import random import numpy as np # create a sample of prior orders orders_df = pd.read_csv("Data/orders.csv") s = round(3214874 * 0.1) i = sorted(random.sample(list(orders_df[orders_df["eval_set"]=="prior"].index), s)) orders_df.loc[i,:].to_csv("Data/or...
# importing modules/ libraries import pandas as pd import random import numpy as np # create a sample of prior orders orders_df = pd.read_csv("Data/orders.csv") s = round(3214874 * 0.1) i = sorted(random.sample(list(orders_df[orders_df["eval_set"]=="prior"].index), s)) orders_df.loc[i,:].to_csv("Data/orders_prior_samp...
# importing modules/ libraries import pandas as pd import random import numpy as np # create a sample of prior orders orders_df = pd.read_csv("Data/orders.csv") s = round(3214874 * 0.1) i = sorted(random.sample(list(orders_df[orders_df["eval_set"]=="prior"].index), s)) orders_df.loc[i,:].to_csv("Data/orders_prior_samp...
<commit_before># importing modules/ libraries import pandas as pd import random import numpy as np # create a sample of prior orders orders_df = pd.read_csv("Data/orders.csv") s = round(3214874 * 0.1) i = sorted(random.sample(list(orders_df[orders_df["eval_set"]=="prior"].index), s)) orders_df.loc[i,:].to_csv("Data/or...
6eed42d2abbc458b7df4d06faf55a70e33404030
docs/conf.py
docs/conf.py
# -*- coding: utf-8 -*- AUTHOR = u'Adrian Sampson' # General configuration extensions = ['sphinx.ext.autodoc', 'sphinx.ext.extlinks'] exclude_patterns = ['_build'] source_suffix = '.rst' master_doc = 'index' project = u'beets' copyright = u'2012, Adrian Sampson' version = '1.3' release = '1.3.17' pygments_style ...
# -*- coding: utf-8 -*- AUTHOR = u'Adrian Sampson' # General configuration extensions = ['sphinx.ext.autodoc', 'sphinx.ext.extlinks'] exclude_patterns = ['_build'] source_suffix = '.rst' master_doc = 'index' project = u'beets' copyright = u'2016, Adrian Sampson' version = '1.3' release = '1.3.17' pygments_style ...
Update documentation copyright year to 2016
Update documentation copyright year to 2016
Python
mit
mried/beets,SusannaMaria/beets,Freso/beets,madmouser1/beets,Freso/beets,ibmibmibm/beets,MyTunesFreeMusic/privacy-policy,jcoady9/beets,parapente/beets,ibmibmibm/beets,parapente/beets,beetbox/beets,Freso/beets,madmouser1/beets,SusannaMaria/beets,MyTunesFreeMusic/privacy-policy,beetbox/beets,mried/beets,xsteadfastx/beets,...
# -*- coding: utf-8 -*- AUTHOR = u'Adrian Sampson' # General configuration extensions = ['sphinx.ext.autodoc', 'sphinx.ext.extlinks'] exclude_patterns = ['_build'] source_suffix = '.rst' master_doc = 'index' project = u'beets' copyright = u'2012, Adrian Sampson' version = '1.3' release = '1.3.17' pygments_style ...
# -*- coding: utf-8 -*- AUTHOR = u'Adrian Sampson' # General configuration extensions = ['sphinx.ext.autodoc', 'sphinx.ext.extlinks'] exclude_patterns = ['_build'] source_suffix = '.rst' master_doc = 'index' project = u'beets' copyright = u'2016, Adrian Sampson' version = '1.3' release = '1.3.17' pygments_style ...
<commit_before># -*- coding: utf-8 -*- AUTHOR = u'Adrian Sampson' # General configuration extensions = ['sphinx.ext.autodoc', 'sphinx.ext.extlinks'] exclude_patterns = ['_build'] source_suffix = '.rst' master_doc = 'index' project = u'beets' copyright = u'2012, Adrian Sampson' version = '1.3' release = '1.3.17' ...
# -*- coding: utf-8 -*- AUTHOR = u'Adrian Sampson' # General configuration extensions = ['sphinx.ext.autodoc', 'sphinx.ext.extlinks'] exclude_patterns = ['_build'] source_suffix = '.rst' master_doc = 'index' project = u'beets' copyright = u'2016, Adrian Sampson' version = '1.3' release = '1.3.17' pygments_style ...
# -*- coding: utf-8 -*- AUTHOR = u'Adrian Sampson' # General configuration extensions = ['sphinx.ext.autodoc', 'sphinx.ext.extlinks'] exclude_patterns = ['_build'] source_suffix = '.rst' master_doc = 'index' project = u'beets' copyright = u'2012, Adrian Sampson' version = '1.3' release = '1.3.17' pygments_style ...
<commit_before># -*- coding: utf-8 -*- AUTHOR = u'Adrian Sampson' # General configuration extensions = ['sphinx.ext.autodoc', 'sphinx.ext.extlinks'] exclude_patterns = ['_build'] source_suffix = '.rst' master_doc = 'index' project = u'beets' copyright = u'2012, Adrian Sampson' version = '1.3' release = '1.3.17' ...
21f74472d8e229d6e662eff39f90886f4357d8c3
been/source/markdown.py
been/source/markdown.py
from been.core import DirectorySource, source_registry class MarkdownDirectory(DirectorySource): kind = 'markdown' def process_event(self, event): lines = event['content'].splitlines() event['title'] = lines[0] event['content'] = "\n".join(lines[1:]) event['summary'] = event['co...
from been.core import DirectorySource, source_registry import re import unicodedata def slugify(value): value = unicodedata.normalize('NFKD', unicode(value)).encode('ascii', 'ignore') value = unicode(re.sub('[^\w\s-]', '', value).strip().lower()) return re.sub('[-\s]+', '-', value) class MarkdownDirectory...
Add slug generation to Markdown source.
Add slug generation to Markdown source.
Python
bsd-3-clause
chromakode/been
from been.core import DirectorySource, source_registry class MarkdownDirectory(DirectorySource): kind = 'markdown' def process_event(self, event): lines = event['content'].splitlines() event['title'] = lines[0] event['content'] = "\n".join(lines[1:]) event['summary'] = event['co...
from been.core import DirectorySource, source_registry import re import unicodedata def slugify(value): value = unicodedata.normalize('NFKD', unicode(value)).encode('ascii', 'ignore') value = unicode(re.sub('[^\w\s-]', '', value).strip().lower()) return re.sub('[-\s]+', '-', value) class MarkdownDirectory...
<commit_before>from been.core import DirectorySource, source_registry class MarkdownDirectory(DirectorySource): kind = 'markdown' def process_event(self, event): lines = event['content'].splitlines() event['title'] = lines[0] event['content'] = "\n".join(lines[1:]) event['summar...
from been.core import DirectorySource, source_registry import re import unicodedata def slugify(value): value = unicodedata.normalize('NFKD', unicode(value)).encode('ascii', 'ignore') value = unicode(re.sub('[^\w\s-]', '', value).strip().lower()) return re.sub('[-\s]+', '-', value) class MarkdownDirectory...
from been.core import DirectorySource, source_registry class MarkdownDirectory(DirectorySource): kind = 'markdown' def process_event(self, event): lines = event['content'].splitlines() event['title'] = lines[0] event['content'] = "\n".join(lines[1:]) event['summary'] = event['co...
<commit_before>from been.core import DirectorySource, source_registry class MarkdownDirectory(DirectorySource): kind = 'markdown' def process_event(self, event): lines = event['content'].splitlines() event['title'] = lines[0] event['content'] = "\n".join(lines[1:]) event['summar...
54d55ada152338cc038a4249e03ee25c4739c68f
python/sum-of-multiples/sum_of_multiples.py
python/sum-of-multiples/sum_of_multiples.py
def sum_of_multiples(limit, factors): return sum(all_multiples(limit, factors)) def all_multiples(limit, factors): multiples = set() for factor in factors: multiples = multiples.union(get_multiples(limit, factor)) return multiples def get_multiples(limit, factor): if factor == 0: ...
def sum_of_multiples(limit, factors): return sum(all_multiples(limit, factors)) def all_multiples(limit, factors): multiples = set() for factor in factors: multiples = multiples.union(get_multiples(limit, factor)) return multiples def get_multiples(limit, factor): if factor == 0: ...
Refactor to use list comprehension
Refactor to use list comprehension
Python
mit
rootulp/exercism,rootulp/exercism,rootulp/exercism,rootulp/exercism,rootulp/exercism,rootulp/exercism,rootulp/exercism,rootulp/exercism
def sum_of_multiples(limit, factors): return sum(all_multiples(limit, factors)) def all_multiples(limit, factors): multiples = set() for factor in factors: multiples = multiples.union(get_multiples(limit, factor)) return multiples def get_multiples(limit, factor): if factor == 0: ...
def sum_of_multiples(limit, factors): return sum(all_multiples(limit, factors)) def all_multiples(limit, factors): multiples = set() for factor in factors: multiples = multiples.union(get_multiples(limit, factor)) return multiples def get_multiples(limit, factor): if factor == 0: ...
<commit_before>def sum_of_multiples(limit, factors): return sum(all_multiples(limit, factors)) def all_multiples(limit, factors): multiples = set() for factor in factors: multiples = multiples.union(get_multiples(limit, factor)) return multiples def get_multiples(limit, factor): if factor...
def sum_of_multiples(limit, factors): return sum(all_multiples(limit, factors)) def all_multiples(limit, factors): multiples = set() for factor in factors: multiples = multiples.union(get_multiples(limit, factor)) return multiples def get_multiples(limit, factor): if factor == 0: ...
def sum_of_multiples(limit, factors): return sum(all_multiples(limit, factors)) def all_multiples(limit, factors): multiples = set() for factor in factors: multiples = multiples.union(get_multiples(limit, factor)) return multiples def get_multiples(limit, factor): if factor == 0: ...
<commit_before>def sum_of_multiples(limit, factors): return sum(all_multiples(limit, factors)) def all_multiples(limit, factors): multiples = set() for factor in factors: multiples = multiples.union(get_multiples(limit, factor)) return multiples def get_multiples(limit, factor): if factor...
4ca388ca6ef21d8e93de71e783ea5175a223980e
seleniumbase/console_scripts/rich_helper.py
seleniumbase/console_scripts/rich_helper.py
from rich.console import Console from rich.markdown import Markdown from rich.syntax import Syntax def process_syntax(code, lang, theme, line_numbers, code_width, word_wrap): syntax = Syntax( code, lang, theme=theme, line_numbers=line_numbers, code_width=code_width, ...
from rich.console import Console from rich.markdown import Markdown from rich.syntax import Syntax def process_syntax(code, lang, theme, line_numbers, code_width, word_wrap): syntax = Syntax( code, lang, theme=theme, line_numbers=line_numbers, code_width=code_width, ...
Update double-width emoji list to improve "sbase print FILE"
Update double-width emoji list to improve "sbase print FILE"
Python
mit
seleniumbase/SeleniumBase,seleniumbase/SeleniumBase,mdmintz/SeleniumBase,seleniumbase/SeleniumBase,mdmintz/SeleniumBase,mdmintz/SeleniumBase,mdmintz/SeleniumBase,seleniumbase/SeleniumBase
from rich.console import Console from rich.markdown import Markdown from rich.syntax import Syntax def process_syntax(code, lang, theme, line_numbers, code_width, word_wrap): syntax = Syntax( code, lang, theme=theme, line_numbers=line_numbers, code_width=code_width, ...
from rich.console import Console from rich.markdown import Markdown from rich.syntax import Syntax def process_syntax(code, lang, theme, line_numbers, code_width, word_wrap): syntax = Syntax( code, lang, theme=theme, line_numbers=line_numbers, code_width=code_width, ...
<commit_before>from rich.console import Console from rich.markdown import Markdown from rich.syntax import Syntax def process_syntax(code, lang, theme, line_numbers, code_width, word_wrap): syntax = Syntax( code, lang, theme=theme, line_numbers=line_numbers, code_width=code...
from rich.console import Console from rich.markdown import Markdown from rich.syntax import Syntax def process_syntax(code, lang, theme, line_numbers, code_width, word_wrap): syntax = Syntax( code, lang, theme=theme, line_numbers=line_numbers, code_width=code_width, ...
from rich.console import Console from rich.markdown import Markdown from rich.syntax import Syntax def process_syntax(code, lang, theme, line_numbers, code_width, word_wrap): syntax = Syntax( code, lang, theme=theme, line_numbers=line_numbers, code_width=code_width, ...
<commit_before>from rich.console import Console from rich.markdown import Markdown from rich.syntax import Syntax def process_syntax(code, lang, theme, line_numbers, code_width, word_wrap): syntax = Syntax( code, lang, theme=theme, line_numbers=line_numbers, code_width=code...
8de4fc98785f130c9b0fdb7d7f022aa2b0c4f389
uchicagohvz/game/middleware.py
uchicagohvz/game/middleware.py
from django.core.urlresolvers import resolve, reverse, Resolver404 from django.http import HttpResponseRedirect from django.utils import timezone from datetime import datetime class Feb262015Middleware(object): self.target_url = 'feb-26-2015-charlie-hebdo' def process_request(self, request): try: rm = resolve(r...
from django.core.urlresolvers import resolve, reverse, Resolver404 from django.http import HttpResponseRedirect from django.utils import timezone from datetime import datetime class Feb262015Middleware(object): target_url = 'feb-26-2015-charlie-hebdo' def process_request(self, request): try: rm = resolve(requ...
Remove erroneous reference to self
Remove erroneous reference to self
Python
mit
kz26/uchicago-hvz,kz26/uchicago-hvz,kz26/uchicago-hvz
from django.core.urlresolvers import resolve, reverse, Resolver404 from django.http import HttpResponseRedirect from django.utils import timezone from datetime import datetime class Feb262015Middleware(object): self.target_url = 'feb-26-2015-charlie-hebdo' def process_request(self, request): try: rm = resolve(r...
from django.core.urlresolvers import resolve, reverse, Resolver404 from django.http import HttpResponseRedirect from django.utils import timezone from datetime import datetime class Feb262015Middleware(object): target_url = 'feb-26-2015-charlie-hebdo' def process_request(self, request): try: rm = resolve(requ...
<commit_before>from django.core.urlresolvers import resolve, reverse, Resolver404 from django.http import HttpResponseRedirect from django.utils import timezone from datetime import datetime class Feb262015Middleware(object): self.target_url = 'feb-26-2015-charlie-hebdo' def process_request(self, request): try: ...
from django.core.urlresolvers import resolve, reverse, Resolver404 from django.http import HttpResponseRedirect from django.utils import timezone from datetime import datetime class Feb262015Middleware(object): target_url = 'feb-26-2015-charlie-hebdo' def process_request(self, request): try: rm = resolve(requ...
from django.core.urlresolvers import resolve, reverse, Resolver404 from django.http import HttpResponseRedirect from django.utils import timezone from datetime import datetime class Feb262015Middleware(object): self.target_url = 'feb-26-2015-charlie-hebdo' def process_request(self, request): try: rm = resolve(r...
<commit_before>from django.core.urlresolvers import resolve, reverse, Resolver404 from django.http import HttpResponseRedirect from django.utils import timezone from datetime import datetime class Feb262015Middleware(object): self.target_url = 'feb-26-2015-charlie-hebdo' def process_request(self, request): try: ...
195138143ed9cb374175710369b2a77089cac593
px/px_pager.py
px/px_pager.py
import os import sys import threading import subprocess from . import px_processinfo if sys.version_info.major >= 3: # For mypy PEP-484 static typing validation from . import px_process # NOQA from typing import List # NOQA def _pump_info_to_fd(fileno, process, processes): try: px_process...
import os import sys import threading import subprocess from . import px_processinfo if sys.version_info.major >= 3: # For mypy PEP-484 static typing validation from . import px_process # NOQA from typing import List # NOQA def _pump_info_to_fd(fileno, process, processes): # type: (int, px_proces...
Move pager selection into its own function
Move pager selection into its own function
Python
mit
walles/px,walles/px
import os import sys import threading import subprocess from . import px_processinfo if sys.version_info.major >= 3: # For mypy PEP-484 static typing validation from . import px_process # NOQA from typing import List # NOQA def _pump_info_to_fd(fileno, process, processes): try: px_process...
import os import sys import threading import subprocess from . import px_processinfo if sys.version_info.major >= 3: # For mypy PEP-484 static typing validation from . import px_process # NOQA from typing import List # NOQA def _pump_info_to_fd(fileno, process, processes): # type: (int, px_proces...
<commit_before>import os import sys import threading import subprocess from . import px_processinfo if sys.version_info.major >= 3: # For mypy PEP-484 static typing validation from . import px_process # NOQA from typing import List # NOQA def _pump_info_to_fd(fileno, process, processes): try: ...
import os import sys import threading import subprocess from . import px_processinfo if sys.version_info.major >= 3: # For mypy PEP-484 static typing validation from . import px_process # NOQA from typing import List # NOQA def _pump_info_to_fd(fileno, process, processes): # type: (int, px_proces...
import os import sys import threading import subprocess from . import px_processinfo if sys.version_info.major >= 3: # For mypy PEP-484 static typing validation from . import px_process # NOQA from typing import List # NOQA def _pump_info_to_fd(fileno, process, processes): try: px_process...
<commit_before>import os import sys import threading import subprocess from . import px_processinfo if sys.version_info.major >= 3: # For mypy PEP-484 static typing validation from . import px_process # NOQA from typing import List # NOQA def _pump_info_to_fd(fileno, process, processes): try: ...
63fbbd36bc9123fc8fe9ed41481dd36373959549
Helper/Helper/Helper.py
Helper/Helper/Helper.py
def main(): print ("Hello world!") if __name__ == '__main__': main()
def main(): try: fileName = "MengZi_Traditional.md" filePath = "../../source/" + fileName with open(filePath, 'r') as file: for line in file: print line except IOError: print ("The file (" + filePath + ") does not exist.") if __name__ == '__main__': ...
Read a file from Python
Read a file from Python
Python
mit
fan-jiang/Dujing
def main(): print ("Hello world!") if __name__ == '__main__': main()Read a file from Python
def main(): try: fileName = "MengZi_Traditional.md" filePath = "../../source/" + fileName with open(filePath, 'r') as file: for line in file: print line except IOError: print ("The file (" + filePath + ") does not exist.") if __name__ == '__main__': ...
<commit_before>def main(): print ("Hello world!") if __name__ == '__main__': main()<commit_msg>Read a file from Python<commit_after>
def main(): try: fileName = "MengZi_Traditional.md" filePath = "../../source/" + fileName with open(filePath, 'r') as file: for line in file: print line except IOError: print ("The file (" + filePath + ") does not exist.") if __name__ == '__main__': ...
def main(): print ("Hello world!") if __name__ == '__main__': main()Read a file from Pythondef main(): try: fileName = "MengZi_Traditional.md" filePath = "../../source/" + fileName with open(filePath, 'r') as file: for line in file: print line except ...
<commit_before>def main(): print ("Hello world!") if __name__ == '__main__': main()<commit_msg>Read a file from Python<commit_after>def main(): try: fileName = "MengZi_Traditional.md" filePath = "../../source/" + fileName with open(filePath, 'r') as file: for line in fil...
eac89e401d64079f4a3ef05ce7078cbefea271df
tests/system/shared/mainwin.py
tests/system/shared/mainwin.py
def invokeMenuItem(menu, item): menuObject = waitForObjectItem("{type='QMenuBar' visible='true'}", menu) activateItem(menuObject) activateItem(waitForObjectItem(menuObject, item)) def openQmakeProject(projectPath): invokeMenuItem("File", "Open File or Project...") waitForObject("{name='QFileDialog...
def invokeMenuItem(menu, item): menuObject = waitForObjectItem("{type='QMenuBar' visible='true'}", menu) activateItem(menuObject) activateItem(waitForObjectItem(menuObject, item)) def openQmakeProject(projectPath): invokeMenuItem("File", "Open File or Project...") waitForObject("{name='QFileDialog...
Fix openQmakeProject to match new combo value.
Fix openQmakeProject to match new combo value. Change-Id: Ice0050bf1bb7af59eb57c1e9218d96b3114f4c08 Reviewed-on: http://codereview.qt.nokia.com/4129 Reviewed-by: Qt Sanity Bot <5581206bb7e0307f0d99eb71898ae6b694149ca5@ovi.com> Reviewed-by: Christian Stenger <accbb51712d7b9c4fb108439d01e716148e5f9e6@nokia.com>
Python
lgpl-2.1
omniacreator/qtcreator,xianian/qt-creator,bakaiadam/collaborative_qt_creator,amyvmiwei/qt-creator,KDAB/KDAB-Creator,maui-packages/qt-creator,KDE/android-qt-creator,xianian/qt-creator,colede/qtcreator,darksylinc/qt-creator,Distrotech/qtcreator,azat/qtcreator,xianian/qt-creator,malikcjm/qtcreator,kuba1/qtcreator,kuba1/qt...
def invokeMenuItem(menu, item): menuObject = waitForObjectItem("{type='QMenuBar' visible='true'}", menu) activateItem(menuObject) activateItem(waitForObjectItem(menuObject, item)) def openQmakeProject(projectPath): invokeMenuItem("File", "Open File or Project...") waitForObject("{name='QFileDialog...
def invokeMenuItem(menu, item): menuObject = waitForObjectItem("{type='QMenuBar' visible='true'}", menu) activateItem(menuObject) activateItem(waitForObjectItem(menuObject, item)) def openQmakeProject(projectPath): invokeMenuItem("File", "Open File or Project...") waitForObject("{name='QFileDialog...
<commit_before> def invokeMenuItem(menu, item): menuObject = waitForObjectItem("{type='QMenuBar' visible='true'}", menu) activateItem(menuObject) activateItem(waitForObjectItem(menuObject, item)) def openQmakeProject(projectPath): invokeMenuItem("File", "Open File or Project...") waitForObject("{na...
def invokeMenuItem(menu, item): menuObject = waitForObjectItem("{type='QMenuBar' visible='true'}", menu) activateItem(menuObject) activateItem(waitForObjectItem(menuObject, item)) def openQmakeProject(projectPath): invokeMenuItem("File", "Open File or Project...") waitForObject("{name='QFileDialog...
def invokeMenuItem(menu, item): menuObject = waitForObjectItem("{type='QMenuBar' visible='true'}", menu) activateItem(menuObject) activateItem(waitForObjectItem(menuObject, item)) def openQmakeProject(projectPath): invokeMenuItem("File", "Open File or Project...") waitForObject("{name='QFileDialog...
<commit_before> def invokeMenuItem(menu, item): menuObject = waitForObjectItem("{type='QMenuBar' visible='true'}", menu) activateItem(menuObject) activateItem(waitForObjectItem(menuObject, item)) def openQmakeProject(projectPath): invokeMenuItem("File", "Open File or Project...") waitForObject("{na...
07bec7db879aee92316570770316857417636207
addons/hr_payroll_account/wizard/hr_payroll_payslips_by_employees.py
addons/hr_payroll_account/wizard/hr_payroll_payslips_by_employees.py
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models class HrPayslipEmployees(models.TransientModel): _inherit = 'hr.payslip.employees' @api.multi def compute_sheet(self): journal_id = False if self.env.context.get...
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models class HrPayslipEmployees(models.TransientModel): _inherit = 'hr.payslip.employees' @api.multi def compute_sheet(self): if self.env.context.get('active_id'): ...
Remove journal_id: False in context
[FIX] hr_payroll_account: Remove journal_id: False in context If the wizard to generate payslip was launched without an ´active_id´ in the context. A ´journal_id´ entry was set to False in the context later leading to a crash at payslip creation. The crash happens because, at creation time, the journal_id of a ´hr.pay...
Python
agpl-3.0
ygol/odoo,ygol/odoo,ygol/odoo,ygol/odoo,ygol/odoo,ygol/odoo,ygol/odoo
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models class HrPayslipEmployees(models.TransientModel): _inherit = 'hr.payslip.employees' @api.multi def compute_sheet(self): journal_id = False if self.env.context.get...
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models class HrPayslipEmployees(models.TransientModel): _inherit = 'hr.payslip.employees' @api.multi def compute_sheet(self): if self.env.context.get('active_id'): ...
<commit_before># -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models class HrPayslipEmployees(models.TransientModel): _inherit = 'hr.payslip.employees' @api.multi def compute_sheet(self): journal_id = False if self....
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models class HrPayslipEmployees(models.TransientModel): _inherit = 'hr.payslip.employees' @api.multi def compute_sheet(self): if self.env.context.get('active_id'): ...
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models class HrPayslipEmployees(models.TransientModel): _inherit = 'hr.payslip.employees' @api.multi def compute_sheet(self): journal_id = False if self.env.context.get...
<commit_before># -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models class HrPayslipEmployees(models.TransientModel): _inherit = 'hr.payslip.employees' @api.multi def compute_sheet(self): journal_id = False if self....
6487c04c85f890a8d767216efac24bf42fb9e387
spare5/client.py
spare5/client.py
import requests from .resources.batches import Batches from .resources.jobs import Jobs DEFAULT_API_ROOT = 'http://app.spare5.com/partner/v2' class Spare5Client(object): def __init__(self, username, token, api_root=DEFAULT_API_ROOT): super(Spare5Client, self).__init__() self.api_root = api_root...
import requests from .resources.batches import Batches from .resources.jobs import Jobs DEFAULT_API_ROOT = 'http://app.spare5.com/partner/v2' class Spare5Client(object): def __init__(self, username, token, api_root=DEFAULT_API_ROOT): super(Spare5Client, self).__init__() self.api_root = api_root...
Update to specify content-type header
Update to specify content-type header
Python
mit
roverdotcom/spare5-python
import requests from .resources.batches import Batches from .resources.jobs import Jobs DEFAULT_API_ROOT = 'http://app.spare5.com/partner/v2' class Spare5Client(object): def __init__(self, username, token, api_root=DEFAULT_API_ROOT): super(Spare5Client, self).__init__() self.api_root = api_root...
import requests from .resources.batches import Batches from .resources.jobs import Jobs DEFAULT_API_ROOT = 'http://app.spare5.com/partner/v2' class Spare5Client(object): def __init__(self, username, token, api_root=DEFAULT_API_ROOT): super(Spare5Client, self).__init__() self.api_root = api_root...
<commit_before>import requests from .resources.batches import Batches from .resources.jobs import Jobs DEFAULT_API_ROOT = 'http://app.spare5.com/partner/v2' class Spare5Client(object): def __init__(self, username, token, api_root=DEFAULT_API_ROOT): super(Spare5Client, self).__init__() self.api_...
import requests from .resources.batches import Batches from .resources.jobs import Jobs DEFAULT_API_ROOT = 'http://app.spare5.com/partner/v2' class Spare5Client(object): def __init__(self, username, token, api_root=DEFAULT_API_ROOT): super(Spare5Client, self).__init__() self.api_root = api_root...
import requests from .resources.batches import Batches from .resources.jobs import Jobs DEFAULT_API_ROOT = 'http://app.spare5.com/partner/v2' class Spare5Client(object): def __init__(self, username, token, api_root=DEFAULT_API_ROOT): super(Spare5Client, self).__init__() self.api_root = api_root...
<commit_before>import requests from .resources.batches import Batches from .resources.jobs import Jobs DEFAULT_API_ROOT = 'http://app.spare5.com/partner/v2' class Spare5Client(object): def __init__(self, username, token, api_root=DEFAULT_API_ROOT): super(Spare5Client, self).__init__() self.api_...
3d5093b46763acca9e3b3309073f73a7ca8daf73
src/clients/lib/python/xmmsclient/consts.py
src/clients/lib/python/xmmsclient/consts.py
from xmmsapi import VALUE_TYPE_NONE from xmmsapi import VALUE_TYPE_ERROR from xmmsapi import VALUE_TYPE_UINT32 from xmmsapi import VALUE_TYPE_INT32 from xmmsapi import VALUE_TYPE_STRING from xmmsapi import VALUE_TYPE_COLL from xmmsapi import VALUE_TYPE_BIN from xmmsapi import VALUE_TYPE_LIST from xmmsapi import VALUE_...
from xmmsapi import VALUE_TYPE_NONE from xmmsapi import VALUE_TYPE_ERROR from xmmsapi import VALUE_TYPE_INT32 from xmmsapi import VALUE_TYPE_STRING from xmmsapi import VALUE_TYPE_COLL from xmmsapi import VALUE_TYPE_BIN from xmmsapi import VALUE_TYPE_LIST from xmmsapi import VALUE_TYPE_DICT from xmmsapi import PLAYBACK...
Remove import of nonexistant UINT32 type in python bindings
BUG(2151): Remove import of nonexistant UINT32 type in python bindings
Python
lgpl-2.1
mantaraya36/xmms2-mantaraya36,theeternalsw0rd/xmms2,oneman/xmms2-oneman-old,mantaraya36/xmms2-mantaraya36,xmms2/xmms2-stable,theefer/xmms2,theeternalsw0rd/xmms2,six600110/xmms2,chrippa/xmms2,oneman/xmms2-oneman,chrippa/xmms2,xmms2/xmms2-stable,xmms2/xmms2-stable,theeternalsw0rd/xmms2,mantaraya36/xmms2-mantaraya36,theef...
from xmmsapi import VALUE_TYPE_NONE from xmmsapi import VALUE_TYPE_ERROR from xmmsapi import VALUE_TYPE_UINT32 from xmmsapi import VALUE_TYPE_INT32 from xmmsapi import VALUE_TYPE_STRING from xmmsapi import VALUE_TYPE_COLL from xmmsapi import VALUE_TYPE_BIN from xmmsapi import VALUE_TYPE_LIST from xmmsapi import VALUE_...
from xmmsapi import VALUE_TYPE_NONE from xmmsapi import VALUE_TYPE_ERROR from xmmsapi import VALUE_TYPE_INT32 from xmmsapi import VALUE_TYPE_STRING from xmmsapi import VALUE_TYPE_COLL from xmmsapi import VALUE_TYPE_BIN from xmmsapi import VALUE_TYPE_LIST from xmmsapi import VALUE_TYPE_DICT from xmmsapi import PLAYBACK...
<commit_before> from xmmsapi import VALUE_TYPE_NONE from xmmsapi import VALUE_TYPE_ERROR from xmmsapi import VALUE_TYPE_UINT32 from xmmsapi import VALUE_TYPE_INT32 from xmmsapi import VALUE_TYPE_STRING from xmmsapi import VALUE_TYPE_COLL from xmmsapi import VALUE_TYPE_BIN from xmmsapi import VALUE_TYPE_LIST from xmmsap...
from xmmsapi import VALUE_TYPE_NONE from xmmsapi import VALUE_TYPE_ERROR from xmmsapi import VALUE_TYPE_INT32 from xmmsapi import VALUE_TYPE_STRING from xmmsapi import VALUE_TYPE_COLL from xmmsapi import VALUE_TYPE_BIN from xmmsapi import VALUE_TYPE_LIST from xmmsapi import VALUE_TYPE_DICT from xmmsapi import PLAYBACK...
from xmmsapi import VALUE_TYPE_NONE from xmmsapi import VALUE_TYPE_ERROR from xmmsapi import VALUE_TYPE_UINT32 from xmmsapi import VALUE_TYPE_INT32 from xmmsapi import VALUE_TYPE_STRING from xmmsapi import VALUE_TYPE_COLL from xmmsapi import VALUE_TYPE_BIN from xmmsapi import VALUE_TYPE_LIST from xmmsapi import VALUE_...
<commit_before> from xmmsapi import VALUE_TYPE_NONE from xmmsapi import VALUE_TYPE_ERROR from xmmsapi import VALUE_TYPE_UINT32 from xmmsapi import VALUE_TYPE_INT32 from xmmsapi import VALUE_TYPE_STRING from xmmsapi import VALUE_TYPE_COLL from xmmsapi import VALUE_TYPE_BIN from xmmsapi import VALUE_TYPE_LIST from xmmsap...
99ab527550b91d17342ef3112e35f3cdb1be9867
src/binsearch.py
src/binsearch.py
""" Binary search """ def binary_search0(xs, x): """ Perform binary search for a specific value in the given sorted list :param xs: a sorted list :param x: the target value :return: an index if the value was found, or None if not """ lft, rgt = 0, len(xs) - 1 while lft <= rgt: ...
""" Binary search """ def binary_search0(xs, x): """ Perform binary search for a specific value in the given sorted list :param xs: a sorted list :param x: the target value :return: an index if the value was found, or None if not """ lft, rgt = 0, len(xs) - 1 while lft <= rgt: ...
Fix the "no else after return" lint
Fix the "no else after return" lint
Python
mit
all3fox/algos-py
""" Binary search """ def binary_search0(xs, x): """ Perform binary search for a specific value in the given sorted list :param xs: a sorted list :param x: the target value :return: an index if the value was found, or None if not """ lft, rgt = 0, len(xs) - 1 while lft <= rgt: ...
""" Binary search """ def binary_search0(xs, x): """ Perform binary search for a specific value in the given sorted list :param xs: a sorted list :param x: the target value :return: an index if the value was found, or None if not """ lft, rgt = 0, len(xs) - 1 while lft <= rgt: ...
<commit_before>""" Binary search """ def binary_search0(xs, x): """ Perform binary search for a specific value in the given sorted list :param xs: a sorted list :param x: the target value :return: an index if the value was found, or None if not """ lft, rgt = 0, len(xs) - 1 while lft...
""" Binary search """ def binary_search0(xs, x): """ Perform binary search for a specific value in the given sorted list :param xs: a sorted list :param x: the target value :return: an index if the value was found, or None if not """ lft, rgt = 0, len(xs) - 1 while lft <= rgt: ...
""" Binary search """ def binary_search0(xs, x): """ Perform binary search for a specific value in the given sorted list :param xs: a sorted list :param x: the target value :return: an index if the value was found, or None if not """ lft, rgt = 0, len(xs) - 1 while lft <= rgt: ...
<commit_before>""" Binary search """ def binary_search0(xs, x): """ Perform binary search for a specific value in the given sorted list :param xs: a sorted list :param x: the target value :return: an index if the value was found, or None if not """ lft, rgt = 0, len(xs) - 1 while lft...
f9926da62fc50c8602797cb12ac80264140c8028
mfh.py
mfh.py
import os import sys import time from multiprocessing import Process, Event import mfhclient import update from arguments import parse from settings import HONEYPORT def main(): update_event = Event() mfhclient_process = Process( args=(args, update_event,), name="mfhclient_process", t...
import os import sys import time from multiprocessing import Process, Event import mfhclient import update from arguments import parse from settings import HONEYPORT def main(): update_event = Event() mfhclient_process = Process( args=(args, update_event,), name="mfhclient_process", t...
Add condition to only launch updater if -u or --updater is specified
Add condition to only launch updater if -u or --updater is specified
Python
mit
Zloool/manyfaced-honeypot
import os import sys import time from multiprocessing import Process, Event import mfhclient import update from arguments import parse from settings import HONEYPORT def main(): update_event = Event() mfhclient_process = Process( args=(args, update_event,), name="mfhclient_process", t...
import os import sys import time from multiprocessing import Process, Event import mfhclient import update from arguments import parse from settings import HONEYPORT def main(): update_event = Event() mfhclient_process = Process( args=(args, update_event,), name="mfhclient_process", t...
<commit_before>import os import sys import time from multiprocessing import Process, Event import mfhclient import update from arguments import parse from settings import HONEYPORT def main(): update_event = Event() mfhclient_process = Process( args=(args, update_event,), name="mfhclient_proc...
import os import sys import time from multiprocessing import Process, Event import mfhclient import update from arguments import parse from settings import HONEYPORT def main(): update_event = Event() mfhclient_process = Process( args=(args, update_event,), name="mfhclient_process", t...
import os import sys import time from multiprocessing import Process, Event import mfhclient import update from arguments import parse from settings import HONEYPORT def main(): update_event = Event() mfhclient_process = Process( args=(args, update_event,), name="mfhclient_process", t...
<commit_before>import os import sys import time from multiprocessing import Process, Event import mfhclient import update from arguments import parse from settings import HONEYPORT def main(): update_event = Event() mfhclient_process = Process( args=(args, update_event,), name="mfhclient_proc...
8276c2548bd84c4318a2fff45625a08d2ab38fcd
tests/integration/shell/key.py
tests/integration/shell/key.py
# Import salt libs import integration class KeyTest(integration.CliCase): ''' Test salt-key script ''' def test_list(self): ''' test salt-key -L ''' data = self.run_key('-L') expect = [ '\x1b[1;31mUnaccepted Keys:\x1b[0m', '\x1b[1;...
# Import salt libs import integration class KeyTest(integration.ShellCase): ''' Test salt-key script ''' def test_list(self): ''' test salt-key -L ''' data = self.run_key('-L') expect = [ '\x1b[1;31mUnaccepted Keys:\x1b[0m', '\x1b[...
Change name of clicase to shellcase
Change name of clicase to shellcase
Python
apache-2.0
saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt
# Import salt libs import integration class KeyTest(integration.CliCase): ''' Test salt-key script ''' def test_list(self): ''' test salt-key -L ''' data = self.run_key('-L') expect = [ '\x1b[1;31mUnaccepted Keys:\x1b[0m', '\x1b[1;...
# Import salt libs import integration class KeyTest(integration.ShellCase): ''' Test salt-key script ''' def test_list(self): ''' test salt-key -L ''' data = self.run_key('-L') expect = [ '\x1b[1;31mUnaccepted Keys:\x1b[0m', '\x1b[...
<commit_before># Import salt libs import integration class KeyTest(integration.CliCase): ''' Test salt-key script ''' def test_list(self): ''' test salt-key -L ''' data = self.run_key('-L') expect = [ '\x1b[1;31mUnaccepted Keys:\x1b[0m', ...
# Import salt libs import integration class KeyTest(integration.ShellCase): ''' Test salt-key script ''' def test_list(self): ''' test salt-key -L ''' data = self.run_key('-L') expect = [ '\x1b[1;31mUnaccepted Keys:\x1b[0m', '\x1b[...
# Import salt libs import integration class KeyTest(integration.CliCase): ''' Test salt-key script ''' def test_list(self): ''' test salt-key -L ''' data = self.run_key('-L') expect = [ '\x1b[1;31mUnaccepted Keys:\x1b[0m', '\x1b[1;...
<commit_before># Import salt libs import integration class KeyTest(integration.CliCase): ''' Test salt-key script ''' def test_list(self): ''' test salt-key -L ''' data = self.run_key('-L') expect = [ '\x1b[1;31mUnaccepted Keys:\x1b[0m', ...
c99652b3992b1a4aa6f1ca44051cbfd66410505a
examples/generate-manager-file.py
examples/generate-manager-file.py
#!/usr/bin/python import sys import telepathy from telepathy.interfaces import CONN_MGR_INTERFACE if len(sys.argv) >= 2: manager_name = sys.argv[1] else: manager_name = "haze" service_name = "org.freedesktop.Telepathy.ConnectionManager.%s" % manager_name object_path = "/org/freedesktop/Telepathy/ConnectionMana...
#!/usr/bin/python import sys import telepathy from telepathy.interfaces import CONN_MGR_INTERFACE if len(sys.argv) >= 2: manager_name = sys.argv[1] else: manager_name = "haze" service_name = "org.freedesktop.Telepathy.ConnectionManager.%s" % manager_name object_path = "/org/freedesktop/Telepathy/ConnectionMana...
Sort the generated manager file by protocol name
Sort the generated manager file by protocol name 20070831193701-4210b-ede9decef118aba3937b0291512956927333dbe6.gz
Python
lgpl-2.1
detrout/telepathy-python,PabloCastellano/telepathy-python,max-posedon/telepathy-python,freedesktop-unofficial-mirror/telepathy__telepathy-python,detrout/telepathy-python,epage/telepathy-python,freedesktop-unofficial-mirror/telepathy__telepathy-python,epage/telepathy-python,PabloCastellano/telepathy-python,max-posedon/t...
#!/usr/bin/python import sys import telepathy from telepathy.interfaces import CONN_MGR_INTERFACE if len(sys.argv) >= 2: manager_name = sys.argv[1] else: manager_name = "haze" service_name = "org.freedesktop.Telepathy.ConnectionManager.%s" % manager_name object_path = "/org/freedesktop/Telepathy/ConnectionMana...
#!/usr/bin/python import sys import telepathy from telepathy.interfaces import CONN_MGR_INTERFACE if len(sys.argv) >= 2: manager_name = sys.argv[1] else: manager_name = "haze" service_name = "org.freedesktop.Telepathy.ConnectionManager.%s" % manager_name object_path = "/org/freedesktop/Telepathy/ConnectionMana...
<commit_before>#!/usr/bin/python import sys import telepathy from telepathy.interfaces import CONN_MGR_INTERFACE if len(sys.argv) >= 2: manager_name = sys.argv[1] else: manager_name = "haze" service_name = "org.freedesktop.Telepathy.ConnectionManager.%s" % manager_name object_path = "/org/freedesktop/Telepathy...
#!/usr/bin/python import sys import telepathy from telepathy.interfaces import CONN_MGR_INTERFACE if len(sys.argv) >= 2: manager_name = sys.argv[1] else: manager_name = "haze" service_name = "org.freedesktop.Telepathy.ConnectionManager.%s" % manager_name object_path = "/org/freedesktop/Telepathy/ConnectionMana...
#!/usr/bin/python import sys import telepathy from telepathy.interfaces import CONN_MGR_INTERFACE if len(sys.argv) >= 2: manager_name = sys.argv[1] else: manager_name = "haze" service_name = "org.freedesktop.Telepathy.ConnectionManager.%s" % manager_name object_path = "/org/freedesktop/Telepathy/ConnectionMana...
<commit_before>#!/usr/bin/python import sys import telepathy from telepathy.interfaces import CONN_MGR_INTERFACE if len(sys.argv) >= 2: manager_name = sys.argv[1] else: manager_name = "haze" service_name = "org.freedesktop.Telepathy.ConnectionManager.%s" % manager_name object_path = "/org/freedesktop/Telepathy...
967b8cd4d11e8619a8da2b6f9935846559df7347
bluesky/callbacks/__init__.py
bluesky/callbacks/__init__.py
from .core import (CallbackBase, CallbackCounter, print_metadata, collector, LiveMesh, LivePlot, LiveRaster, LiveTable, CollectThenCompute, _get_obj_fields)
from .core import (CallbackBase, CallbackCounter, print_metadata, collector, LiveMesh, LivePlot, LiveRaster, LiveTable, CollectThenCompute, LiveSpecFile, _get_obj_fields)
Add LiveSpecFile to callbacks API.
API: Add LiveSpecFile to callbacks API.
Python
bsd-3-clause
ericdill/bluesky,ericdill/bluesky
from .core import (CallbackBase, CallbackCounter, print_metadata, collector, LiveMesh, LivePlot, LiveRaster, LiveTable, CollectThenCompute, _get_obj_fields) API: Add LiveSpecFile to callbacks API.
from .core import (CallbackBase, CallbackCounter, print_metadata, collector, LiveMesh, LivePlot, LiveRaster, LiveTable, CollectThenCompute, LiveSpecFile, _get_obj_fields)
<commit_before>from .core import (CallbackBase, CallbackCounter, print_metadata, collector, LiveMesh, LivePlot, LiveRaster, LiveTable, CollectThenCompute, _get_obj_fields) <commit_msg>API: Add LiveSpecFile to callbacks API.<commit_after>
from .core import (CallbackBase, CallbackCounter, print_metadata, collector, LiveMesh, LivePlot, LiveRaster, LiveTable, CollectThenCompute, LiveSpecFile, _get_obj_fields)
from .core import (CallbackBase, CallbackCounter, print_metadata, collector, LiveMesh, LivePlot, LiveRaster, LiveTable, CollectThenCompute, _get_obj_fields) API: Add LiveSpecFile to callbacks API.from .core import (CallbackBase, CallbackCounter, print_metadata, collector, ...
<commit_before>from .core import (CallbackBase, CallbackCounter, print_metadata, collector, LiveMesh, LivePlot, LiveRaster, LiveTable, CollectThenCompute, _get_obj_fields) <commit_msg>API: Add LiveSpecFile to callbacks API.<commit_after>from .core import (CallbackBase, CallbackCoun...
788f9a920fdafe6d341432f46295bb737c57cccd
moteconnection/serial_ports.py
moteconnection/serial_ports.py
__author__ = "Raido Pahtma" __license__ = "MIT" import glob import sys import os def _list_windows_serial_ports(): raise NotImplementedError("windows support") def _list_unix_serial_ports(additional=None): ports = [] port_list = glob.glob('/dev/ttyUSB*') + glob.glob('/dev/ttyAMA*') + glob.glob('/dev/t...
__author__ = "Raido Pahtma" __license__ = "MIT" import re import os import sys import glob import serial def _list_windows_serial_ports(): ports = [] for i in range(256): try: s = serial.Serial(i) ports.append(s.portstr) s.close() except serial.SerialExcep...
Support for Windows serial ports.
Support for Windows serial ports.
Python
mit
proactivity-lab/python-moteconnection,proactivity-lab/py-moteconnection
__author__ = "Raido Pahtma" __license__ = "MIT" import glob import sys import os def _list_windows_serial_ports(): raise NotImplementedError("windows support") def _list_unix_serial_ports(additional=None): ports = [] port_list = glob.glob('/dev/ttyUSB*') + glob.glob('/dev/ttyAMA*') + glob.glob('/dev/t...
__author__ = "Raido Pahtma" __license__ = "MIT" import re import os import sys import glob import serial def _list_windows_serial_ports(): ports = [] for i in range(256): try: s = serial.Serial(i) ports.append(s.portstr) s.close() except serial.SerialExcep...
<commit_before>__author__ = "Raido Pahtma" __license__ = "MIT" import glob import sys import os def _list_windows_serial_ports(): raise NotImplementedError("windows support") def _list_unix_serial_ports(additional=None): ports = [] port_list = glob.glob('/dev/ttyUSB*') + glob.glob('/dev/ttyAMA*') + gl...
__author__ = "Raido Pahtma" __license__ = "MIT" import re import os import sys import glob import serial def _list_windows_serial_ports(): ports = [] for i in range(256): try: s = serial.Serial(i) ports.append(s.portstr) s.close() except serial.SerialExcep...
__author__ = "Raido Pahtma" __license__ = "MIT" import glob import sys import os def _list_windows_serial_ports(): raise NotImplementedError("windows support") def _list_unix_serial_ports(additional=None): ports = [] port_list = glob.glob('/dev/ttyUSB*') + glob.glob('/dev/ttyAMA*') + glob.glob('/dev/t...
<commit_before>__author__ = "Raido Pahtma" __license__ = "MIT" import glob import sys import os def _list_windows_serial_ports(): raise NotImplementedError("windows support") def _list_unix_serial_ports(additional=None): ports = [] port_list = glob.glob('/dev/ttyUSB*') + glob.glob('/dev/ttyAMA*') + gl...
8fb958821cd58016c56b5eee2c6531827e4c57b8
modules/juliet_module.py
modules/juliet_module.py
class module: mod_name = "unnamed_module"; mod_id = -1; mod_rect = None; mod_surface = None; mod_attribs = []; def __init__(self, _id): print("Initializing generic module (This shouldn't happen...)");
from pygame import Rect class module: mod_name = "unnamed_module" mod_id = -1 mod_size = Rect(0,0,0,0) def __init__(self, _id = -1): print("Initializing generic module (This shouldn't happen...)") def draw(self, surf): "Takes a surface object and blits its data onto it" pr...
Change module class to use Rect for size and take a surface as an argument to draw()
Change module class to use Rect for size and take a surface as an argument to draw()
Python
bsd-2-clause
halfbro/juliet
class module: mod_name = "unnamed_module"; mod_id = -1; mod_rect = None; mod_surface = None; mod_attribs = []; def __init__(self, _id): print("Initializing generic module (This shouldn't happen...)"); Change module class to use Rect for size and take a surface as an argument to draw()
from pygame import Rect class module: mod_name = "unnamed_module" mod_id = -1 mod_size = Rect(0,0,0,0) def __init__(self, _id = -1): print("Initializing generic module (This shouldn't happen...)") def draw(self, surf): "Takes a surface object and blits its data onto it" pr...
<commit_before>class module: mod_name = "unnamed_module"; mod_id = -1; mod_rect = None; mod_surface = None; mod_attribs = []; def __init__(self, _id): print("Initializing generic module (This shouldn't happen...)"); <commit_msg>Change module class to use Rect for size and take a surfa...
from pygame import Rect class module: mod_name = "unnamed_module" mod_id = -1 mod_size = Rect(0,0,0,0) def __init__(self, _id = -1): print("Initializing generic module (This shouldn't happen...)") def draw(self, surf): "Takes a surface object and blits its data onto it" pr...
class module: mod_name = "unnamed_module"; mod_id = -1; mod_rect = None; mod_surface = None; mod_attribs = []; def __init__(self, _id): print("Initializing generic module (This shouldn't happen...)"); Change module class to use Rect for size and take a surface as an argument to draw()...
<commit_before>class module: mod_name = "unnamed_module"; mod_id = -1; mod_rect = None; mod_surface = None; mod_attribs = []; def __init__(self, _id): print("Initializing generic module (This shouldn't happen...)"); <commit_msg>Change module class to use Rect for size and take a surfa...
56b84d3271ab2312a0bdbd27c6ee3ad60c139920
search/urls.py
search/urls.py
__author__ = 'Nick' from django.conf.urls import url from search import views urlpatterns = [ url(r'^$', views.index, name='index'), url(r'^query$', views.query, name='query') ]
__author__ = 'Nick' from django.conf.urls import url from search import views urlpatterns = [ url(r'^$', views.index, name='index'), url(r'^query/$', views.query, name='query') ]
Make sure django doesn't mangle route
Make sure django doesn't mangle route
Python
mit
nh0815/PySearch,nh0815/PySearch
__author__ = 'Nick' from django.conf.urls import url from search import views urlpatterns = [ url(r'^$', views.index, name='index'), url(r'^query$', views.query, name='query') ]Make sure django doesn't mangle route
__author__ = 'Nick' from django.conf.urls import url from search import views urlpatterns = [ url(r'^$', views.index, name='index'), url(r'^query/$', views.query, name='query') ]
<commit_before>__author__ = 'Nick' from django.conf.urls import url from search import views urlpatterns = [ url(r'^$', views.index, name='index'), url(r'^query$', views.query, name='query') ]<commit_msg>Make sure django doesn't mangle route<commit_after>
__author__ = 'Nick' from django.conf.urls import url from search import views urlpatterns = [ url(r'^$', views.index, name='index'), url(r'^query/$', views.query, name='query') ]
__author__ = 'Nick' from django.conf.urls import url from search import views urlpatterns = [ url(r'^$', views.index, name='index'), url(r'^query$', views.query, name='query') ]Make sure django doesn't mangle route__author__ = 'Nick' from django.conf.urls import url from search import views urlpatterns = [ url(r...
<commit_before>__author__ = 'Nick' from django.conf.urls import url from search import views urlpatterns = [ url(r'^$', views.index, name='index'), url(r'^query$', views.query, name='query') ]<commit_msg>Make sure django doesn't mangle route<commit_after>__author__ = 'Nick' from django.conf.urls import url from se...
c035ee8273b3582133c78353259de026ce81d0b5
app/assets.py
app/assets.py
from flask.ext.assets import Bundle app_css = Bundle( 'app.scss', filters='scss', output='styles/app.css' ) app_js = Bundle( 'app.js', filters='jsmin', output='scripts/app.js' ) vendor_css = Bundle( 'vendor/semantic.min.css', output='styles/vendor.css' ) vendor_js = Bundle( 'vend...
from flask.ext.assets import Bundle app_css = Bundle( '*.scss', filters='scss', output='styles/app.css' ) app_js = Bundle( 'app.js', filters='jsmin', output='scripts/app.js' ) vendor_css = Bundle( 'vendor/semantic.min.css', output='styles/vendor.css' ) vendor_js = Bundle( 'vendor...
Generalize scss bundle to track all scss files
Generalize scss bundle to track all scss files
Python
mit
hack4impact/flask-base,ColinHaley/Konsole,ColinHaley/Konsole,aharelick/netter-center,AsylumConnect/asylum-connect-catalog,AsylumConnect/asylum-connect-catalog,tobymccann/flask-base,AsylumConnect/asylum-connect-catalog,AsylumConnect/asylum-connect-catalog,hack4impact/flask-base,hack4impact/asylum-connect-catalog,tobymcc...
from flask.ext.assets import Bundle app_css = Bundle( 'app.scss', filters='scss', output='styles/app.css' ) app_js = Bundle( 'app.js', filters='jsmin', output='scripts/app.js' ) vendor_css = Bundle( 'vendor/semantic.min.css', output='styles/vendor.css' ) vendor_js = Bundle( 'vend...
from flask.ext.assets import Bundle app_css = Bundle( '*.scss', filters='scss', output='styles/app.css' ) app_js = Bundle( 'app.js', filters='jsmin', output='scripts/app.js' ) vendor_css = Bundle( 'vendor/semantic.min.css', output='styles/vendor.css' ) vendor_js = Bundle( 'vendor...
<commit_before>from flask.ext.assets import Bundle app_css = Bundle( 'app.scss', filters='scss', output='styles/app.css' ) app_js = Bundle( 'app.js', filters='jsmin', output='scripts/app.js' ) vendor_css = Bundle( 'vendor/semantic.min.css', output='styles/vendor.css' ) vendor_js = Bu...
from flask.ext.assets import Bundle app_css = Bundle( '*.scss', filters='scss', output='styles/app.css' ) app_js = Bundle( 'app.js', filters='jsmin', output='scripts/app.js' ) vendor_css = Bundle( 'vendor/semantic.min.css', output='styles/vendor.css' ) vendor_js = Bundle( 'vendor...
from flask.ext.assets import Bundle app_css = Bundle( 'app.scss', filters='scss', output='styles/app.css' ) app_js = Bundle( 'app.js', filters='jsmin', output='scripts/app.js' ) vendor_css = Bundle( 'vendor/semantic.min.css', output='styles/vendor.css' ) vendor_js = Bundle( 'vend...
<commit_before>from flask.ext.assets import Bundle app_css = Bundle( 'app.scss', filters='scss', output='styles/app.css' ) app_js = Bundle( 'app.js', filters='jsmin', output='scripts/app.js' ) vendor_css = Bundle( 'vendor/semantic.min.css', output='styles/vendor.css' ) vendor_js = Bu...
1cd5126c90c87df1bfe10434aa850913aed560b4
splice/default_settings.py
splice/default_settings.py
import os class DefaultConfig(object): """ Configuration suitable for use for development """ DEBUG = True APPLICATION_ROOT = None JSONIFY_PRETTYPRINT_REGULAR = True STATIC_ENABLED_ENVS = {"dev", "test"} ENVIRONMENT = "dev" SECRET_KEY = "moz-splice-development-key" TEMPLATE_...
import os class DefaultConfig(object): """ Configuration suitable for use for development """ DEBUG = True APPLICATION_ROOT = None JSONIFY_PRETTYPRINT_REGULAR = True STATIC_ENABLED_ENVS = {"dev", "test"} ENVIRONMENT = "dev" SECRET_KEY = "moz-splice-development-key" TEMPLATE_...
Revert "adding slot_index to impression_stats_daily"
Revert "adding slot_index to impression_stats_daily" This reverts commit 71202d2f9e2cafa5bf8ef9e0c6a355a8d65d5c7a.
Python
mpl-2.0
tkiethanom/splice,mostlygeek/splice,tkiethanom/splice,rlr/splice,rlr/splice,mozilla/splice,mostlygeek/splice,tkiethanom/splice,tkiethanom/splice,rlr/splice,mozilla/splice,mozilla/splice,ncloudioj/splice,oyiptong/splice,oyiptong/splice,ncloudioj/splice,oyiptong/splice,ncloudioj/splice,oyiptong/splice,mostlygeek/splice,m...
import os class DefaultConfig(object): """ Configuration suitable for use for development """ DEBUG = True APPLICATION_ROOT = None JSONIFY_PRETTYPRINT_REGULAR = True STATIC_ENABLED_ENVS = {"dev", "test"} ENVIRONMENT = "dev" SECRET_KEY = "moz-splice-development-key" TEMPLATE_...
import os class DefaultConfig(object): """ Configuration suitable for use for development """ DEBUG = True APPLICATION_ROOT = None JSONIFY_PRETTYPRINT_REGULAR = True STATIC_ENABLED_ENVS = {"dev", "test"} ENVIRONMENT = "dev" SECRET_KEY = "moz-splice-development-key" TEMPLATE_...
<commit_before>import os class DefaultConfig(object): """ Configuration suitable for use for development """ DEBUG = True APPLICATION_ROOT = None JSONIFY_PRETTYPRINT_REGULAR = True STATIC_ENABLED_ENVS = {"dev", "test"} ENVIRONMENT = "dev" SECRET_KEY = "moz-splice-development-key"...
import os class DefaultConfig(object): """ Configuration suitable for use for development """ DEBUG = True APPLICATION_ROOT = None JSONIFY_PRETTYPRINT_REGULAR = True STATIC_ENABLED_ENVS = {"dev", "test"} ENVIRONMENT = "dev" SECRET_KEY = "moz-splice-development-key" TEMPLATE_...
import os class DefaultConfig(object): """ Configuration suitable for use for development """ DEBUG = True APPLICATION_ROOT = None JSONIFY_PRETTYPRINT_REGULAR = True STATIC_ENABLED_ENVS = {"dev", "test"} ENVIRONMENT = "dev" SECRET_KEY = "moz-splice-development-key" TEMPLATE_...
<commit_before>import os class DefaultConfig(object): """ Configuration suitable for use for development """ DEBUG = True APPLICATION_ROOT = None JSONIFY_PRETTYPRINT_REGULAR = True STATIC_ENABLED_ENVS = {"dev", "test"} ENVIRONMENT = "dev" SECRET_KEY = "moz-splice-development-key"...
a5b750b9800b60242e72d9d066a46f98b8a0325e
test/test_recordings.py
test/test_recordings.py
import pytest import json class TestRecordings: def test_unprocessed_recording_doesnt_return_processed_jwt(self, helper): print("If a new user uploads a recording") bob = helper.given_new_user(self, "bob_limit") bobsGroup = helper.make_unique_group_name(self, "bobs_group") bob.crea...
import pytest import json class TestRecordings: def test_unprocessed_recording_doesnt_return_processed_jwt(self, helper): print("If a new user uploads a recording") bob = helper.given_new_user(self, "bob_limit") bobsGroup = helper.make_unique_group_name(self, "bobs_group") bob.crea...
Add test to make sure fileKey(s) aren't returned
Add test to make sure fileKey(s) aren't returned
Python
agpl-3.0
TheCacophonyProject/Full_Noise
import pytest import json class TestRecordings: def test_unprocessed_recording_doesnt_return_processed_jwt(self, helper): print("If a new user uploads a recording") bob = helper.given_new_user(self, "bob_limit") bobsGroup = helper.make_unique_group_name(self, "bobs_group") bob.crea...
import pytest import json class TestRecordings: def test_unprocessed_recording_doesnt_return_processed_jwt(self, helper): print("If a new user uploads a recording") bob = helper.given_new_user(self, "bob_limit") bobsGroup = helper.make_unique_group_name(self, "bobs_group") bob.crea...
<commit_before>import pytest import json class TestRecordings: def test_unprocessed_recording_doesnt_return_processed_jwt(self, helper): print("If a new user uploads a recording") bob = helper.given_new_user(self, "bob_limit") bobsGroup = helper.make_unique_group_name(self, "bobs_group") ...
import pytest import json class TestRecordings: def test_unprocessed_recording_doesnt_return_processed_jwt(self, helper): print("If a new user uploads a recording") bob = helper.given_new_user(self, "bob_limit") bobsGroup = helper.make_unique_group_name(self, "bobs_group") bob.crea...
import pytest import json class TestRecordings: def test_unprocessed_recording_doesnt_return_processed_jwt(self, helper): print("If a new user uploads a recording") bob = helper.given_new_user(self, "bob_limit") bobsGroup = helper.make_unique_group_name(self, "bobs_group") bob.crea...
<commit_before>import pytest import json class TestRecordings: def test_unprocessed_recording_doesnt_return_processed_jwt(self, helper): print("If a new user uploads a recording") bob = helper.given_new_user(self, "bob_limit") bobsGroup = helper.make_unique_group_name(self, "bobs_group") ...