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
10,800
kodi_test.py
novoid_Memacs/memacs/tests/kodi_test.py
# -*- coding: utf-8 -*- import os import unittest from memacs.kodi import Kodi class TestKodi(unittest.TestCase): def setUp(self): log_file = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'data', 'kodi_audio.log') argv = [] argv.append("-f") ar...
5,212
Python
.py
122
33.04918
86
0.547047
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,801
arbtt_test.py
novoid_Memacs/memacs/tests/arbtt_test.py
# -*- coding: utf-8 -*- # Time-stamp: <2011-10-28 15:13:31> import os import unittest from memacs.arbtt import Arbtt class TestArbtt(unittest.TestCase): def setUp(self): self.memacs = Arbtt() self.sample = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'data', 'sample-ar...
1,521
Python
.py
39
30.846154
84
0.573279
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,802
simplephonelogs_test.py
novoid_Memacs/memacs/tests/simplephonelogs_test.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Time-stamp: <2018-08-25 15:07:37 vk> import os import shutil import tempfile import unittest from memacs.lib.reader import CommonReader from memacs.simplephonelogs import SimplePhoneLogsMemacs ## FIXXME: (Note) These test are *not* exhaustive unit tests. They only ##...
14,394
Python
.py
416
29.663462
101
0.601785
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,803
rss_test.py
novoid_Memacs/memacs/tests/rss_test.py
# -*- coding: utf-8 -*- # Time-stamp: <2018-08-25 14:44:23 vk> import os import unittest from memacs.rss import RssMemacs class TestRss(unittest.TestCase): def setUp(self): self.test_file = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'data', 'sample-rss.txt' ...
1,500
Python
.py
41
27.536585
94
0.566598
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,804
git_test.py
novoid_Memacs/memacs/tests/git_test.py
# -*- coding: utf-8 -*- # Time-stamp: <2011-10-28 15:13:31 aw> import os import unittest from memacs.git import Commit from memacs.git import GitMemacs class TestCommit(unittest.TestCase): def test_ID_empty(self): c = Commit() self.assertTrue(c.is_empty()) def test_ID(self): c = Co...
6,748
Python
.py
178
26.932584
75
0.522814
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,805
battery_test.py
novoid_Memacs/memacs/tests/battery_test.py
# -*- coding: utf-8 -*- import os import unittest from memacs.battery import Battery class TestCsv(unittest.TestCase): def test_battery(self): path = os.path.dirname(os.path.abspath(__file__)) argv = [] argv.append("-p") argv.append(os.path.join(path, "data")) memacs ...
725
Python
.py
18
33.222222
65
0.598854
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,806
phonecalls_superbackup_test.py
novoid_Memacs/memacs/tests/phonecalls_superbackup_test.py
# -*- coding: utf-8 -*- import os import unittest from memacs.phonecalls_superbackup import PhonecallsSuperBackupMemacs class TestPhonecallsSuperBackup(unittest.TestCase): def setUp(self): self._test_file = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'data', 'calls_...
1,746
Python
.py
37
38.27027
114
0.596244
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,807
photos_test.py
novoid_Memacs/memacs/tests/photos_test.py
# -*- coding: utf-8 -*- # Time-stamp: <2014-05-03 17:46:44 vk> import os import unittest from memacs.photos import PhotosMemacs class TestPhotoMemacs(unittest.TestCase): def test_from_file(self): test_path = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'data' ) ...
888
Python
.py
25
27.52
70
0.57243
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,808
whatsapp_test.py
novoid_Memacs/memacs/tests/whatsapp_test.py
# -*- coding: utf-8 -*- # Time-stamp: <2018-09-22 13:57:41 vk> import os import unittest from memacs.whatsapp import WhatsApp class TestWhatsApp(unittest.TestCase): def setUp(self): msgstore = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'data', 'msgstore.db' ) ...
1,214
Python
.py
27
37.555556
98
0.623939
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,809
filenametimestamps_test.py
novoid_Memacs/memacs/tests/filenametimestamps_test.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Time-stamp: <2019-10-09 15:12:44 vk> import datetime import os import shutil import tempfile import unittest from memacs.filenametimestamps import FileNameTimeStamps class TestFileNameTimeStamps(unittest.TestCase): def setUp(self): self._tmp_dir = tempfi...
17,177
Python
.py
246
62.772358
178
0.641976
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,810
example_test.py
novoid_Memacs/memacs/tests/example_test.py
# -*- coding: utf-8 -*- # Time-stamp: <2018-08-25 14:16:04 vk> import unittest from memacs.example import Foo class TestFoo(unittest.TestCase): def setUp(self): pass def test_all(self): argv = "-s" memacs = Foo(argv=argv.split()) # or when in append mode: # memacs =...
1,663
Python
.py
55
20.272727
73
0.482176
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,811
ical_test.py
novoid_Memacs/memacs/tests/ical_test.py
# -*- coding: utf-8 -*- # Time-stamp: <2016-01-23 18:07:46 vk> import os import re import tempfile import time import unittest from memacs.ical import CalendarMemacs class TestCalendar(unittest.TestCase): def test_all(self): test_file = os.path.join( os.path.dirname(os.path.abspath(__file__...
23,666
Python
.py
664
23.11747
213
0.447775
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,812
svn_test.py
novoid_Memacs/memacs/tests/svn_test.py
# -*- coding: utf-8 -*- # Time-stamp: <2018-08-26 21:40:32 vk> import os import unittest from memacs.svn import SvnMemacs class TestSvnMemacs(unittest.TestCase): def setUp(self): test_file = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'data', 'svn-log-xml.txt' ...
3,840
Python
.py
114
22.675439
91
0.5
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,813
gpx_test.py
novoid_Memacs/memacs/tests/gpx_test.py
# -*- coding: utf-8 -*- import os import unittest from memacs.gpx import GPX class TestGPX(unittest.TestCase): def test_google(self): sample = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'data', 'sample.gpx' ) argv = [] argv.append('-f') argv.a...
2,827
Python
.py
71
28.098592
150
0.53012
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,814
memacs-mbox.py
novoid_Memacs/tmp/emails/mbox/works-for-me-hack/memacs-mbox.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import os import sys import re import time import logging from optparse import OptionParser # TODO: # - add command line argument to define link name to real content # currently: "file:INPUTFILE::ID" is used # desired: "mylinkname:INPUTFILE::ID" should be used # ...
12,230
Python
.py
257
38.719844
235
0.585998
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,815
memacs-filenametimestamps.py
novoid_Memacs/tmp/filenametimestamps/memacs-filenametimestamps.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import os import sys import re import time import logging from optparse import OptionParser PROG_VERSION_NUMBER = "0.2" PROG_VERSION_DATE = "2011-10-10" INVOCATION_TIME = time.strftime("%Y-%m-%dT%H:%M:%S", time.localtime()) MATCHING_LEVEL = {'day': 1, 'minutes': 2, 'seco...
9,104
Python
.py
168
47.738095
147
0.645612
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,816
memacs-easybank.py
novoid_Memacs/tmp/bank_statements/easybank.at/memacs-easybank.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Time-stamp: <2020-03-24 21:54:58 vk> import os import sys import re import time import logging from optparse import OptionParser import codecs ## for writing unicode file import pdb ## TODO: ## * fix parts marked with «FIXXME» PROG_VERSION_NUMBER = "0.1" PROG_VERSION_...
14,765
Python
.py
285
44.852632
127
0.640323
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,817
contactparser.py
novoid_Memacs/memacs/lib/contactparser.py
import logging import re from bbdb.database import BBDB def sanitize_phonenumber(phonenumber): """ Convert phonenumber to digits only """ sanitized_phonenumber = phonenumber.strip().replace('-','').replace('/','').replace(' ','').replace('+','00') return sanitized_phonenumber def parse_org_con...
3,597
Python
.tac
79
37.278481
226
0.632846
novoid/Memacs
1,003
67
17
GPL-3.0
9/5/2024, 5:10:54 PM (Europe/Amsterdam)
10,818
tagger.py.in
metabrainz_picard/tagger.py.in
#!/usr/bin/env python3 import os import sys sys.path.insert(0, '.') # This is needed to find resources when using pyinstaller if getattr(sys, 'frozen', False) and hasattr(sys, '_MEIPASS'): basedir = getattr(sys, '_MEIPASS', '') else: basedir = os.path.dirname(os.path.abspath(__file__)) from picard import r...
447
Python
.py
13
32.307692
62
0.742991
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,819
setup.py
metabrainz_picard/setup.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2006-2008, 2011-2014, 2017 Lukáš Lalinský # Copyright (C) 2007 Santiago M. Mola # Copyright (C) 2008 Robert Kaye # Copyright (C) 2008-2009, 2018-2024 Philipp Wolfer # Copyright (C) 2009 Carlin Mangar # Co...
30,345
Python
.py
720
32.85
134
0.596199
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,820
.pylintrc
metabrainz_picard/.pylintrc
[MAIN] # Analyse import fallback blocks. This can be used to support both Python 2 and # 3 compatible code, which means that the block might have code that exists # only in one or another interpreter, leading to false positives when analysed. analyse-fallback-blocks=no # Clear in-memory caches upon conclusion of lint...
32,229
Python
.py
815
34.422086
166
0.737284
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,821
test_script.py
metabrainz_picard/test/test_script.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2007 Lukáš Lalinský # Copyright (C) 2010, 2014, 2018-2022 Philipp Wolfer # Copyright (C) 2012 Chad Wilson # Copyright (C) 2013 Michael Wiencek # Copyright (C) 2013, 2017-2021 Laurent Monin # Copyright (C) 2014, 2017 Sophist-UK ...
117,478
Python
.py
2,062
47.916101
168
0.635721
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,822
test_bytes2human.py
metabrainz_picard/test/test_bytes2human.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2013, 2019-2021 Laurent Monin # Copyright (C) 2014, 2017 Sophist-UK # Copyright (C) 2017 Sambhav Kothari # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2018-2020 Philipp Wolfer # # This program is free software; you can ...
4,571
Python
.py
98
38.77551
84
0.652242
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,823
test_releaseversions.py
metabrainz_picard/test/test_releaseversions.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2013, 2018, 2020-2021 Laurent Monin # Copyright (C) 2014 Michael Wiencek # Copyright (C) 2017 Sambhav Kothari # Copyright (C) 2017 Sophist-UK # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2019-2020 Philipp Wolfer # # Th...
6,557
Python
.py
106
54.226415
295
0.597669
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,824
test_util_lrucache.py
metabrainz_picard/test/test_util_lrucache.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019-2021 Laurent Monin # Copyright (C) 2020 Philipp Wolfer # # 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 Fou...
2,955
Python
.py
70
35.957143
80
0.671076
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,825
test_track.py
metabrainz_picard/test/test_track.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Laurent Monin # Copyright (C) 2021-2022 Philipp Wolfer # # 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 Fou...
3,208
Python
.py
72
38.666667
80
0.672115
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,826
test_imagelist.py
metabrainz_picard/test/test_imagelist.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2018-2019 Wieland Hoffmann # Copyright (C) 2018-2021 Laurent Monin # Copyright (C) 2018-2021 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public...
16,273
Python
.py
312
44.102564
102
0.684386
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,827
test_settingsoverride.py
metabrainz_picard/test/test_settingsoverride.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019-2021 Laurent Monin # Copyright (C) 2020 Philipp Wolfer # # 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 Fou...
2,766
Python
.py
59
41.101695
80
0.697364
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,828
test_util_bitreader.py
metabrainz_picard/test/test_util_bitreader.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Laurent Monin # Copyright (C) 2021 Philipp Wolfer # # 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 Foundati...
1,553
Python
.py
39
36.153846
80
0.73506
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,829
test_parsing_files_with_commands.py
metabrainz_picard/test/test_parsing_files_with_commands.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2022 skelly37 # Copyright (C) 2022 Bob Swift # # 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...
2,542
Python
.py
54
41.740741
84
0.720695
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,830
picardtestcase.py
metabrainz_picard/test/picardtestcase.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2019-2024 Philipp Wolfer # Copyright (C) 2020-2021 Laurent Monin # Copyright (C) 2021 Bob Swift # # This program is free software; you can redistribute it and/or # modify it under the terms...
4,263
Python
.py
119
29.983193
99
0.677357
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,831
test_util_pipe.py
metabrainz_picard/test/test_util_pipe.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2022 skelly37 # Copyright (C) 2023 Philipp Wolfer # # 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; e...
2,500
Python
.py
60
35
91
0.687397
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,832
test_taggenrefilter.py
metabrainz_picard/test/test_taggenrefilter.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019 Wieland Hoffmann # Copyright (C) 2019-2021 Laurent Monin # Copyright (C) 2020-2021 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public Lice...
6,500
Python
.py
160
32.4
80
0.62603
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,833
test_textencoding.py
metabrainz_picard/test/test_textencoding.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2014, 2017 Sophist-UK # Copyright (C) 2015, 2018, 2020-2021 Laurent Monin # Copyright (C) 2017 Ville Skyttä # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2018-2019, 2021 Philipp Wolfer # Copyright (C) 2020 Undearius # #...
19,648
Python
.py
245
62.15102
142
0.705911
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,834
test_amazon_urls.py
metabrainz_picard/test/test_amazon_urls.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2013, 2018, 2020-2021 Laurent Monin # Copyright (C) 2016 barami # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2020 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the t...
2,633
Python
.py
60
38.483333
164
0.684889
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,835
test_versions.py
metabrainz_picard/test/test_versions.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2013-2014, 2018-2020 Laurent Monin # Copyright (C) 2017 Sambhav Kothari # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2018-2020 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify i...
6,619
Python
.py
145
37.993103
103
0.601707
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,836
test_tagsfromfilenames.py
metabrainz_picard/test/test_tagsfromfilenames.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2020 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licen...
3,739
Python
.py
77
41.077922
86
0.656532
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,837
test_audit.py
metabrainz_picard/test/test_audit.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2023 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licens...
3,537
Python
.py
75
41.306667
102
0.617101
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,838
test_util_time.py
metabrainz_picard/test/test_util_time.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Gabriel Ferreira # Copyright (C) 2021 Laurent Monin # Copyright (C) 2021 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as p...
2,590
Python
.py
53
43.811321
80
0.694862
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,839
test_util_thread.py
metabrainz_picard/test/test_util_thread.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2024 Giorgio Fontanive # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Li...
4,330
Python
.py
107
33.700935
108
0.683484
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,840
test_util_cdrom.py
metabrainz_picard/test/test_util_cdrom.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licen...
3,920
Python
.py
109
32.229358
88
0.708894
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,841
test_ui_options_plugins.py
metabrainz_picard/test/test_ui_options_plugins.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2022 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licen...
1,228
Python
.py
27
42.666667
95
0.755017
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,842
test_ratecontrol.py
metabrainz_picard/test/test_ratecontrol.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2024 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licen...
1,756
Python
.py
38
42.236842
80
0.74605
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,843
test_similarity.py
metabrainz_picard/test/test_similarity.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2006 Lukáš Lalinský # Copyright (C) 2013, 2018-2021 Laurent Monin # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2021 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the...
2,834
Python
.py
80
29.525
80
0.629861
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,844
test_debug_opt.py
metabrainz_picard/test/test_debug_opt.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2024 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licens...
3,950
Python
.py
87
38.724138
80
0.716775
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,845
test_log.py
metabrainz_picard/test/test_log.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Gabriel Ferreira # Copyright (C) 2021, 2024 Laurent Monin # Copyright (C) 2021 Philipp Wolfer # Copyright (C) 2024 Bob Swift # # This program is free software; you can redistribute it and/or # modify it under the terms of ...
18,197
Python
.py
338
46.66568
120
0.689768
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,846
test_collection.py
metabrainz_picard/test/test_collection.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2024 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licen...
6,995
Python
.py
155
37.290323
99
0.679472
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,847
test_util_tags.py
metabrainz_picard/test/test_util_tags.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019-2020 Philipp Wolfer # Copyright (C) 2020-2021 Laurent Monin # # 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 Softwar...
1,930
Python
.py
41
43.170732
80
0.70882
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,848
test_coverart_image.py
metabrainz_picard/test/test_coverart_image.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019, 2021-2024 Philipp Wolfer # Copyright (C) 2019-2021 Laurent Monin # # 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 S...
18,688
Python
.py
342
46.263158
166
0.665027
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,849
test_util_macos.py
metabrainz_picard/test/test_util_macos.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2024 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licens...
3,052
Python
.py
68
39.882353
81
0.716644
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,850
test_util_imageinfo.py
metabrainz_picard/test/test_util_imageinfo.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2014, 2020 Laurent Monin # Copyright (C) 2021 Philipp Wolfer # # 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 Fo...
6,632
Python
.py
169
26.798817
103
0.553569
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,851
test_browser.py
metabrainz_picard/test/test_browser.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2017 Sambhav Kothari # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2018, 2020-2021 Laurent Monin # Copyright (C) 2019, 2022, 2024 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify...
10,675
Python
.py
222
39.490991
130
0.642042
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,852
test_util_get_base_title.py
metabrainz_picard/test/test_util_get_base_title.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Bob Swift # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, o...
4,331
Python
.py
87
43.206897
98
0.654601
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,853
test_util_astrcmp.py
metabrainz_picard/test/test_util_astrcmp.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2017 Lukáš Lalinský # Copyright (C) 2017 Sophist-UK # Copyright (C) 2017-2018 Wieland Hoffmann # Copyright (C) 2018, 2020-2021 Laurent Monin # Copyright (C) 2018-2019, 2021 Philipp Wolfer # # This program is free software; you ...
2,042
Python
.py
48
39.020833
111
0.734446
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,854
test_filesystem.py
metabrainz_picard/test/test_filesystem.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2018 Antonio Larrosa # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2018-2021 Laurent Monin # Copyright (C) 2018-2021 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the...
8,846
Python
.py
202
36.346535
119
0.638533
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,855
test_util_filenaming.py
metabrainz_picard/test/test_util_filenaming.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2013-2014 Ionuț Ciocîrlan # Copyright (C) 2016 Sambhav Kothari # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2018-2021 Laurent Monin # Copyright (C) 2019-2021 Philipp Wolfer # # This program is free software; you can re...
12,123
Python
.py
236
43.618644
122
0.631258
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,856
test_utils.py
metabrainz_picard/test/test_utils.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2006-2007 Lukáš Lalinský # Copyright (C) 2010 fatih # Copyright (C) 2010-2011, 2014, 2018-2022 Philipp Wolfer # Copyright (C) 2012, 2014, 2018 Wieland Hoffmann # Copyright (C) 2013 Ionuț Ciocîrlan # Copyright (C) 2013-2014, 201...
40,262
Python
.py
837
39.352449
145
0.625565
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,857
test_oauth.py
metabrainz_picard/test/test_oauth.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2022 Laurent Monin # Copyright (C) 2024 Philipp Wolfer # # 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 Foundati...
1,900
Python
.py
46
36.304348
88
0.689057
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,858
test_item.py
metabrainz_picard/test/test_item.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2018, 2021 Philipp Wolfer # Copyright (C) 2020-2021 Laurent Monin # # 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 Softwa...
3,564
Python
.py
85
35.352941
80
0.669841
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,859
test_util_uniqnum_title.py
metabrainz_picard/test/test_util_uniqnum_title.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Bob Swift # Copyright (C) 2021 Laurent Monin # Copyright (C) 2021 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as publishe...
4,965
Python
.py
99
44.010101
99
0.638826
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,860
test_coverart_processing.py
metabrainz_picard/test/test_coverart_processing.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2024 Giorgio Fontanive # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Li...
14,234
Python
.py
289
41.33564
91
0.666858
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,861
test_util_mbserver.py
metabrainz_picard/test/test_util_mbserver.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Laurent Monin # Copyright (C) 2021-2022 Philipp Wolfer # # 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 Fou...
4,482
Python
.py
100
36.6
80
0.64253
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,862
test_scripttofilename.py
metabrainz_picard/test/test_scripttofilename.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2018-2020 Philipp Wolfer # Copyright (C) 2019-2021 Laurent Monin # # 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 Softwar...
7,033
Python
.py
155
38.470968
95
0.66496
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,863
test_disc_dbpoweramplog.py
metabrainz_picard/test/test_disc_dbpoweramplog.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2022 Laurent Monin # Copyright (C) 2022 Philipp Wolfer # # 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 Foundati...
2,950
Python
.py
74
35.324324
142
0.70049
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,864
test_api_helpers.py
metabrainz_picard/test/test_api_helpers.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2017 Sambhav Kothari # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2018, 2020-2021, 2023 Laurent Monin # Copyright (C) 2019-2023 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify ...
12,423
Python
.py
282
35.375887
93
0.606399
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,865
test_script_serializer.py
metabrainz_picard/test/test_script_serializer.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Bob Swift # Copyright (C) 2021, 2024 Philipp Wolfer # # 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 Founda...
7,938
Python
.py
138
49.963768
151
0.67875
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,866
test_acoustidmanager.py
metabrainz_picard/test/test_acoustidmanager.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2020 Laurent Monin # Copyright (C) 2020, 2022 Philipp Wolfer # # 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 Fo...
12,998
Python
.py
295
35.4
125
0.646292
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,867
test_disc_eaclog.py
metabrainz_picard/test/test_disc_eaclog.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2022 Laurent Monin # Copyright (C) 2022, 2024 Philipp Wolfer # Copyright (C) 2022 Jeffrey Bosboom # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License #...
3,710
Python
.py
87
37.954023
142
0.670738
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,868
test_metadata.py
metabrainz_picard/test/test_metadata.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2017 Sophist-UK # Copyright (C) 2018, 2020 Wieland Hoffmann # Copyright (C) 2018-2021 Laurent Monin # Copyright (C) 2018-2021, 2023 Philipp Wolfer # Copyright (C) 2020 dukeyin # # This program is free software; you can redistri...
31,468
Python
.py
677
34.679468
116
0.571196
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,869
test_acoustid.py
metabrainz_picard/test/test_acoustid.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2017 Sambhav Kothari # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2019-2020, 2023 Philipp Wolfer # Copyright (C) 2020 Ray Bouchard # Copyright (C) 2020-2021 Laurent Monin # Copyright (C) 2021 Bob Swift # Copyright (C) ...
6,053
Python
.py
146
33.267123
183
0.63556
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,870
test_tagger_message_parsing.py
metabrainz_picard/test/test_tagger_message_parsing.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2022 skelly37 # Copyright (C) 2022 Bob Swift # # 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...
2,949
Python
.py
68
36.676471
107
0.687108
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,871
test_coverart_utils.py
metabrainz_picard/test/test_coverart_utils.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2019, 2021 Philipp Wolfer # Copyright (C) 2020 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License ...
2,265
Python
.py
49
41.938776
80
0.726778
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,872
test_file.py
metabrainz_picard/test/test_file.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2018-2022 Philipp Wolfer # Copyright (C) 2019-2022 Laurent Monin # Copyright (C) 2021 Bob Swift # Copyright (C) 2021 Sophist-UK # # This program is free software; you can redistribute it and/or # modify it under the terms of th...
26,814
Python
.py
612
34.792484
113
0.629681
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,873
__init__.py
metabrainz_picard/test/__init__.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2006 Lukáš Lalinský # Copyright (C) 2016-2017 Sambhav Kothari # Copyright (C) 2019 Philipp Wolfer # Copyright (C) 2020-2021 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the t...
1,111
Python
.py
26
41.307692
80
0.758813
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,874
test_disc_utils.py
metabrainz_picard/test/test_disc_utils.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2022 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licen...
1,993
Python
.py
43
42.511628
112
0.733505
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,875
test_plugins.py
metabrainz_picard/test/test_plugins.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019-2021 Laurent Monin # Copyright (C) 2019-2021, 2023 Philipp Wolfer # # 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 S...
10,587
Python
.py
255
34.376471
95
0.671508
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,876
test_coverartprovider_caa.py
metabrainz_picard/test/test_coverartprovider_caa.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2020-2021 Laurent Monin # Copyright (C) 2020-2021 Philipp Wolfer # # 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 Softwar...
3,966
Python
.py
81
40.62963
115
0.619097
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,877
test_compatid3.py
metabrainz_picard/test/test_compatid3.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2006-2007 Lukáš Lalinský # Copyright (C) 2013, 2018, 2020-2021 Laurent Monin # Copyright (C) 2016 Christoph Reiter # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2019, 2021 Philipp Wolfer # # This program is free softwar...
3,231
Python
.py
69
41.246377
80
0.680229
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,878
test_interface_colors.py
metabrainz_picard/test/test_interface_colors.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2020 Philipp Wolfer # Copyright (C) 2020-2021 Laurent Monin # # 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 Fou...
2,735
Python
.py
60
39.8
128
0.708333
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,879
test_profiles.py
metabrainz_picard/test/test_profiles.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Bob Swift # Copyright (C) 2022 Philipp Wolfer # # 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; ...
14,974
Python
.py
303
40.630363
92
0.604447
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,880
test_metadatabox.py
metabrainz_picard/test/test_metadatabox.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2024 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licens...
1,456
Python
.py
29
47.068966
95
0.767065
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,881
test_util_preservedtags.py
metabrainz_picard/test/test_util_preservedtags.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2020 Philipp Wolfer # Copyright (C) 2020-2021 Laurent Monin # # 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 Fou...
2,585
Python
.py
64
34.65625
82
0.696414
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,882
test_mbjson.py
metabrainz_picard/test/test_mbjson.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2017 Sambhav Kothari # Copyright (C) 2017, 2019-2022 Laurent Monin # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2018-2023 Philipp Wolfer # Copyright (C) 2020 dukeyin # Copyright (C) 2021 Bob Swift # Copyright (C) 2021 ...
34,407
Python
.py
763
36.330275
132
0.619929
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,883
test_util_script_detector_weighted.py
metabrainz_picard/test/test_util_script_detector_weighted.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Bob Swift # Copyright (C) 2021 Laurent Monin # Copyright (C) 2021 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as publishe...
3,259
Python
.py
65
42.061538
89
0.70165
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,884
test_emptydir.py
metabrainz_picard/test/test_emptydir.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019 Philipp Wolfer # Copyright (C) 2020 Laurent Monin # # 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 Foundati...
4,016
Python
.py
80
44.025
91
0.71768
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,885
test_union_sorted_lists.py
metabrainz_picard/test/test_union_sorted_lists.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2016 Rahul Raturi # Copyright (C) 2018 Wieland Hoffmann # Copyright (C) 2018, 2020 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # ...
2,109
Python
.py
50
37.16
80
0.657073
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,886
test_clustering.py
metabrainz_picard/test/test_clustering.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Laurent Monin # Copyright (C) 2021 Philipp Wolfer # # 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 Foundati...
6,051
Python
.py
141
34.879433
99
0.621814
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,887
test_webservice.py
metabrainz_picard/test/test_webservice.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2017 Sambhav Kothari # Copyright (C) 2017-2018 Wieland Hoffmann # Copyright (C) 2018, 2020-2021 Laurent Monin # Copyright (C) 2019-2022 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify i...
21,039
Python
.py
478
35.495816
121
0.640424
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,888
test_const_appdirs.py
metabrainz_picard/test/test_const_appdirs.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Laurent Monin # Copyright (C) 2021 Philipp Wolfer # # 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 Foundati...
2,929
Python
.py
63
42.396825
105
0.737285
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,889
test_config.py
metabrainz_picard/test/test_config.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019-2021 Laurent Monin # Copyright (C) 2019-2021 Philipp Wolfer # # 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 Softwar...
16,135
Python
.py
325
41.904615
99
0.654682
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,890
test_browser_addrelease.py
metabrainz_picard/test/test_browser_addrelease.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2021 Laurent Monin # Copyright (C) 2021 Philipp Wolfer # # 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 Foundati...
1,474
Python
.py
30
46.466667
85
0.760083
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,891
test_util_progresscheckpoints.py
metabrainz_picard/test/test_util_progresscheckpoints.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2020 Gabriel Ferreira # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Lic...
2,829
Python
.py
48
53.6875
116
0.710365
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,892
test_disc_whipper.py
metabrainz_picard/test/test_disc_whipper.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2022 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licen...
1,222
Python
.py
29
39.689655
102
0.753159
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,893
test_i18n.py
metabrainz_picard/test/test_i18n.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019, 2023-2024 Philipp Wolfer # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # o...
6,338
Python
.py
131
41.503817
95
0.664349
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,894
test_config_upgrade.py
metabrainz_picard/test/test_config_upgrade.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019-2021 Laurent Monin # Copyright (C) 2019-2024 Philipp Wolfer # Copyright (C) 2021 Bob Swift # Copyright (C) 2021 Gabriel Ferreira # # This program is free software; you can redistribute it and/or # modify it under the terms...
23,975
Python
.py
457
44.564551
132
0.665813
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,895
test_ui_itemviews_columns.py
metabrainz_picard/test/test_ui_itemviews_columns.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2024 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the Licens...
4,400
Python
.py
96
39.239583
128
0.686727
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,896
test_disc.py
metabrainz_picard/test/test_disc.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2020-2022 Philipp Wolfer # Copyright (C) 2021 Laurent Monin # # 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 Fou...
4,418
Python
.py
101
37.188119
187
0.684419
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,897
dummyplugin.py
metabrainz_picard/test/data/testplugins/singlefile/dummyplugin.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019-2021 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the L...
1,117
Python
.py
29
37.241379
80
0.767528
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,898
dummyplugin.py
metabrainz_picard/test/data/testplugins/importerror/dummyplugin.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019-2021 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the L...
1,107
Python
.py
28
38.392857
80
0.770233
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)
10,899
__init__.py
metabrainz_picard/test/data/testplugins/module/dummyplugin/__init__.py
# -*- coding: utf-8 -*- # # Picard, the next-generation MusicBrainz tagger # # Copyright (C) 2019-2021 Laurent Monin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the L...
1,117
Python
.py
29
37.241379
80
0.767528
metabrainz/picard
3,687
383
10
GPL-2.0
9/5/2024, 5:11:02 PM (Europe/Amsterdam)