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
14,000
test_winrm.py
ansible_ansible/test/units/plugins/connection/test_winrm.py
# -*- coding: utf-8 -*- # (c) 2018, Jordan Borean <jborean@redhat.com> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import os import typing as t import pytest from io import StringIO from unittest.mock import MagicMock from ansible....
20,215
Python
.py
459
32.867102
116
0.5569
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,001
test_local.py
ansible_ansible/test/units/plugins/connection/test_local.py
# # (c) 2020 Red Hat Inc. # # This file is part of Ansible # # Ansible 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) any later version. # # Ansible is d...
1,239
Python
.py
30
38.2
90
0.762063
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,002
test_powershell.py
ansible_ansible/test/units/plugins/shell/test_powershell.py
from __future__ import annotations import pytest from ansible.plugins.shell.powershell import _parse_clixml, ShellModule def test_parse_clixml_empty(): empty = b'#< CLIXML\r\n<Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"></Objs>' expected = b'' actual = _parse_clixml(em...
6,517
Python
.py
96
56.375
150
0.561836
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,003
test_cmd.py
ansible_ansible/test/units/plugins/shell/test_cmd.py
from __future__ import annotations import pytest from ansible.plugins.shell.cmd import ShellModule @pytest.mark.parametrize('s, expected', [ ['arg1', 'arg1'], [None, '""'], ['arg1 and 2', '^"arg1 and 2^"'], ['malicious argument\\"&whoami', '^"malicious argument\\\\^"^&whoami^"'], ['C:\\temp\\som...
495
Python
.py
14
31.785714
77
0.612159
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,004
test_ini.py
ansible_ansible/test/units/plugins/lookup/test_ini.py
# -*- coding: utf-8 -*- # (c) 2015, Toshio Kuratomi <tkuratomi@ansible.com> # # This file is part of Ansible # # Ansible 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 # (a...
2,600
Python
.py
56
38.892857
108
0.650439
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,005
test_env.py
ansible_ansible/test/units/plugins/lookup/test_env.py
# -*- coding: utf-8 -*- # Copyright: (c) 2019, Abhay Kadam <abhaykadam88@gmail.com> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import pytest from ansible.plugins.loader import lookup_loader @pytest.mark.parametrize('env_var,exp_va...
994
Python
.py
24
37.875
92
0.687565
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,006
test_url.py
ansible_ansible/test/units/plugins/lookup/test_url.py
# -*- coding: utf-8 -*- # Copyright: (c) 2020, Sam Doran <sdoran@redhat.com> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import pytest from ansible.plugins.loader import lookup_loader @pytest.mark.parametrize( ('kwargs', 'agent...
846
Python
.py
20
38.25
123
0.690621
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,007
test_password.py
ansible_ansible/test/units/plugins/lookup/test_password.py
# -*- coding: utf-8 -*- # (c) 2015, Toshio Kuratomi <tkuratomi@ansible.com> # # This file is part of Ansible # # Ansible 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 # (a...
24,101
Python
.py
480
40.633333
144
0.655794
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,008
test_callback.py
ansible_ansible/test/units/plugins/callback/test_callback.py
# (c) 2012-2014, Chris Meyers <chris.meyers.fsu@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
14,157
Python
.py
351
28.472934
81
0.533144
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,009
test_linear.py
ansible_ansible/test/units/plugins/strategy/test_linear.py
# Copyright (c) 2018 Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import unittest from unittest.mock import patch, MagicMock from ansible.executor.play_iterator import PlayIterator from ansible.playbook import Playboo...
8,457
Python
.py
199
30.874372
97
0.582533
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,010
test_core.py
ansible_ansible/test/units/plugins/filter/test_core.py
# -*- coding: utf-8 -*- # Copyright (c) 2019 Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import pytest from ansible.module_utils.common.text.converters import to_native from ansible.plugins.filter.core import to_uuid ...
1,488
Python
.py
28
50
101
0.754144
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,011
test_mathstuff.py
ansible_ansible/test/units/plugins/filter/test_mathstuff.py
# Copyright: (c) 2017, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import pytest from jinja2 import Environment import ansible.plugins.filter.mathstuff as ms from ansible.errors import AnsibleFilterError, AnsibleFilt...
7,620
Python
.py
127
53.125984
151
0.635997
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,012
import_fixture.py
ansible_ansible/test/units/plugins/loader_fixtures/import_fixture.py
# Nothing to see here, this file is just empty to support a imp.load_source # without doing anything from __future__ import annotations class test: def __init__(self, *args, **kwargs): pass
204
Python
.py
6
30.666667
75
0.709184
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,013
test_cache.py
ansible_ansible/test/units/plugins/cache/test_cache.py
# (c) 2012-2015, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
7,445
Python
.py
156
40.185897
92
0.651166
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,014
test_vendor.py
ansible_ansible/test/units/_vendor/test_vendor.py
# (c) 2020 Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import os import pkgutil import pytest import sys from unittest.mock import patch def reset_internal_vendor_package(): import ansible ansible_vendor_path...
1,890
Python
.py
39
42.948718
130
0.693188
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,015
time-command.py
ansible_ansible/.azure-pipelines/scripts/time-command.py
#!/usr/bin/env python """Prepends a relative timestamp to each input line from stdin and writes it to stdout.""" from __future__ import annotations import sys import time def main(): """Main program entry point.""" start = time.time() sys.stdin.reconfigure(errors='surrogateescape') sys.stdout.recon...
565
Python
.py
16
30.8125
90
0.665434
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,016
publish-codecov.py
ansible_ansible/.azure-pipelines/scripts/publish-codecov.py
#!/usr/bin/env python """ Upload code coverage reports to codecov.io. Multiple coverage files from multiple languages are accepted and aggregated after upload. Python coverage, as well as PowerShell and Python stubs can all be uploaded. """ from __future__ import annotations import argparse import dataclasses import p...
2,899
Python
.py
74
33.364865
127
0.664641
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,017
combine-coverage.py
ansible_ansible/.azure-pipelines/scripts/combine-coverage.py
#!/usr/bin/env python """ Combine coverage data from multiple jobs, keeping the data only from the most recent attempt from each job. Coverage artifacts must be named using the format: "Coverage $(System.JobAttempt) {StableUniqueNameForEachJob}" The recommended coverage artifact name format is: Coverage $(System.JobAtt...
2,121
Python
.py
45
41.288889
131
0.685257
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,018
context.py
ansible_ansible/lib/ansible/context.py
# Copyright: (c) 2018, Toshio Kuratomi <tkuratomi@ansible.com> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """ Context of the running Ansible. In the future we *may* create Context objects to allow running multiple Ansible plays in parallel with different contexts but ...
1,933
Python
.py
40
43.975
112
0.746674
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,019
__main__.py
ansible_ansible/lib/ansible/__main__.py
# Copyright: (c) 2021, Matt Martz <matt@sivel.net> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import argparse from importlib.metadata import distribution def _short_name(name): return name.removeprefix('ansible-').replace('ansi...
796
Python
.py
17
43.117647
100
0.704811
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,020
constants.py
ansible_ansible/lib/ansible/constants.py
# Copyright: (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # Copyright: (c) 2017, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import re from string import ascii_letters, digits from ansible.config.manager ...
9,757
Python
.py
212
40.990566
143
0.675047
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,021
__init__.py
ansible_ansible/lib/ansible/__init__.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
1,215
Python
.py
26
45.615385
78
0.777403
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,022
release.py
ansible_ansible/lib/ansible/release.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
857
Python
.py
20
41.75
70
0.756886
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,023
ajson.py
ansible_ansible/lib/ansible/parsing/ajson.py
# Copyright: (c) 2018, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import json # Imported for backwards compat from ansible.module_utils.common.json import AnsibleJSONEncoder # pylint: disable=unused-import from ans...
1,254
Python
.py
28
36.928571
96
0.666392
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,024
plugin_docs.py
ansible_ansible/lib/ansible/parsing/plugin_docs.py
# Copyright: (c) 2017, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import ast import tokenize from ansible import constants as C from ansible.errors import AnsibleError, AnsibleParserError from ansible.module_utils.co...
8,661
Python
.py
171
38.590643
134
0.605691
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,025
splitter.py
ansible_ansible/lib/ansible/parsing/splitter.py
# (c) 2014 James Cammarata, <jcammarata@ansible.com> # # This file is part of Ansible # # Ansible 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) any late...
11,021
Python
.py
231
38.090909
146
0.611975
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,026
dataloader.py
ansible_ansible/lib/ansible/parsing/dataloader.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # Copyright: (c) 2017, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import copy import os import os.path import re import tempfile import typing as t from ansi...
20,884
Python
.py
383
43.483029
147
0.619622
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,027
__init__.py
ansible_ansible/lib/ansible/parsing/__init__.py
# (c) 2015, Toshio Kuratomi <tkuratomi@ansible.com> # # This file is part of Ansible # # Ansible 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) any later...
742
Python
.py
17
42.588235
70
0.776243
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,028
quoting.py
ansible_ansible/lib/ansible/parsing/quoting.py
# (c) 2014 James Cammarata, <jcammarata@ansible.com> # # This file is part of Ansible # # Ansible 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) any late...
1,057
Python
.py
24
41.833333
107
0.729572
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,029
mod_args.py
ansible_ansible/lib/ansible/parsing/mod_args.py
# (c) 2014 Michael DeHaan, <michael@ansible.com> # # This file is part of Ansible # # Ansible 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) any later ve...
14,742
Python
.py
305
38.039344
154
0.623122
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,030
constructor.py
ansible_ansible/lib/ansible/parsing/yaml/constructor.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
7,143
Python
.py
145
39.634483
120
0.656569
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,031
loader.py
ansible_ansible/lib/ansible/parsing/yaml/loader.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
1,924
Python
.py
38
45.710526
156
0.722488
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,032
dumper.py
ansible_ansible/lib/ansible/parsing/yaml/dumper.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
3,173
Python
.py
92
31.619565
118
0.798559
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,033
__init__.py
ansible_ansible/lib/ansible/parsing/yaml/__init__.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
749
Python
.py
17
43
70
0.77565
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,034
objects.py
ansible_ansible/lib/ansible/parsing/yaml/objects.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
10,456
Python
.py
262
32.553435
125
0.654452
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,035
__init__.py
ansible_ansible/lib/ansible/parsing/vault/__init__.py
# (c) 2014, James Tanner <tanner.jc@gmail.com> # (c) 2016, Adrian Likins <alikins@redhat.com> # (c) 2016 Toshio Kuratomi <tkuratomi@ansible.com> # # Ansible 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, eith...
51,719
Python
.py
997
42.047141
152
0.639056
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,036
addresses.py
ansible_ansible/lib/ansible/parsing/utils/addresses.py
# Copyright 2015 Abhijit Menon-Sen <ams@2ndQuadrant.com> # # This file is part of Ansible # # Ansible 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) any ...
8,083
Python
.py
181
37.928177
89
0.555471
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,037
jsonify.py
ansible_ansible/lib/ansible/parsing/utils/jsonify.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
1,149
Python
.py
29
36.448276
84
0.740341
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,038
__init__.py
ansible_ansible/lib/ansible/parsing/utils/__init__.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
749
Python
.py
17
43
70
0.77565
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,039
yaml.py
ansible_ansible/lib/ansible/parsing/utils/yaml.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # Copyright: (c) 2017, Ansible Project # Copyright: (c) 2018, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import json from yaml import YAMLError from ansible...
3,094
Python
.py
61
44.721311
108
0.710823
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,040
host.py
ansible_ansible/lib/ansible/inventory/host.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
5,037
Python
.py
131
29.503817
128
0.602177
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,041
manager.py
ansible_ansible/lib/ansible/inventory/manager.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
29,454
Python
.py
608
36.827303
148
0.592935
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,042
helpers.py
ansible_ansible/lib/ansible/inventory/helpers.py
# (c) 2017, Ansible by RedHat Inc, # # This file is part of Ansible # # Ansible 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) any later version. # # Ans...
1,240
Python
.py
31
37.322581
70
0.717735
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,043
data.py
ansible_ansible/lib/ansible/inventory/data.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
10,586
Python
.py
225
35.875556
147
0.597244
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,044
group.py
ansible_ansible/lib/ansible/inventory/group.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
9,752
Python
.py
237
31.21519
157
0.597378
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,045
fact_cache.py
ansible_ansible/lib/ansible/vars/fact_cache.py
# Copyright: (c) 2014, Michael DeHaan <michael.dehaan@gmail.com> # Copyright: (c) 2018, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations from collections.abc import MutableMapping from ansible import constants as C from a...
1,903
Python
.py
48
32.166667
96
0.635371
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,046
plugins.py
ansible_ansible/lib/ansible/vars/plugins.py
# Copyright (c) 2018 Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import os from functools import lru_cache from ansible import constants as C from ansible.errors import AnsibleError from ansible.inventory.group impor...
4,503
Python
.py
96
38.40625
124
0.657913
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,047
hostvars.py
ansible_ansible/lib/ansible/vars/hostvars.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
5,070
Python
.py
110
39.281818
116
0.678173
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,048
manager.py
ansible_ansible/lib/ansible/vars/manager.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
30,972
Python
.py
559
42.062612
156
0.594311
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,049
clean.py
ansible_ansible/lib/ansible/vars/clean.py
# Copyright (c) 2017 Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import os import re from collections.abc import MutableMapping, MutableSequence from ansible import constants as C from ansible.errors import AnsibleEr...
5,999
Python
.py
128
39.648438
134
0.677242
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,050
reserved.py
ansible_ansible/lib/ansible/vars/reserved.py
# (c) 2017 Ansible By Red Hat # # This file is part of Ansible # # Ansible 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) any later version. # # Ansible ...
2,531
Python
.py
62
36.016129
95
0.717844
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,051
role.py
ansible_ansible/lib/ansible/galaxy/role.py
######################################################################## # # (C) 2015, Brian Coca <bcoca@ansible.com> # # This file is part of Ansible # # Ansible 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...
21,036
Python
.py
414
34.642512
152
0.529166
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,052
token.py
ansible_ansible/lib/ansible/galaxy/token.py
######################################################################## # # (C) 2015, Chris Houseknecht <chouse@ansible.com> # # This file is part of Ansible # # Ansible 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 Fo...
6,447
Python
.py
151
34.569536
103
0.610489
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,053
api.py
ansible_ansible/lib/ansible/galaxy/api.py
# (C) 2013, James Cammarata <jcammarata@ansible.com> # Copyright: (c) 2019, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import collections import datetime import functools import hashlib import json import os import st...
40,169
Python
.py
768
40.604167
154
0.596814
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,054
__init__.py
ansible_ansible/lib/ansible/galaxy/__init__.py
######################################################################## # # (C) 2015, Brian Coca <bcoca@ansible.com> # # This file is part of Ansible # # Ansible 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...
2,497
Python
.py
55
41.127273
103
0.669415
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,055
user_agent.py
ansible_ansible/lib/ansible/galaxy/user_agent.py
# Copyright: (c) 2019, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import platform import sys from ansible.module_utils.ansible_release import __version__ as ansible_version def user_agent(): """Returns a user a...
760
Python
.py
16
42.625
114
0.726287
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,056
example.py.j2
ansible_ansible/lib/ansible/galaxy/data/network/netconf_plugins/example.py.j2
#SPDX-License-Identifier: MIT-0 # # (c) 2018 Red Hat Inc. # # This file is part of Ansible # # Ansible 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) any...
1,511
Python
.py
37
37.27027
94
0.736914
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,057
example.py.j2
ansible_ansible/lib/ansible/galaxy/data/network/module_utils/example.py.j2
#SPDX-License-Identifier: MIT-0 # # (c) 2018 Red Hat Inc. # # This file is part of Ansible # # Ansible 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) any...
1,538
Python
.py
38
37.526316
106
0.752336
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,058
example_facts.py.j2
ansible_ansible/lib/ansible/galaxy/data/network/library/example_facts.py.j2
#SPDX-License-Identifier: MIT-0 # # (c) 2018 Red Hat Inc. # # This file is part of Ansible # # Ansible 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) any...
2,345
Python
.py
58
36.810345
106
0.733655
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,059
example_config.py.j2
ansible_ansible/lib/ansible/galaxy/data/network/library/example_config.py.j2
#SPDX-License-Identifier: MIT-0 # # (c) 2018 Red Hat Inc. # # This file is part of Ansible # # Ansible 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) any...
2,357
Python
.py
58
37.017241
107
0.73505
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,060
example_command.py.j2
ansible_ansible/lib/ansible/galaxy/data/network/library/example_command.py.j2
#SPDX-License-Identifier: MIT-0 # # (c) 2018 Red Hat Inc. # # This file is part of Ansible # # Ansible 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) any...
2,372
Python
.py
58
37.275862
108
0.735473
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,061
example.py.j2
ansible_ansible/lib/ansible/galaxy/data/network/cliconf_plugins/example.py.j2
#SPDX-License-Identifier: MIT-0 # # (c) 2018 Red Hat Inc. # # This file is part of Ansible # # Ansible 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) any...
1,511
Python
.py
37
37.27027
94
0.736234
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,062
example.py.j2
ansible_ansible/lib/ansible/galaxy/data/network/terminal_plugins/example.py.j2
#SPDX-License-Identifier: MIT-0 # # (c) 2018 Red Hat Inc. # # This file is part of Ansible # # Ansible 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) any...
1,526
Python
.py
37
37.675676
95
0.739569
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,063
errors.py
ansible_ansible/lib/ansible/galaxy/dependency_resolution/errors.py
# -*- coding: utf-8 -*- # Copyright: (c) 2020-2021, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """Dependency resolution exceptions.""" from __future__ import annotations try: from resolvelib.resolvers import ( # pylint: disable=unused-import ...
697
Python
.py
15
42.066667
92
0.762887
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,064
reporters.py
ansible_ansible/lib/ansible/galaxy/dependency_resolution/reporters.py
# -*- coding: utf-8 -*- # Copyright: (c) 2020-2021, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """Requirement reporter implementations.""" from __future__ import annotations try: from resolvelib import BaseReporter except ImportError: class Bas...
635
Python
.py
15
38.866667
92
0.754472
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,065
versioning.py
ansible_ansible/lib/ansible/galaxy/dependency_resolution/versioning.py
# -*- coding: utf-8 -*- # Copyright: (c) 2019-2020, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """Version comparison helpers.""" from __future__ import annotations import operator from ansible.module_utils.compat.version import LooseVersion from ansib...
1,726
Python
.py
55
24.345455
92
0.581171
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,066
__init__.py
ansible_ansible/lib/ansible/galaxy/dependency_resolution/__init__.py
# -*- coding: utf-8 -*- # Copyright: (c) 2020-2021, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """Dependency resolution machinery.""" from __future__ import annotations import typing as t if t.TYPE_CHECKING: from ansible.galaxy.api import GalaxyAP...
1,996
Python
.py
42
41.119048
95
0.73549
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,067
resolvers.py
ansible_ansible/lib/ansible/galaxy/dependency_resolution/resolvers.py
# -*- coding: utf-8 -*- # Copyright: (c) 2020-2021, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """Requirement resolver implementations.""" from __future__ import annotations try: from resolvelib import Resolver except ImportError: class Resolve...
623
Python
.py
15
38.066667
92
0.749585
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,068
providers.py
ansible_ansible/lib/ansible/galaxy/dependency_resolution/providers.py
# -*- coding: utf-8 -*- # Copyright: (c) 2020-2021, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """Requirement provider interfaces.""" from __future__ import annotations import functools import typing as t if t.TYPE_CHECKING: from ansible.galaxy.co...
23,419
Python
.py
410
44.792683
158
0.635634
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,069
dataclasses.py
ansible_ansible/lib/ansible/galaxy/dependency_resolution/dataclasses.py
# -*- coding: utf-8 -*- # Copyright: (c) 2020-2021, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """Dependency structs.""" # FIXME: add caching all over the place from __future__ import annotations import os import typing as t from collections import na...
23,958
Python
.py
517
35.491296
130
0.599571
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,070
gpg.py
ansible_ansible/lib/ansible/galaxy/collection/gpg.py
# -*- coding: utf-8 -*- # Copyright: (c) 2022, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """Signature verification helpers.""" from __future__ import annotations from ansible.errors import AnsibleError from ansible.galaxy.user_agent import user_agent f...
7,540
Python
.py
221
28.036199
103
0.657808
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,071
concrete_artifact_manager.py
ansible_ansible/lib/ansible/galaxy/collection/concrete_artifact_manager.py
# -*- coding: utf-8 -*- # Copyright: (c) 2020-2021, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """Concrete collection candidate management helper module.""" from __future__ import annotations import json import os import tarfile import subprocess impor...
29,490
Python
.py
655
35.10687
152
0.612958
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,072
__init__.py
ansible_ansible/lib/ansible/galaxy/collection/__init__.py
# -*- coding: utf-8 -*- # Copyright: (c) 2019-2021, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """Installed collections management package.""" from __future__ import annotations import errno import fnmatch import functools import glob import inspect im...
79,024
Python
.py
1,599
38.554722
158
0.624501
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,073
galaxy_api_proxy.py
ansible_ansible/lib/ansible/galaxy/collection/galaxy_api_proxy.py
# -*- coding: utf-8 -*- # Copyright: (c) 2020-2021, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """A facade for interfacing with multiple Galaxy instances.""" from __future__ import annotations import typing as t if t.TYPE_CHECKING: from ansible.ga...
7,805
Python
.py
179
30.413408
137
0.574381
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,074
play.py
ansible_ansible/lib/ansible/playbook/play.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
16,527
Python
.py
341
38.803519
144
0.630975
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,075
play_context.py
ansible_ansible/lib/ansible/playbook/play_context.py
# -*- coding: utf-8 -*- # (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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,...
13,846
Python
.py
269
41.561338
154
0.649379
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,076
conditional.py
ansible_ansible/lib/ansible/playbook/conditional.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
4,863
Python
.py
97
40.268041
125
0.636
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,077
delegatable.py
ansible_ansible/lib/ansible/playbook/delegatable.py
# -*- coding: utf-8 -*- # Copyright The Ansible project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations from ansible.playbook.attribute import FieldAttribute class Delegatable: delegate_to = FieldAttribute(isa='string') delegate_...
625
Python
.py
13
43.384615
92
0.717105
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,078
taggable.py
ansible_ansible/lib/ansible/playbook/taggable.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
3,179
Python
.py
75
33.666667
92
0.627388
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,079
block.py
ansible_ansible/lib/ansible/playbook/block.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
16,529
Python
.py
371
32.067385
139
0.573
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,080
attribute.py
ansible_ansible/lib/ansible/playbook/attribute.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
7,663
Python
.py
161
37.950311
121
0.63153
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,081
role_include.py
ansible_ansible/lib/ansible/playbook/role_include.py
# # This file is part of Ansible # # Ansible 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) any later version. # # Ansible is distributed in the hope tha...
7,575
Python
.py
135
48.274074
143
0.677476
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,082
included_file.py
ansible_ansible/lib/ansible/playbook/included_file.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
11,735
Python
.py
193
38.559585
151
0.501043
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,083
__init__.py
ansible_ansible/lib/ansible/playbook/__init__.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
4,740
Python
.py
93
42.11828
141
0.664649
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,084
collectionsearch.py
ansible_ansible/lib/ansible/playbook/collectionsearch.py
# Copyright: (c) 2019, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations from ansible.module_utils.six import string_types from ansible.playbook.attribute import FieldAttribute from ansible.utils.collection_loader import Ans...
2,601
Python
.py
44
51.409091
115
0.716818
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,085
base.py
ansible_ansible/lib/ansible/playbook/base.py
# Copyright: (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # Copyright: (c) 2017, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import decimal import itertools import operator import os from copy import copy ...
33,536
Python
.py
649
39.405239
151
0.60022
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,086
task.py
ansible_ansible/lib/ansible/playbook/task.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
20,466
Python
.py
427
37.405152
135
0.6181
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,087
handler_task_include.py
ansible_ansible/lib/ansible/playbook/handler_task_include.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
1,391
Python
.py
30
42.866667
97
0.757016
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,088
playbook_include.py
ansible_ansible/lib/ansible/playbook/playbook_include.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
7,492
Python
.py
137
45.656934
144
0.681142
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,089
loop_control.py
ansible_ansible/lib/ansible/playbook/loop_control.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
2,022
Python
.py
39
47.871795
105
0.757975
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,090
helpers.py
ansible_ansible/lib/ansible/playbook/helpers.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
15,561
Python
.py
285
37.280702
155
0.550886
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,091
notifiable.py
ansible_ansible/lib/ansible/playbook/notifiable.py
# -*- coding: utf-8 -*- # Copyright The Ansible project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations from ansible.playbook.attribute import FieldAttribute class Notifiable: notify = FieldAttribute(isa='list')
299
Python
.py
7
40.714286
92
0.764706
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,092
task_include.py
ansible_ansible/lib/ansible/playbook/task_include.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
5,258
Python
.py
103
42.378641
125
0.648743
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,093
handler.py
ansible_ansible/lib/ansible/playbook/handler.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
2,925
Python
.py
63
39.52381
122
0.681658
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,094
definition.py
ansible_ansible/lib/ansible/playbook/role/definition.py
# (c) 2014 Michael DeHaan, <michael@ansible.com> # # This file is part of Ansible # # Ansible 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) any later ve...
9,550
Python
.py
189
42.05291
119
0.664734
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,095
include.py
ansible_ansible/lib/ansible/playbook/role/include.py
# (c) 2014 Michael DeHaan, <michael@ansible.com> # # This file is part of Ansible # # Ansible 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) any later ve...
2,342
Python
.py
40
53.9
150
0.754148
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,096
requirement.py
ansible_ansible/lib/ansible/playbook/role/requirement.py
# (c) 2014 Michael DeHaan, <michael@ansible.com> # # This file is part of Ansible # # Ansible 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) any later ve...
4,173
Python
.py
101
32.029703
140
0.581418
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,097
metadata.py
ansible_ansible/lib/ansible/playbook/role/metadata.py
# (c) 2014 Michael DeHaan, <michael@ansible.com> # # This file is part of Ansible # # Ansible 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) any later ve...
5,074
Python
.py
98
42.520408
120
0.668819
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,098
__init__.py
ansible_ansible/lib/ansible/playbook/role/__init__.py
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com> # # This file is part of Ansible # # Ansible 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) an...
29,713
Python
.py
574
40.722997
156
0.62282
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)
14,099
manager.py
ansible_ansible/lib/ansible/config/manager.py
# Copyright: (c) 2017, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import annotations import atexit import decimal import configparser import os import os.path import sys import stat import tempfile from collections import namedtuple fr...
29,319
Python
.py
569
38.622144
155
0.577758
ansible/ansible
62,258
23,791
861
GPL-3.0
9/5/2024, 5:11:58 PM (Europe/Amsterdam)