id int64 0 458k | file_name stringlengths 4 119 | file_path stringlengths 14 227 | content stringlengths 24 9.96M | size int64 24 9.96M | language stringclasses 1
value | extension stringclasses 14
values | total_lines int64 1 219k | avg_line_length float64 2.52 4.63M | max_line_length int64 5 9.91M | alphanum_fraction float64 0 1 | repo_name stringlengths 7 101 | repo_stars int64 100 139k | repo_forks int64 0 26.4k | repo_open_issues int64 0 2.27k | repo_license stringclasses 12
values | repo_extraction_date stringclasses 433
values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
32,700 | factory.py | python-rope_rope/rope/base/oi/type_hinting/factory.py | from rope.base import utils
from rope.base.oi.type_hinting import interfaces
from rope.base.oi.type_hinting.providers import (
composite,
docstrings,
inheritance,
numpydocstrings,
pep0484_type_comments,
)
from rope.base.oi.type_hinting.resolvers import composite as composite_resolvers
from rope.base... | 2,728 | Python | .py | 72 | 29.388889 | 87 | 0.667549 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,701 | utils.py | python-rope_rope/rope/base/oi/type_hinting/utils.py | from __future__ import annotations
import logging
from typing import TYPE_CHECKING, Optional, Union
import rope.base.utils as base_utils
from rope.base import evaluate
from rope.base.exceptions import AttributeNotFoundError
from rope.base.pyobjects import PyClass, PyDefinedObject, PyFunction, PyObject
def get_super... | 5,394 | Python | .py | 133 | 31.609023 | 90 | 0.628817 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,702 | interfaces.py | python-rope_rope/rope/base/oi/type_hinting/interfaces.py | class ITypeHintingFactory:
def make_param_provider(self):
"""
:rtype: rope.base.oi.type_hinting.providers.interfaces.IParamProvider
"""
raise NotImplementedError
def make_return_provider(self):
"""
:rtype: rope.base.oi.type_hinting.providers.interfaces.IReturnPro... | 715 | Python | .py | 21 | 26.047619 | 82 | 0.657019 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,703 | evaluate.py | python-rope_rope/rope/base/oi/type_hinting/evaluate.py | # Based on super lightweight Simple Top-Down Parser from http://effbot.org/zone/simple-top-down-parsing.htm
# and https://bitbucket.org/emacsway/sqlbuilder/src/default/sqlbuilder/smartsql/contrib/evaluate.py
import re
from rope.base import utils as base_utils
from rope.base.oi.type_hinting import utils
class SymbolB... | 9,057 | Python | .py | 274 | 24.788321 | 107 | 0.572266 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,704 | numpydocstrings.py | python-rope_rope/rope/base/oi/type_hinting/providers/numpydocstrings.py | """
Some code extracted (or based on code) from:
https://github.com/davidhalter/jedi/blob/b489019f5bd5750051122b94cc767df47751ecb7/jedi/evaluate/docstrings.py
Thanks to @davidhalter for this utils under MIT License.
"""
import re
from rope.base.ast import literal_eval
from rope.base.oi.type_hinting.providers import d... | 1,420 | Python | .py | 34 | 33.529412 | 109 | 0.633721 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,705 | inheritance.py | python-rope_rope/rope/base/oi/type_hinting/providers/inheritance.py | from rope.base.oi.type_hinting import utils
from rope.base.oi.type_hinting.providers import interfaces
class ParamProvider(interfaces.IParamProvider):
def __init__(self, delegate):
"""
:type delegate: rope.base.oi.type_hinting.providers.interfaces.IParamProvider
"""
self._delegate ... | 2,116 | Python | .py | 54 | 30.092593 | 90 | 0.634681 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,706 | composite.py | python-rope_rope/rope/base/oi/type_hinting/providers/composite.py | from rope.base.oi.type_hinting.providers import interfaces
class ParamProvider(interfaces.IParamProvider):
def __init__(self, *delegates):
"""
:type delegates: list[rope.base.oi.type_hinting.providers.interfaces.IParamProvider]
"""
self._delegates = delegates
def __call__(self... | 1,856 | Python | .py | 47 | 30.468085 | 97 | 0.633333 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,707 | interfaces.py | python-rope_rope/rope/base/oi/type_hinting/providers/interfaces.py | class IParamProvider:
def __call__(self, pyfunc, param_name):
"""
:type pyfunc: rope.base.pyobjectsdef.PyFunction
:type param_name: str
:rtype: rope.base.pyobjects.PyDefinedObject | rope.base.pyobjects.PyObject or None
"""
raise NotImplementedError
class IReturnProv... | 1,055 | Python | .py | 30 | 28.166667 | 90 | 0.665683 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,708 | docstrings.py | python-rope_rope/rope/base/oi/type_hinting/providers/docstrings.py | """
Hinting the type using docstring of class/function.
It's an irreplaceable thing if you are using Dependency Injection with passive class:
http://www.martinfowler.com/articles/injection.html
Some code extracted (or based on code) from:
https://github.com/davidhalter/jedi/blob/b489019f5bd5750051122b94cc767df47751ec... | 6,165 | Python | .py | 149 | 33.328859 | 109 | 0.628973 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,709 | pep0484_type_comments.py | python-rope_rope/rope/base/oi/type_hinting/providers/pep0484_type_comments.py | import re
from rope.base.oi.type_hinting import utils
from rope.base.oi.type_hinting.providers import interfaces
class AssignmentProvider(interfaces.IAssignmentProvider):
def __init__(self, resolver):
"""
:type resolver: rope.base.oi.type_hinting.resolvers.interfaces.IResolver
"""
... | 1,525 | Python | .py | 33 | 37.454545 | 90 | 0.635445 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,710 | composite.py | python-rope_rope/rope/base/oi/type_hinting/resolvers/composite.py | from rope.base.oi.type_hinting.resolvers import interfaces
class Resolver(interfaces.IResolver):
def __init__(self, *delegates):
"""
:type delegates: list[rope.base.oi.type_hinting.resolvers.interfaces.IResolver]
"""
self._delegates = delegates
def __call__(self, hint, pyobjec... | 778 | Python | .py | 18 | 34.5 | 90 | 0.635403 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,711 | interfaces.py | python-rope_rope/rope/base/oi/type_hinting/resolvers/interfaces.py | class IResolver:
def __call__(self, hint, pyobject):
"""
:param hint: For example "List[int]" or "(Foo, Bar) -> Baz" or simple "Foo"
:type hint: str
:type pyobject: rope.base.pyobjects.PyDefinedObject | rope.base.pyobjects.PyObject
:rtype: rope.base.pyobjects.PyDefinedObject ... | 405 | Python | .py | 9 | 37.333333 | 90 | 0.64899 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,712 | types.py | python-rope_rope/rope/base/oi/type_hinting/resolvers/types.py | from rope.base.oi.type_hinting import evaluate
from rope.base.oi.type_hinting.resolvers import interfaces
class Resolver(interfaces.IResolver):
def __call__(self, hint, pyobject):
"""
:param hint: For example "List[int]" or "(Foo, Bar) -> Baz" or simple "Foo"
:type hint: str
:type ... | 609 | Python | .py | 14 | 35.785714 | 90 | 0.667791 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,713 | __main__.py | python-rope_rope/ropetest-package-fixtures/external_fixturepkg/src/external_fixturepkg/__main__.py | def main() -> None:
pass
if __name__ == '__main__':
main()
| 69 | Python | .py | 4 | 13.75 | 26 | 0.460317 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,714 | changestacktest.py | python-rope_rope/ropetest/contrib/changestacktest.py | import unittest
import rope.base.change
import rope.base.history
import rope.contrib.changestack
from ropetest import testutils
class ChangeStackTest(unittest.TestCase):
def setUp(self):
super().setUp()
self.project = testutils.sample_project()
def tearDown(self):
testutils.remove_pr... | 955 | Python | .tac | 25 | 31.4 | 66 | 0.676757 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,715 | changestack.py | python-rope_rope/rope/contrib/changestack.py | """For performing many refactorings as a single command
`changestack` module can be used to perform many refactorings on top
of each other as one bigger command. It can be used like::
stack = ChangeStack(project, 'my big command')
#..
stack.push(refactoring1.get_changes())
#..
stack.push(refactoring2.get_... | 1,350 | Python | .tac | 38 | 28.789474 | 68 | 0.663846 | python-rope/rope | 1,917 | 161 | 105 | LGPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,716 | setup.py | rhiever_TwitterFollowBot/setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
import subprocess
from setuptools.command import easy_install
def parse_requirements(filename):
return list(filter(lambda line: (line.strip())[0] != '#',
[line.strip() for line in open(filena... | 2,689 | Python | .py | 67 | 33.402985 | 86 | 0.635528 | rhiever/TwitterFollowBot | 1,303 | 448 | 67 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,717 | version.py | rhiever_TwitterFollowBot/version.py | # Do not edit this file, pipeline versioning is governed by git tags
__version__=v2.0.1 | 87 | Python | .py | 2 | 43 | 68 | 0.755814 | rhiever/TwitterFollowBot | 1,303 | 448 | 67 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,718 | __init__.py | rhiever_TwitterFollowBot/TwitterFollowBot/__init__.py | # -*- coding: utf-8 -*-
"""
Copyright 2016 Randal S. Olson
This file is part of the Twitter Bot library.
The Twitter Bot library is free software: you can redistribute it and/or
modify it under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, ... | 19,723 | Python | .py | 365 | 39.728767 | 122 | 0.57539 | rhiever/TwitterFollowBot | 1,303 | 448 | 67 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,719 | setup.py | hannes-brt_hebel/setup.py | from setuptools import setup
from hebel.version import version
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup( name='Hebel',
... | 1,575 | Python | .py | 44 | 27.068182 | 82 | 0.594506 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,720 | train_model.py | hannes-brt_hebel/train_model.py |
# Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribu... | 1,349 | Python | .py | 26 | 49 | 88 | 0.753435 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,721 | hebel_test.py | hannes-brt_hebel/hebel_test.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 7,704 | Python | .py | 153 | 37.72549 | 94 | 0.587483 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,722 | mnist_neural_net_deep_script.py | hannes-brt_hebel/examples/mnist_neural_net_deep_script.py | #!/usr/bin/env python
import hebel
from hebel.models import NeuralNet
from hebel.optimizers import SGD
from hebel.parameter_updaters import MomentumUpdate
from hebel.data_providers import MNISTDataProvider
from hebel.monitors import ProgressMonitor
from hebel.schedulers import exponential_scheduler, linear_scheduler_u... | 1,409 | Python | .py | 34 | 37.147059 | 85 | 0.711567 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,723 | neural_net_regression_example.py | hannes-brt_hebel/examples/neural_net_regression_example.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 2,093 | Python | .py | 42 | 44.595238 | 93 | 0.741761 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,724 | data_providers.py | hannes-brt_hebel/hebel/data_providers.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 12,651 | Python | .py | 279 | 36.383513 | 103 | 0.625092 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,725 | config.py | hannes-brt_hebel/hebel/config.py | # Copyright (c) 2008--2011, Theano Development Team, Hannes Bretschneider
# All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# ... | 12,623 | Python | .py | 316 | 32.458861 | 96 | 0.641403 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,726 | schedulers.py | hannes-brt_hebel/hebel/schedulers.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 2,258 | Python | .py | 56 | 33.660714 | 75 | 0.664684 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,727 | __init__.py | hannes-brt_hebel/hebel/__init__.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 4,931 | Python | .py | 116 | 35.094828 | 83 | 0.669622 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,728 | parameter_updaters.py | hannes-brt_hebel/hebel/parameter_updaters.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 3,771 | Python | .py | 76 | 39.934211 | 85 | 0.65459 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,729 | monitors.py | hannes-brt_hebel/hebel/monitors.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 8,798 | Python | .py | 199 | 33.914573 | 84 | 0.586465 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,730 | optimizers.py | hannes-brt_hebel/hebel/optimizers.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 7,757 | Python | .py | 164 | 33.786585 | 101 | 0.576505 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,731 | cross_validation.py | hannes-brt_hebel/hebel/cross_validation.py | from .utils.math import ceil_div
import numpy as np
import os
from hebel.optimizers import SGD
from hebel import memory_pool
class CrossValidation(object):
def __init__(self, config, data):
self.n_folds = config['n_folds']
self.n_data = config['n_data']
self.validation_share = config['vali... | 4,178 | Python | .py | 85 | 37.341176 | 109 | 0.605042 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,732 | logistic_regression.py | hannes-brt_hebel/hebel/models/logistic_regression.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 1,065 | Python | .py | 20 | 49.2 | 73 | 0.734812 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,733 | multitask_neural_net.py | hannes-brt_hebel/hebel/models/multitask_neural_net.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 896 | Python | .py | 16 | 54.4375 | 73 | 0.798857 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,734 | __init__.py | hannes-brt_hebel/hebel/models/__init__.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 966 | Python | .py | 17 | 55.588235 | 73 | 0.808466 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,735 | model.py | hannes-brt_hebel/hebel/models/model.py | class Model(object):
""" Abstract base-class for a Hebel model
"""
def __init__(self):
raise NotImplementedError
@property
def parameters(self):
raise NotImplementedError
@parameters.setter
def parameters(self, value):
raise NotImplementedError
def update_para... | 1,094 | Python | .py | 30 | 28.633333 | 76 | 0.663498 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,736 | neural_net_regression.py | hannes-brt_hebel/hebel/models/neural_net_regression.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 3,111 | Python | .py | 59 | 46.864407 | 83 | 0.718059 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,737 | neural_net.py | hannes-brt_hebel/hebel/models/neural_net.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 16,769 | Python | .py | 350 | 35.754286 | 113 | 0.596881 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,738 | multitask_top_layer.py | hannes-brt_hebel/hebel/layers/multitask_top_layer.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 13,809 | Python | .py | 286 | 37.129371 | 79 | 0.606581 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,739 | linear_regression_layer.py | hannes-brt_hebel/hebel/layers/linear_regression_layer.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 7,044 | Python | .py | 144 | 38.840278 | 87 | 0.633075 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,740 | input_dropout.py | hannes-brt_hebel/hebel/layers/input_dropout.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 4,184 | Python | .py | 88 | 38.136364 | 93 | 0.65226 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,741 | hidden_layer.py | hannes-brt_hebel/hebel/layers/hidden_layer.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 11,439 | Python | .py | 252 | 35.293651 | 83 | 0.611391 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,742 | column.py | hannes-brt_hebel/hebel/layers/column.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 3,445 | Python | .py | 82 | 34.695122 | 90 | 0.659683 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,743 | multi_column_layer.py | hannes-brt_hebel/hebel/layers/multi_column_layer.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 6,617 | Python | .py | 150 | 34.1 | 115 | 0.612372 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,744 | flattening_layer.py | hannes-brt_hebel/hebel/layers/flattening_layer.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 1,780 | Python | .py | 44 | 34.931818 | 73 | 0.689895 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,745 | __init__.py | hannes-brt_hebel/hebel/layers/__init__.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 1,206 | Python | .py | 23 | 51.304348 | 73 | 0.820339 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,746 | logistic_layer.py | hannes-brt_hebel/hebel/layers/logistic_layer.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 10,728 | Python | .py | 230 | 36.065217 | 102 | 0.614349 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,747 | softmax_layer.py | hannes-brt_hebel/hebel/layers/softmax_layer.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 11,562 | Python | .py | 250 | 35.572 | 102 | 0.610348 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,748 | top_layer.py | hannes-brt_hebel/hebel/layers/top_layer.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 890 | Python | .py | 16 | 53.4375 | 73 | 0.779838 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,749 | dummy_layer.py | hannes-brt_hebel/hebel/layers/dummy_layer.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 1,869 | Python | .py | 47 | 33.553191 | 83 | 0.673492 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,750 | serial.py | hannes-brt_hebel/hebel/utils/serial.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 15,446 | Python | .py | 386 | 29.803109 | 133 | 0.580727 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,751 | string_utils.py | hannes-brt_hebel/hebel/utils/string_utils.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 8,212 | Python | .py | 202 | 33.024752 | 94 | 0.636043 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,752 | plotting.py | hannes-brt_hebel/hebel/utils/plotting.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 1,489 | Python | .py | 29 | 47.517241 | 88 | 0.718447 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,753 | exc.py | hannes-brt_hebel/hebel/utils/exc.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 1,872 | Python | .py | 41 | 42.487805 | 83 | 0.753019 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,754 | __init__.py | hannes-brt_hebel/hebel/utils/__init__.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 746 | Python | .py | 12 | 60.916667 | 73 | 0.787962 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,755 | environ.py | hannes-brt_hebel/hebel/utils/environ.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 1,035 | Python | .py | 20 | 49.45 | 73 | 0.777998 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,756 | math.py | hannes-brt_hebel/hebel/utils/math.py | ceil_div = lambda x, y: int((x + y - 1) / y)
div_up = lambda x, y: y * ceil_div(x, y) | 85 | Python | .py | 2 | 42 | 44 | 0.535714 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,757 | call_check.py | hannes-brt_hebel/hebel/utils/call_check.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 5,655 | Python | .py | 124 | 36.217742 | 78 | 0.614589 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,758 | elementwise.py | hannes-brt_hebel/hebel/pycuda_ops/elementwise.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 9,828 | Python | .py | 239 | 29.995816 | 91 | 0.523874 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,759 | cudadrv.py | hannes-brt_hebel/hebel/pycuda_ops/cudadrv.py | # This file is taken from scikits.cuda (https://github.com/lebedov/scikits.cuda)
# Copyright (c) 2009-2013, Lev Givon. All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# Redistributions of source c... | 6,311 | Python | .py | 173 | 32.364162 | 103 | 0.743995 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,760 | cublas.py | hannes-brt_hebel/hebel/pycuda_ops/cublas.py | # This file is taken from scikits.cuda (https://github.com/lebedov/scikits.cuda)
# Copyright (c) 2009-2013, Lev Givon. All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# Redistributions of source c... | 213,658 | Python | .py | 4,319 | 25.577217 | 124 | 0.394971 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,761 | matrix.py | hannes-brt_hebel/hebel/pycuda_ops/matrix.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 9,598 | Python | .py | 258 | 28.25969 | 82 | 0.577442 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,762 | cuda.py | hannes-brt_hebel/hebel/pycuda_ops/cuda.py | # This file is taken from scikits.cuda (https://github.com/lebedov/scikits.cuda)
# Copyright (c) 2009-2013, Lev Givon. All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# Redistributions of source c... | 1,705 | Python | .py | 31 | 53.806452 | 80 | 0.802758 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,763 | linalg.py | hannes-brt_hebel/hebel/pycuda_ops/linalg.py | # This file is modified from scikits.cuda (https://github.com/lebedov/scikits.cuda)
# Copyright (c) 2009-2013, Lev Givon. All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# Redistributions of sourc... | 7,597 | Python | .py | 170 | 36.235294 | 90 | 0.611502 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,764 | utils.py | hannes-brt_hebel/hebel/pycuda_ops/utils.py | # This file is taken from scikits.cuda (https://github.com/lebedov/scikits.cuda)
# Copyright (c) 2009-2013, Lev Givon. All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# Redistributions of source c... | 4,386 | Python | .py | 110 | 31.190909 | 80 | 0.629288 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,765 | __init__.py | hannes-brt_hebel/hebel/pycuda_ops/__init__.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 1,047 | Python | .py | 25 | 39.08 | 73 | 0.757129 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,766 | reductions.py | hannes-brt_hebel/hebel/pycuda_ops/reductions.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 5,072 | Python | .py | 131 | 29.259542 | 88 | 0.564871 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,767 | cudart.py | hannes-brt_hebel/hebel/pycuda_ops/cudart.py | # This file is taken from scikits.cuda (https://github.com/lebedov/scikits.cuda)
# Copyright (c) 2009-2013, Lev Givon. All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# Redistributions of source c... | 20,640 | Python | .py | 604 | 28.607616 | 82 | 0.707592 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,768 | softmax.py | hannes-brt_hebel/hebel/pycuda_ops/softmax.py | # Copyright (C) 2013 Hannes Bretschneider
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distribut... | 1,705 | Python | .py | 43 | 36.581395 | 73 | 0.725288 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,769 | conf.py | hannes-brt_hebel/docs/conf.py | # -*- coding: utf-8 -*-
#
# Hebel documentation build configuration file, created by
# sphinx-quickstart on Mon Nov 25 19:20:29 2013.
#
# This file is execfile()d with the current directory set to its containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All c... | 9,313 | Python | .py | 201 | 44.288557 | 99 | 0.724115 | hannes-brt/hebel | 1,169 | 120 | 6 | GPL-2.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,770 | setup.py | kpreid_shinysdr/setup.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2013, 2014, 2015, 2016, 2019 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Soft... | 4,716 | Python | .py | 116 | 34.543103 | 143 | 0.679064 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,771 | signals.py | kpreid_shinysdr/shinysdr/signals.py | # Copyright 2014, 2016 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your ... | 3,783 | Python | .py | 92 | 33.543478 | 106 | 0.634349 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,772 | filters.py | kpreid_shinysdr/shinysdr/filters.py | # Copyright 2015, 2016, 2017 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at ... | 20,202 | Python | .py | 427 | 37.295082 | 279 | 0.641665 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,773 | test_telemetry.py | kpreid_shinysdr/shinysdr/test_telemetry.py | # Copyright 2015, 2016 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your ... | 5,256 | Python | .py | 116 | 37.663793 | 172 | 0.65738 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,774 | test_types.py | kpreid_shinysdr/shinysdr/test_types.py | # -*- coding: utf-8 -*-
# Copyright 2013, 2014, 2015, 2016, 2017, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation,... | 10,583 | Python | .py | 230 | 34.595652 | 108 | 0.525278 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,775 | test_filters.py | kpreid_shinysdr/shinysdr/test_filters.py | # Copyright 2013, 2014, 2015, 2016 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or... | 8,756 | Python | .py | 140 | 52.642857 | 156 | 0.670572 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,776 | test_grc.py | kpreid_shinysdr/shinysdr/test_grc.py | # Copyright 2017 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option... | 3,135 | Python | .py | 50 | 57.16 | 97 | 0.751143 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,777 | values.py | kpreid_shinysdr/shinysdr/values.py | # Copyright 2013, 2014, 2015, 2016, 2017, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the... | 38,118 | Python | .py | 826 | 36.102906 | 290 | 0.638253 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,778 | telemetry.py | kpreid_shinysdr/shinysdr/telemetry.py | # Copyright 2015, 2016 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your op... | 7,506 | Python | .py | 173 | 36.289017 | 151 | 0.665659 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,779 | devices.py | kpreid_shinysdr/shinysdr/devices.py | # -*- coding: utf-8 -*-
# Copyright 2014, 2015, 2016, 2017, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, eithe... | 23,428 | Python | .py | 511 | 36.7182 | 408 | 0.646073 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,780 | test_devices.py | kpreid_shinysdr/shinysdr/test_devices.py | # -*- coding: utf-8 -*-
# Copyright 2014, 2015, 2016, 2017 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either vers... | 10,895 | Python | .py | 219 | 41.502283 | 304 | 0.660759 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,781 | test_db_import.py | kpreid_shinysdr/shinysdr/test_db_import.py | # Copyright 2016, 2017 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your ... | 4,259 | Python | .py | 104 | 32.951923 | 112 | 0.628439 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,782 | test_twisted_ext.py | kpreid_shinysdr/shinysdr/test_twisted_ext.py | # -*- coding: utf-8 -*-
# Copyright 2016, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the... | 2,560 | Python | .py | 53 | 42.754717 | 159 | 0.7206 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,783 | interfaces.py | kpreid_shinysdr/shinysdr/interfaces.py | # -*- coding: utf-8 -*-
# Copyright 2013, 2014, 2015, 2016, 2017, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation,... | 11,304 | Python | .py | 223 | 43.139013 | 263 | 0.697975 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,784 | units.py | kpreid_shinysdr/shinysdr/units.py | # -*- coding: utf-8 -*-
# Copyright 2016, 2017 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the... | 1,966 | Python | .py | 51 | 35.196078 | 90 | 0.708002 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,785 | test_values.py | kpreid_shinysdr/shinysdr/test_values.py | # -*- coding: utf-8 -*-
# Copyright 2013, 2014, 2015, 2016, 2017, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation,... | 20,641 | Python | .py | 502 | 31.912351 | 215 | 0.633092 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,786 | test_signals.py | kpreid_shinysdr/shinysdr/test_signals.py | # Copyright 2014 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option... | 2,837 | Python | .py | 60 | 39.516667 | 92 | 0.676996 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,787 | testutil.py | kpreid_shinysdr/shinysdr/testutil.py | # Copyright 2013, 2014, 2015, 2016, 2017, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the... | 22,433 | Python | .py | 478 | 38.456067 | 162 | 0.668338 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,788 | twisted_ext.py | kpreid_shinysdr/shinysdr/twisted_ext.py | # Copyright 2013, 2014, 2015, 2016, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the Licen... | 5,225 | Python | .py | 117 | 38.179487 | 183 | 0.694494 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,789 | math.py | kpreid_shinysdr/shinysdr/math.py | # Copyright 2013, 2014, 2015, 2016 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
... | 2,357 | Python | .py | 59 | 34.966102 | 102 | 0.679929 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,790 | main.py | kpreid_shinysdr/shinysdr/main.py | #!/usr/bin/env python
# Copyright 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software F... | 7,035 | Python | .py | 147 | 42.292517 | 182 | 0.711527 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,791 | types.py | kpreid_shinysdr/shinysdr/types.py | # Copyright 2013, 2014, 2015, 2016, 2017, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the... | 19,497 | Python | .py | 444 | 34.891892 | 344 | 0.631187 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,792 | audiomux.py | kpreid_shinysdr/shinysdr/i/audiomux.py | # Copyright 2015, 2016, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at ... | 11,089 | Python | .py | 205 | 44.609756 | 240 | 0.654076 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,793 | db.py | kpreid_shinysdr/shinysdr/i/db.py | # Copyright 2013, 2014, 2015, 2016, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the Licens... | 14,394 | Python | .py | 348 | 32.597701 | 142 | 0.618322 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,794 | receiver.py | kpreid_shinysdr/shinysdr/i/receiver.py | # -*- coding: utf-8 -*-
# Copyright 2013, 2014, 2015, 2016, 2017, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation,... | 18,690 | Python | .py | 377 | 39.265252 | 215 | 0.634676 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,795 | test_top.py | kpreid_shinysdr/shinysdr/i/test_top.py | # Copyright 2013, 2014, 2015, 2016, 2017, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the... | 10,379 | Python | .py | 231 | 36.333333 | 111 | 0.644109 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,796 | test_persistence.py | kpreid_shinysdr/shinysdr/i/test_persistence.py | # Copyright 2014, 2015, 2016, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or... | 6,415 | Python | .py | 159 | 32.106918 | 136 | 0.628303 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,797 | config.py | kpreid_shinysdr/shinysdr/i/config.py | # Copyright 2013, 2014, 2015, 2016, 2017, 2018, 2020 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 o... | 19,843 | Python | .py | 391 | 41.265985 | 399 | 0.655299 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,798 | dependencies.py | kpreid_shinysdr/shinysdr/i/dependencies.py | #!/usr/bin/env python
# Copyright 2015, 2016 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the L... | 5,116 | Python | .py | 112 | 37.589286 | 131 | 0.634441 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |
32,799 | poller.py | kpreid_shinysdr/shinysdr/i/poller.py | # Copyright 2013, 2014, 2015, 2016, 2017, 2018 Kevin Reid and the ShinySDR contributors
#
# This file is part of ShinySDR.
#
# ShinySDR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the... | 11,195 | Python | .py | 252 | 35.797619 | 208 | 0.63916 | kpreid/shinysdr | 1,071 | 115 | 48 | GPL-3.0 | 9/5/2024, 5:14:38 PM (Europe/Amsterdam) |