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
31,100
flowexport.py
viewflow_viewflow/viewflow/management/commands/flowexport.py
from __future__ import unicode_literals from django.core.management.base import BaseCommand, CommandError from viewflow.workflow import chart from viewflow.workflow.fields import import_flow_by_ref class Command(BaseCommand): help = "Export flow graph" def add_arguments(self, parser): parser.add_arg...
2,082
Python
.py
59
24.491525
74
0.546448
viewflow/viewflow
2,653
402
24
AGPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,101
auth.py
viewflow_viewflow/viewflow/contrib/auth.py
# Copyright (c) 2017-2020, Mikhail Podgurskiy # All Rights Reserved. # This work is dual-licensed under AGPL defined in file 'LICENSE' with # LICENSE_EXCEPTION and the Commercial license defined in file 'COMM_LICENSE', # which is part of this source code package. import random from datetime import datetime from urlli...
15,773
Python
.py
415
29.375904
102
0.628972
viewflow/viewflow
2,653
402
24
AGPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,102
apps.py
viewflow_viewflow/viewflow/contrib/admin/apps.py
from django.apps import AppConfig # Copyright (c) 2017-2020, Mikhail Podgurskiy # All Rights Reserved. # This work is dual-licensed under AGPL defined in file 'LICENSE' with # LICENSE_EXCEPTION and the Commercial license defined in file 'COMM_LICENSE', # which is part of this source code package. class ViewflowAdmi...
444
Python
.py
10
41.7
78
0.773893
viewflow/viewflow
2,653
402
24
AGPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,103
__init__.py
viewflow_viewflow/viewflow/contrib/admin/__init__.py
# Copyright (c) 2017-2020, Mikhail Podgurskiy # All Rights Reserved. # This work is dual-licensed under AGPL defined in file 'LICENSE' with # LICENSE_EXCEPTION and the Commercial license defined in file 'COMM_LICENSE', # which is part of this source code package. from django.contrib import admin from django.utils.tra...
1,382
Python
.py
39
29.153846
78
0.662152
viewflow/viewflow
2,653
402
24
AGPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,104
material.py
viewflow_viewflow/viewflow/contrib/plotly/material.py
"""Shortcuts for Material Design Dashboards""" from dash import html def PageGrid(children, **kwargs): return html.Div(children, className="mdc-layout-grid vf-page__grid", **kwargs) def InnerGrid(children, **kwargs): return html.Div( children, className="mdc-layout-grid__inner vf-page__grid-inner",...
2,307
Python
.py
58
33.086207
97
0.651467
viewflow/viewflow
2,653
402
24
AGPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,105
__init__.py
viewflow_viewflow/viewflow/contrib/plotly/__init__.py
from .viewset import Dashboard from .views import DashboardView __all__ = ( "Dashboard", "DashboardView", ) # TODO badge # TODO card
145
Python
.py
8
15.625
32
0.721805
viewflow/viewflow
2,653
402
24
AGPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,106
views.py
viewflow_viewflow/viewflow/contrib/plotly/views.py
import json import re from django.http import HttpResponse, JsonResponse from django.views.decorators.csrf import csrf_exempt from django.views.decorators.http import require_POST from django.views.generic import TemplateView def _extract_urls(data): """ Given html string of <script src=""> tags, extracts lis...
2,557
Python
.py
58
37.068966
209
0.664384
viewflow/viewflow
2,653
402
24
AGPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,107
viewset.py
viewflow_viewflow/viewflow/contrib/plotly/viewset.py
from django.urls import path from django.utils.functional import cached_property from viewflow.urls import AppMenuMixin, Viewset from viewflow.utils import viewprop, DEFAULT from dash import Dash from . import views class Dashboard(AppMenuMixin, Viewset): layout = None dashboard_template_name = DEFAULT ...
2,257
Python
.py
66
27.151515
88
0.639042
viewflow/viewflow
2,653
402
24
AGPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,108
setup.py
GNS3_gns3-gui/setup.py
# -*- coding: utf-8 -*- # # Copyright (C) 2013 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
4,577
Python
.py
94
41.191489
135
0.65333
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,109
fake_frozen_gns3.py
GNS3_gns3-gui/fake_frozen_gns3.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
1,311
Python
.py
33
38.515152
82
0.775767
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,110
conftest.py
GNS3_gns3-gui/tests/conftest.py
# -*- coding: utf-8 -*- import pytest import os import uuid from unittest.mock import MagicMock import tempfile import urllib.request import sys sys._called_from_test = True sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))) # If the QT application is not initialized we can got segfault f...
6,901
Python
.py
194
30.608247
108
0.701085
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,111
test_image_upload_manager.py
GNS3_gns3-gui/tests/test_image_upload_manager.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
3,065
Python
.py
74
36.554054
123
0.727884
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,112
test_compute.py
GNS3_gns3-gui/tests/test_compute.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
1,376
Python
.py
40
30.525
71
0.691497
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,113
test_local_config.py
GNS3_gns3-gui/tests/test_local_config.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
13,760
Python
.py
305
33.721311
136
0.552229
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,114
test_progress.py
GNS3_gns3-gui/tests/test_progress.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,496
Python
.py
34
40.235294
79
0.741071
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,115
test_controller.py
GNS3_gns3-gui/tests/test_controller.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
1,733
Python
.py
43
37.255814
83
0.756837
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,116
test_main_window.py
GNS3_gns3-gui/tests/test_main_window.py
# -*- coding: utf-8 -*- # # Copyright (C) 2018 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,420
Python
.py
35
37.857143
71
0.769063
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,117
test_http_client.py
GNS3_gns3-gui/tests/test_http_client.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
12,021
Python
.py
256
42.066406
169
0.723008
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,118
test_update_manager.py
GNS3_gns3-gui/tests/test_update_manager.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
3,575
Python
.py
95
33.042105
77
0.667728
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,119
test_topology.py
GNS3_gns3-gui/tests/test_topology.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
3,515
Python
.py
87
35.091954
185
0.649575
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,120
test_vnc_console.py
GNS3_gns3-gui/tests/test_vnc_console.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
2,221
Python
.py
43
46.906977
91
0.688797
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,121
test_utils.py
GNS3_gns3-gui/tests/test_utils.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
1,592
Python
.py
30
50.3
87
0.694284
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,122
test_spice_console.py
GNS3_gns3-gui/tests/test_spice_console.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
2,574
Python
.py
50
46.9
87
0.689216
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,123
test_project.py
GNS3_gns3-gui/tests/test_project.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
5,577
Python
.py
146
32.486301
78
0.645814
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,124
test_network_client.py
GNS3_gns3-gui/tests/test_network_client.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,184
Python
.py
22
51.818182
146
0.764706
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,125
test_compute_manager.py
GNS3_gns3-gui/tests/test_compute_manager.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
5,639
Python
.py
154
30.876623
119
0.661541
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,126
test_image_manager.py
GNS3_gns3-gui/tests/test_image_manager.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
3,341
Python
.py
71
43.676056
118
0.748538
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,127
test_local_server.py
GNS3_gns3-gui/tests/test_local_server.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
3,610
Python
.py
78
40.423077
113
0.699145
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,128
test_graphics_view.py
GNS3_gns3-gui/tests/test_graphics_view.py
#!/usr/bin/env python # # Copyright (C) 2017 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
1,354
Python
.py
31
40.258065
72
0.750758
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,129
test_link.py
GNS3_gns3-gui/tests/test_link.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
4,660
Python
.py
103
40.553398
214
0.687735
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,130
test_node.py
GNS3_gns3-gui/tests/test_node.py
# -*- coding: utf-8 -*- # # Copyright (C) 2013 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
5,698
Python
.py
159
28.201258
89
0.613488
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,131
test_image_item.py
GNS3_gns3-gui/tests/items/test_image_item.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
1,509
Python
.py
36
39.361111
92
0.746064
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,132
test_text_item.py
GNS3_gns3-gui/tests/items/test_text_item.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
2,039
Python
.py
52
35.673077
71
0.715008
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,133
test_ellipse_item.py
GNS3_gns3-gui/tests/items/test_ellipse_item.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
1,997
Python
.py
42
44.357143
173
0.71546
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,134
test_line_item.py
GNS3_gns3-gui/tests/items/test_line_item.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
4,453
Python
.py
101
39.188119
159
0.657822
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,135
test_rectangle_item.py
GNS3_gns3-gui/tests/items/test_rectangle_item.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
3,050
Python
.py
68
39.941176
186
0.675876
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,136
test_label_item.py
GNS3_gns3-gui/tests/items/test_label_item.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
2,106
Python
.py
59
31.559322
155
0.708538
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,137
test_file_copy_worker.py
GNS3_gns3-gui/tests/utils/test_file_copy_worker.py
# -*- coding: utf-8 -*- # # Copyright (C) 2017 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,394
Python
.py
35
36.8
71
0.75074
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,138
test_server_select.py
GNS3_gns3-gui/tests/utils/test_server_select.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
3,705
Python
.py
71
46.507042
108
0.719045
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,139
test_virtualbox_vm.py
GNS3_gns3-gui/tests/modules/virtualbox/test_virtualbox_vm.py
# -*- coding: utf-8 -*- # # Copyright (C) 2013 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,574
Python
.py
36
39.527778
96
0.707924
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,140
test_dynamips_init.py
GNS3_gns3-gui/tests/modules/dynamips/test_dynamips_init.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,486
Python
.py
30
46.266667
110
0.756906
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,141
test_docker_vm.py
GNS3_gns3-gui/tests/modules/docker/test_docker_vm.py
# -*- coding: utf-8 -*- # # Copyright (C) 2013 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,478
Python
.py
36
37.611111
72
0.726639
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,142
test_vpcs_device.py
GNS3_gns3-gui/tests/modules/vpcs/test_vpcs_device.py
# -*- coding: utf-8 -*- # # Copyright (C) 2013 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,637
Python
.py
38
39.052632
96
0.712846
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,143
test_iou_device.py
GNS3_gns3-gui/tests/modules/iou/test_iou_device.py
# -*- coding: utf-8 -*- # # Copyright (C) 2013 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,841
Python
.py
47
35.255319
94
0.707468
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,144
test_qemu_vm.py
GNS3_gns3-gui/tests/modules/qemu/test_qemu_vm.py
# -*- coding: utf-8 -*- # # Copyright (C) 2013 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,526
Python
.py
37
36.810811
78
0.690798
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,145
test_qimage_svg_renderer.py
GNS3_gns3-gui/tests/qt/test_qimage_svg_renderer.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
1,285
Python
.py
31
39.096774
74
0.768489
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,146
test_image.py
GNS3_gns3-gui/tests/registry/test_image.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
2,304
Python
.py
54
39.166667
82
0.736889
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,147
test_appliance.py
GNS3_gns3-gui/tests/registry/test_appliance.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
9,492
Python
.py
181
46.569061
125
0.698559
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,148
test_config.py
GNS3_gns3-gui/tests/registry/test_config.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your optio...
2,898
Python
.py
89
25.460674
80
0.593638
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,149
test_registry.py
GNS3_gns3-gui/tests/registry/test_registry.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your optio...
2,185
Python
.py
46
43.804348
97
0.692525
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,150
test_appliance_to_template.py
GNS3_gns3-gui/tests/registry/test_appliance_to_template.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
13,506
Python
.py
365
29.539726
112
0.596686
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,151
link.py
GNS3_gns3-gui/gns3/link.py
# -*- coding: utf-8 -*- # # Copyright (C) 2013 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
18,225
Python
.py
396
32.939394
201
0.558505
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,152
template.py
GNS3_gns3-gui/gns3/template.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
3,592
Python
.py
101
27.930693
118
0.62105
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,153
nodes_dock_widget.py
GNS3_gns3-gui/gns3/nodes_dock_widget.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
1,513
Python
.py
31
45.129032
101
0.752542
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,154
project.py
GNS3_gns3-gui/gns3/project.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
26,199
Python
.py
606
33.20297
181
0.607029
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,155
console_view.py
GNS3_gns3-gui/gns3/console_view.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
9,947
Python
.py
242
30.77686
160
0.589595
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,156
image_upload_manager.py
GNS3_gns3-gui/gns3/image_upload_manager.py
# -*- coding: utf-8 -*- # # Copyright (C) 2017 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
4,168
Python
.py
77
45.844156
155
0.681216
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,157
local_server_config.py
GNS3_gns3-gui/gns3/local_server_config.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
5,278
Python
.py
129
31.744186
108
0.6174
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,158
__main__.py
GNS3_gns3-gui/gns3/__main__.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
736
Python
.py
18
39.777778
71
0.776536
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,159
http_client.py
GNS3_gns3-gui/gns3/http_client.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
36,414
Python
.py
728
38.563187
265
0.616955
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,160
symbol.py
GNS3_gns3-gui/gns3/symbol.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
1,234
Python
.py
33
33.212121
81
0.708054
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,161
settings.py
GNS3_gns3-gui/gns3/settings.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
19,549
Python
.py
329
48.325228
281
0.5886
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,162
appliance_manager.py
GNS3_gns3-gui/gns3/appliance_manager.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
3,070
Python
.py
74
34.716216
192
0.684582
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,163
topology_summary_view.py
GNS3_gns3-gui/gns3/topology_summary_view.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
15,220
Python
.py
360
31.883333
120
0.607346
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,164
style.py
GNS3_gns3-gui/gns3/style.py
# -*- coding: utf-8 -*- # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
17,192
Python
.py
190
82.457895
170
0.718711
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,165
packet_capture.py
GNS3_gns3-gui/gns3/packet_capture.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
11,255
Python
.py
240
35.4125
156
0.597302
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,166
nodes_view.py
GNS3_gns3-gui/gns3/nodes_view.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
8,501
Python
.py
185
37.205405
115
0.66332
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,167
controller.py
GNS3_gns3-gui/gns3/controller.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
19,105
Python
.py
412
35.762136
181
0.615591
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,168
base_node.py
GNS3_gns3-gui/gns3/base_node.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
8,604
Python
.py
258
25.073643
83
0.60305
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,169
status_bar.py
GNS3_gns3-gui/gns3/status_bar.py
#!/usr/bin/env python # # Copyright (C) 2017 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
2,732
Python
.py
77
28.467532
72
0.627273
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,170
network_client.py
GNS3_gns3-gui/gns3/network_client.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,630
Python
.py
36
40.861111
109
0.705104
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,171
vnc_console.py
GNS3_gns3-gui/gns3/vnc_console.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
2,771
Python
.py
65
38.123077
89
0.674091
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,172
console_cmd.py
GNS3_gns3-gui/gns3/console_cmd.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
9,666
Python
.py
252
25.361111
109
0.494395
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,173
local_config.py
GNS3_gns3-gui/gns3/local_config.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
20,698
Python
.py
421
37.631829
252
0.599336
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,174
compute.py
GNS3_gns3-gui/gns3/compute.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
5,303
Python
.py
174
22.229885
71
0.578521
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,175
crash_report.py
GNS3_gns3-gui/gns3/crash_report.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
6,351
Python
.py
132
37.212121
133
0.612799
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,176
compute_summary_view.py
GNS3_gns3-gui/gns3/compute_summary_view.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
5,961
Python
.py
130
35.815385
126
0.616339
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,177
pycutext.py
GNS3_gns3-gui/gns3/pycutext.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
12,152
Python
.py
332
27.024096
102
0.576458
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,178
template_manager.py
GNS3_gns3-gui/gns3/template_manager.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
8,417
Python
.py
197
33.19797
136
0.624388
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,179
spice_console.py
GNS3_gns3-gui/gns3/spice_console.py
# -*- coding: utf-8 -*- # # Copyright (C) 2017 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
2,766
Python
.py
67
36.686567
91
0.674981
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,180
progress.py
GNS3_gns3-gui/gns3/progress.py
# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
10,501
Python
.py
225
36.222222
131
0.622533
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,181
logger.py
GNS3_gns3-gui/gns3/logger.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your optio...
4,354
Python
.py
103
34.854369
136
0.646238
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,182
compute_manager.py
GNS3_gns3-gui/gns3/compute_manager.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
9,025
Python
.py
215
32.632558
114
0.622945
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,183
graphics_view.py
GNS3_gns3-gui/gns3/graphics_view.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
69,668
Python
.py
1,422
36.895218
259
0.601845
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,184
telnet_console.py
GNS3_gns3-gui/gns3/telnet_console.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
6,213
Python
.py
136
37.897059
109
0.643933
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,185
node.py
GNS3_gns3-gui/gns3/node.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
28,212
Python
.py
696
29.699713
208
0.569514
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,186
main_window.py
GNS3_gns3-gui/gns3/main_window.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
55,778
Python
.py
1,224
35.09232
209
0.637851
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,187
local_server.py
GNS3_gns3-gui/gns3/local_server.py
#!/usr/bin/env python # # Copyright (C) 2016 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
24,347
Python
.py
521
34.940499
217
0.59909
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,188
application.py
GNS3_gns3-gui/gns3/application.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
2,866
Python
.py
56
43.946429
242
0.690383
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,189
update_manager.py
GNS3_gns3-gui/gns3/update_manager.py
#!/usr/bin/env python # # Copyright (C) 2015 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. # ...
11,356
Python
.py
221
38.665158
197
0.601874
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,190
version.py
GNS3_gns3-gui/gns3/version.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
1,488
Python
.py
33
42.030303
101
0.703653
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,191
main.py
GNS3_gns3-gui/gns3/main.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your optio...
12,353
Python
.py
263
39.608365
124
0.671819
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,192
topology.py
GNS3_gns3-gui/gns3/topology.py
# -*- coding: utf-8 -*- # # Copyright (C) 2013 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
19,801
Python
.py
466
32.521459
251
0.618056
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,193
image_manager.py
GNS3_gns3-gui/gns3/image_manager.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
8,158
Python
.py
164
37.70122
183
0.612527
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,194
logo_item.py
GNS3_gns3-gui/gns3/items/logo_item.py
# -*- coding: utf-8 -*- # # Copyright (C) 2018 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
4,404
Python
.py
103
35.572816
108
0.673149
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,195
ethernet_link_item.py
GNS3_gns3-gui/gns3/items/ethernet_link_item.py
# -*- coding: utf-8 -*- # # Copyright (C) 2019 Pekka Helenius # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # ...
10,344
Python
.py
171
49.28655
236
0.64562
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,196
node_item.py
GNS3_gns3-gui/gns3/items/node_item.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
19,182
Python
.py
483
30.200828
124
0.607699
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,197
ellipse_item.py
GNS3_gns3-gui/gns3/items/ellipse_item.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
2,145
Python
.py
52
36.096154
71
0.676938
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,198
shape_item.py
GNS3_gns3-gui/gns3/items/shape_item.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
7,539
Python
.py
171
33.134503
112
0.570357
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)
31,199
link_item.py
GNS3_gns3-gui/gns3/items/link_item.py
# -*- coding: utf-8 -*- # # Copyright (C) 2014 GNS3 Technologies Inc. # # 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 3 of the License, or # (at your option) any later version. ...
20,960
Python
.py
477
32.939203
147
0.590534
GNS3/gns3-gui
2,095
432
147
GPL-3.0
9/5/2024, 5:14:22 PM (Europe/Amsterdam)