Search is not available for this dataset
repo stringlengths 2 152 ⌀ | file stringlengths 15 239 | code stringlengths 0 58.4M | file_length int64 0 58.4M | avg_line_length float64 0 1.81M | max_line_length int64 0 12.7M | extension_type stringclasses 364
values |
|---|---|---|---|---|---|---|
smartbugs | smartbugs-master/tools/solhint-2.1.0/parser.py | import sb.parse_utils
VERSION = "2022/11/14"
FINDINGS = {
"array-declaration-spaces",
"avoid-call-value",
"avoid-low-level-calls",
"avoid-sha3",
"avoid-suicide",
"avoid-throw",
"avoid-tx-origin",
"bracket-align",
"check-send-result",
"code-complexity",
"compiler-fixed",
... | 2,357 | 26.103448 | 77 | py |
smartbugs | smartbugs-master/tools/solhint-2.1.0/scripts/do_solidity.sh | #!/bin/sh
FILENAME="$1"
TIMEOUT="$2"
BIN="$3"
export PATH="$BIN:$PATH"
chmod +x "$BIN/solc"
solhint -f unix -q "$FILENAME"
| 126 | 10.545455 | 30 | sh |
smartbugs | smartbugs-master/tools/solhint-3.3.8/config.yaml | name: Solhint
version: "3.3.8"
origin: https://github.com/protofire/solhint
info: Open source project for linting solidity code. This project provide both security and style guide validations.
image: smartbugs/solhint:3.3.8
solidity:
entrypoint: "'$BIN/do_solidity.sh' '$FILENAME' '$BIN'"
solc: yes
bin: scri... | 324 | 31.5 | 116 | yaml |
smartbugs | smartbugs-master/tools/solhint-3.3.8/parser.py | import sb.parse_utils
VERSION = "2023/02/12"
FINDINGS = {
"array-declaration-spaces",
"avoid-call-value",
"avoid-low-level-calls",
"avoid-sha3",
"avoid-suicide",
"avoid-throw",
"avoid-tx-origin",
"bracket-align",
"check-send-result",
"code-complexity",
"compiler-fixed",
... | 2,399 | 25.966292 | 77 | py |
smartbugs | smartbugs-master/tools/solhint-3.3.8/docker/docker-entrypoint.sh | #!/bin/sh
set -e
if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ]; then
set -- node "$@"
fi
exec "$@"
| 116 | 12 | 64 | sh |
smartbugs | smartbugs-master/tools/solhint-3.3.8/scripts/do_solidity.sh | #!/bin/sh
FILENAME="$1"
BIN="$2"
export PATH="$BIN:$PATH"
chmod +x "$BIN/solc"
solhint -f unix "$FILENAME"
| 110 | 10.1 | 27 | sh |
smartbugs | smartbugs-master/tools/solhint/config.yaml | alias:
- solhint-3.3.8
| 27 | 8.333333 | 19 | yaml |
smartbugs | smartbugs-master/tools/teether/config.yaml | name: teEther
image: smartbugs/teether:04adf56
origin: https://github.com/nescio007/teether
version: '#04adf56'
info: Analysis and automatic exploitation framework for Ethereum smart contracts.
runtime:
command: "'$FILENAME' 0x1234 0x1000 +1000"
| 250 | 30.375 | 81 | yaml |
smartbugs | smartbugs-master/tools/teether/findings.yaml | Ether leak:
classification: SWC-105, DASP-2
| 48 | 15.333333 | 35 | yaml |
smartbugs | smartbugs-master/tools/teether/parser.py | import sb.parse_utils
VERSION = "2023/02/24"
FINDINGS = { "Ether leak" }
def parse(exit_code, log, output):
findings, infos = [], set()
errors, fails = sb.parse_utils.errors_fails(exit_code, log)
errors.discard("EXIT_CODE_1") # there will be an exception in fails anyway
for f in list(fails): ... | 2,260 | 36.683333 | 105 | py |
smartbugs | smartbugs-master/tools/vandal/config.yaml | name: Vandal
origin: https://github.com/usyd-blockchain/vandal
version: "#d2b0043"
info: Vandal is a static program analysis framework for Ethereum smart contract bytecode.
image: smartbugs/vandal
runtime:
entrypoint: "'$BIN/do_runtime.sh' '$FILENAME' '$TIMEOUT' '$BIN'"
bin: scripts
output: /results
# ... | 355 | 31.363636 | 89 | yaml |
smartbugs | smartbugs-master/tools/vandal/findings.yaml | CheckedCallStateUpdate:
classification: SWC-0, DASP-10
Destroyable:
classification: SWC-106, DASP-2
OriginUsed:
classification: SWC-115, DASP-2
ReentrantCall:
classification: SWC-107, DASP-1
UncheckedCall:
classification: SWC-104, DASP-4
UnsecuredValueSend:
classification: SWC-105, DASP-2
| 314 | 23.230769 | 35 | yaml |
smartbugs | smartbugs-master/tools/vandal/parser.py | import io, os, tarfile
import sb.parse_utils
VERSION = "2023/02/27"
FINDINGS = (
"CheckedCallStateUpdate",
"Destroyable",
"OriginUsed",
"ReentrantCall",
"UnsecuredValueSend",
"UncheckedCall"
)
MAP_FINDINGS = {
"checkedCallStateUpdate.csv": "CheckedCallStateUpdate",
"destroyable.csv": ... | 2,823 | 31.090909 | 86 | py |
smartbugs | smartbugs-master/tools/vandal/docker/scripts/runVandal.sh | #!/bin/sh
FILENAME=$1
mkdir -p results; cd results; /vandal/bin/analyze.sh ${FILENAME} /vandal/datalog/demo_analyses.dl; du -s *.csv | grep -v ^0
| 148 | 23.833333 | 123 | sh |
smartbugs | smartbugs-master/tools/vandal/scripts/do_runtime.sh | #!/bin/sh
FILENAME="$1"
TIMEOUT="$2"
BIN="$3"
mkdir -p /results
cd /results
/vandal/bin/analyze.sh "$FILENAME" /vandal/datalog/demo_analyses.dl
du -s *.csv | grep -v ^0
| 171 | 14.636364 | 67 | sh |
spaCy | spaCy-master/.pre-commit-config.yaml | repos:
- repo: https://github.com/ambv/black
rev: 22.3.0
hooks:
- id: black
language_version: python3.7
additional_dependencies: ['click==8.0.4']
- repo: https://github.com/pycqa/flake8
rev: 5.0.4
hooks:
- id: flake8
args:
- "--config=setup.cfg"
| 300 | 20.5 | 47 | yaml |
spaCy | spaCy-master/CONTRIBUTING.md | <a href="https://explosion.ai"><img src="https://explosion.ai/assets/img/logo.svg" width="125" height="125" align="right" /></a>
# Contribute to spaCy
Thanks for your interest in contributing to spaCy 🎉 This page will give you a quick
overview of how things are organized and most importantly, how to get involved.
#... | 24,168 | 50.753747 | 263 | md |
spaCy | spaCy-master/README.md | <a href="https://explosion.ai"><img src="https://explosion.ai/assets/img/logo.svg" width="125" height="125" align="right" /></a>
# spaCy: Industrial-strength NLP
spaCy is a library for **advanced Natural Language Processing** in Python and
Cython. It's built on the very latest research, and was designed from day one ... | 15,040 | 51.590909 | 554 | md |
spaCy | spaCy-master/setup.py | #!/usr/bin/env python
from setuptools import Extension, setup, find_packages
import sys
import platform
import numpy
from distutils.command.build_ext import build_ext
from distutils.sysconfig import get_python_inc
from pathlib import Path
import shutil
from Cython.Build import cythonize
from Cython.Compiler import Opti... | 7,664 | 30.158537 | 129 | py |
spaCy | spaCy-master/.github/CONTRIBUTOR_AGREEMENT.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/PULL_REQUEST_TEMPLATE.md | <!--- Provide a general summary of your changes in the title. -->
## Description
<!--- Use this section to describe your changes. If your changes required
testing, include information about the testing environment and the tests you
ran. If your test fixes a bug reported in an issue, don't forget to include the
issue n... | 985 | 48.3 | 113 | md |
spaCy | spaCy-master/.github/spacy_universe_alert.py | import os
import sys
import json
from datetime import datetime
from slack_sdk.web.client import WebClient
CHANNEL = "#alerts-universe"
SLACK_TOKEN = os.environ.get("SLACK_BOT_TOKEN", "ENV VAR not available!")
DATETIME_FORMAT = "%Y-%m-%dT%H:%M:%SZ"
client = WebClient(SLACK_TOKEN)
github_context = json.loads(sys.argv[... | 1,620 | 22.838235 | 73 | py |
spaCy | spaCy-master/.github/validate_universe_json.py | import json
import re
import sys
from pathlib import Path
def validate_json(document):
universe_file = Path(document)
with universe_file.open() as f:
universe_data = json.load(f)
for entry in universe_data["resources"]:
if "github" in entry:
assert not re.match(
... | 506 | 24.35 | 64 | py |
spaCy | spaCy-master/.github/ISSUE_TEMPLATE/01_bugs.md | ---
name: "\U0001F6A8 Submit a Bug Report"
about: Use this template if you came across a bug or unexpected behaviour differing from the docs.
---
<!-- NOTE: For questions or install related issues, please open a Discussion instead. -->
## How to reproduce the behaviour
<!-- Include a code example or the steps that l... | 627 | 33.888889 | 128 | md |
spaCy | spaCy-master/.github/ISSUE_TEMPLATE/02_docs.md | ---
name: "\U0001F4DA Submit a Documentation Report"
about: Did you spot a mistake in the docs, is anything unclear or do you have a
suggestion?
---
<!-- Describe the problem or suggestion here. If you've found a mistake and you know the answer, feel free to submit a pull request straight away: https://github.com/ex... | 443 | 39.363636 | 191 | md |
spaCy | spaCy-master/.github/ISSUE_TEMPLATE/config.yml | blank_issues_enabled: false
contact_links:
- name: 🗯 Discussions Forum
url: https://github.com/explosion/spaCy/discussions
about: Install issues, usage questions, general discussion and anything else that isn't a bug report.
- name: 📖 spaCy FAQ & Troubleshooting
url: https://github.com/explosion/spaCy... | 756 | 49.466667 | 105 | yml |
spaCy | spaCy-master/.github/contributors/0x2b3bfa0.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/5hirish.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,420 | 49.663551 | 82 | md |
spaCy | spaCy-master/.github/contributors/ALSchwalm.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,419 | 49.654206 | 82 | md |
spaCy | spaCy-master/.github/contributors/AMArostegui.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,367 | 49.168224 | 82 | md |
spaCy | spaCy-master/.github/contributors/AlJohri.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/Arvindcheenu.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/AyushExel.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/Azagh3l.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,366 | 49.158879 | 82 | md |
spaCy | spaCy-master/.github/contributors/Baciccin.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,400 | 49.476636 | 82 | md |
spaCy | spaCy-master/.github/contributors/Bharat123rox.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/BigstickCarpet.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,429 | 49.747664 | 82 | md |
spaCy | spaCy-master/.github/contributors/BramVanroy.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,395 | 49.429907 | 82 | md |
spaCy | spaCy-master/.github/contributors/BreakBB.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,420 | 49.663551 | 82 | md |
spaCy | spaCy-master/.github/contributors/Bri-Will.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,386 | 49.820755 | 82 | md |
spaCy | spaCy-master/.github/contributors/Brixjohn.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/Cinnamy.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/DeNeutoy.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,473 | 50.158879 | 82 | md |
spaCy | spaCy-master/.github/contributors/DimaBryuhanov.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/Dobita21.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/DoomCoder.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/DuyguA.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,500 | 50.411215 | 82 | md |
spaCy | spaCy-master/.github/contributors/EARL_GREYT.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/Eleni170.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/EmilStenstrom.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,411 | 49.579439 | 82 | md |
spaCy | spaCy-master/.github/contributors/F0rge1cE.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/FallakAsad.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,367 | 49.641509 | 82 | md |
spaCy | spaCy-master/.github/contributors/GiorgioPorgio.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/Gizzio.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,386 | 49.820755 | 82 | md |
spaCy | spaCy-master/.github/contributors/GuiGel.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/Hazoom.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/HiromuHota.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/ICLRandD.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,593 | 51.280374 | 84 | md |
spaCy | spaCy-master/.github/contributors/IsaacHaze.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,388 | 49.364486 | 82 | md |
spaCy | spaCy-master/.github/contributors/JKhakpour.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/Jan-711.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/JannisTriesToCode.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,440 | 49.850467 | 82 | md |
spaCy | spaCy-master/.github/contributors/Jette16.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/KKsharma99.md | <!-- This agreement was mistakenly submitted as an update to the CONTRIBUTOR_AGREEMENT.md template. Commit: 8a2d22222dec5cf910df5a378cbcd9ea2ab53ec4. It was therefore moved over manually. -->
# spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http... | 5,578 | 50.183486 | 191 | md |
spaCy | spaCy-master/.github/contributors/KennethEnevoldsen.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,416 | 49.626168 | 82 | md |
spaCy | spaCy-master/.github/contributors/Kimahriman.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,388 | 49.364486 | 82 | md |
spaCy | spaCy-master/.github/contributors/LRAbbade.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,363 | 49.130841 | 82 | md |
spaCy | spaCy-master/.github/contributors/Loghijiaha.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,389 | 49.373832 | 82 | md |
spaCy | spaCy-master/.github/contributors/Lucaterre.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,311 | 49.113208 | 82 | md |
spaCy | spaCy-master/.github/contributors/MartinoMensio.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,500 | 50.411215 | 82 | md |
spaCy | spaCy-master/.github/contributors/MateuszOlko.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/MathiasDesch.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,500 | 50.411215 | 82 | md |
spaCy | spaCy-master/.github/contributors/MiniLau.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/MisterKeefe.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/Mlawrence95.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,370 | 49.196262 | 82 | md |
spaCy | spaCy-master/.github/contributors/NSchrading.md | # Syllogism contributor agreement
This Syllogism Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectu... | 4,852 | 48.020202 | 81 | md |
spaCy | spaCy-master/.github/contributors/NirantK.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/Nuccy90.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/Olamyy.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,370 | 49.196262 | 82 | md |
spaCy | spaCy-master/.github/contributors/Pantalaymon.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,369 | 49.186916 | 82 | md |
spaCy | spaCy-master/.github/contributors/Pavle992.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/PeterGilles.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/PluieElectrique.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/Poluglottos.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/PolyglotOpenstreetmap.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/R1j1t.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,389 | 49.373832 | 82 | md |
spaCy | spaCy-master/.github/contributors/RvanNieuwpoort.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,590 | 50.768519 | 108 | md |
spaCy | spaCy-master/.github/contributors/SamEdwardes.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/SamuelLKane.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,251 | 49.5 | 82 | md |
spaCy | spaCy-master/.github/contributors/Stannislav.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/Tiljander.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/YohannesDatasci.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,367 | 49.641509 | 82 | md |
spaCy | spaCy-master/.github/contributors/ZeeD.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/aajanki.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/aaronkub.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/aashishg.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/abchapman93.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,368 | 49.17757 | 82 | md |
spaCy | spaCy-master/.github/contributors/abhi18av.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,499 | 50.401869 | 82 | md |
spaCy | spaCy-master/.github/contributors/adrianeboyd.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,387 | 49.35514 | 82 | md |
spaCy | spaCy-master/.github/contributors/adrienball.md | # spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | 5,474 | 50.650943 | 82 | md |