eyeD3 0.9.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,158 @@
1
+ Metadata-Version: 2.4
2
+ Name: eyeD3
3
+ Version: 0.9.8
4
+ Summary: Python audio data toolkit (ID3 and MP3)
5
+ Author-email: Travis Shirk <travis@pobox.com>
6
+ Project-URL: homepage, https://eyeD3.nicfit.net/
7
+ Project-URL: repository, https://github.com/nicfit/eyeD3
8
+ Keywords: id3,mp3,python
9
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
10
+ Classifier: Environment :: Console
11
+ Classifier: Intended Audience :: End Users/Desktop
12
+ Classifier: Topic :: Multimedia :: Sound/Audio :: Editors
13
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Operating System :: POSIX
16
+ Classifier: Natural Language :: English
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Requires-Python: <4.0,>=3.9
24
+ Description-Content-Type: text/x-rst
25
+ License-File: LICENSE
26
+ License-File: AUTHORS.rst
27
+ Requires-Dist: filetype>=1.2.0
28
+ Requires-Dist: deprecation>=2.1.0
29
+ Provides-Extra: yaml-plugin
30
+ Requires-Dist: PyYAML>=6.0.2; extra == "yaml-plugin"
31
+ Provides-Extra: art-plugin
32
+ Requires-Dist: Pillow>=11.2.1; extra == "art-plugin"
33
+ Requires-Dist: pylast>=5.5.0; extra == "art-plugin"
34
+ Requires-Dist: requests>=2.32.3; extra == "art-plugin"
35
+ Provides-Extra: test
36
+ Requires-Dist: pytest>=8.3.5; extra == "test"
37
+ Requires-Dist: coverage>=7.8.0; extra == "test"
38
+ Requires-Dist: tox>=4.25.0; extra == "test"
39
+ Requires-Dist: factory-boy>=3.3.3; extra == "test"
40
+ Requires-Dist: pytest-cov>=6.1.1; extra == "test"
41
+ Requires-Dist: check-manifest>=0.50; extra == "test"
42
+ Requires-Dist: flake8>=7.2.0; extra == "test"
43
+ Provides-Extra: dev
44
+ Requires-Dist: twine>=6.1.0; extra == "dev"
45
+ Requires-Dist: Sphinx>=7.4.7; extra == "dev"
46
+ Requires-Dist: sphinx-rtd-theme>=3.0.2; extra == "dev"
47
+ Requires-Dist: sphinx-issues>=5.0.1; extra == "dev"
48
+ Requires-Dist: cogapp>=3.4.1; extra == "dev"
49
+ Requires-Dist: Paver>=1.3.4; extra == "dev"
50
+ Requires-Dist: nicfit-py[cookiecutter]>=0.8.7; extra == "dev"
51
+ Requires-Dist: regarding>=0.2.0; extra == "dev"
52
+ Dynamic: license-file
53
+
54
+ Status
55
+ ------
56
+ .. image:: https://img.shields.io/pypi/v/eyeD3.svg
57
+ :target: https://pypi.python.org/pypi/eyeD3/
58
+ :alt: Latest Version
59
+ .. image:: https://img.shields.io/pypi/l/eyeD3.svg
60
+ :target: https://pypi.python.org/pypi/eyeD3/
61
+ :alt: License
62
+ .. image:: https://img.shields.io/pypi/pyversions/eyeD3.svg
63
+ :target: https://pypi.python.org/pypi/eyeD3/
64
+ :alt: Supported Python versions
65
+ .. image:: https://img.shields.io/pypi/dm/eyeD3
66
+ :alt: PyPI - Downloads
67
+ .. image:: https://img.shields.io/github/stars/nicfit/eyeD3
68
+ :alt: GitHub Repo stars
69
+
70
+
71
+ About
72
+ -----
73
+ eyeD3_ is a Python tool for working with audio files, specifically MP3 files
74
+ containing ID3_ metadata (i.e. song info).
75
+
76
+ It provides a command-line tool (``eyeD3``) and a Python library
77
+ (``import eyed3``) that can be used to write your own applications or
78
+ plugins that are callable from the command-line tool.
79
+
80
+ For example, to set some song information in an mp3 file called
81
+ ``song.mp3``::
82
+
83
+ $ eyeD3 -a Integrity -A "Humanity Is The Devil" -t "Hollow" -n 2 song.mp3
84
+
85
+ With this command we've set the artist (``-a/--artist``), album
86
+ (``-A/--album``), title (``-t/--title``), and track number
87
+ (``-n/--track-num``) properties in the ID3 tag of the file. This is the
88
+ standard interface that eyeD3 has always had in the past, therefore it
89
+ is also the default plugin when no other is specified.
90
+
91
+ The results of this command can be seen by running the ``eyeD3`` with no
92
+ options.
93
+
94
+ ::
95
+
96
+ $ eyeD3 song.mp3
97
+ song.mp3 [ 3.06 MB ]
98
+ -------------------------------------------------------------------------
99
+ ID3 v2.4:
100
+ title: Hollow
101
+ artist: Integrity
102
+ album: Humanity Is The Devil
103
+ album artist: None
104
+ track: 2
105
+ -------------------------------------------------------------------------
106
+
107
+ The same can be accomplished using Python.
108
+
109
+ ::
110
+
111
+ import eyed3
112
+
113
+ audiofile = eyed3.load("song.mp3")
114
+ audiofile.tag.artist = "Token Entry"
115
+ audiofile.tag.album = "Free For All Comp LP"
116
+ audiofile.tag.album_artist = "Various Artists"
117
+ audiofile.tag.title = "The Edge"
118
+ audiofile.tag.track_num = 3
119
+
120
+ audiofile.tag.save()
121
+
122
+ eyeD3_ is written and maintained by `Travis Shirk`_ and is licensed under
123
+ version 3 of the GPL_.
124
+
125
+ Features
126
+ --------
127
+
128
+ * Python package (`import eyed3`) for writing applications and plugins.
129
+ * `eyeD3` : Command-line tool driver script that supports plugins.
130
+ * Easy ID3 editing/viewing of audio metadata from the command-line.
131
+ * Plugins for: Tag to string formatting (display), album fixing (fixup),
132
+ cover art downloading (art), collection stats (stats),
133
+ and json/yaml/jabber/nfo output formats, and more included.
134
+ * Support for ID3 versions 1.x, 2.2 (read-only), 2.3, and 2.4.
135
+ * Support for the MP3 audio format exposing details such as play time, bit
136
+ rate, sampling frequency, etc.
137
+ * Abstract design allowing future support for different audio formats and
138
+ metadata containers.
139
+
140
+ Get Started
141
+ -----------
142
+
143
+ Python >= 3.9 is required.
144
+
145
+ For `installation instructions`_ or more complete `documentation`_ see
146
+ http://eyeD3.nicfit.net/
147
+
148
+ Please post feedback and/or defects on the `issue tracker`_, or `mailing list`_.
149
+
150
+ .. _eyeD3: http://eyeD3.nicfit.net/
151
+ .. _Travis Shirk: travis@pobox.com
152
+ .. _issue tracker: https://github.com/nicfit/eyeD3/issues
153
+ .. _mailing list: https://groups.google.com/forum/?fromgroups#!forum/eyed3-users
154
+ .. _installation instructions: http://eyeD3.nicfit.net/index.html#installation
155
+ .. _documentation: http://eyeD3.nicfit.net/index.html#documentation
156
+ .. _GPL: http://www.gnu.org/licenses/gpl-2.0.html
157
+ .. _ID3: http://id3.org/
158
+
@@ -0,0 +1,42 @@
1
+ eyed3/__about__.py,sha256=QCoElK7Jl5lwbzVtc3oXYwfo2bwzlCb_S0_oI5HsIyQ,1001
2
+ eyed3/__init__.py,sha256=byYZrNCjfzdoQ8hCaBwoDAfP8DfwmuHK0-tPpFRncuc,1356
3
+ eyed3/__regarding__.py,sha256=9JSO0UR1bqEoxtAcxAVpk7PDmsztCtZsSKkiLhKJHHA,1080
4
+ eyed3/core.py,sha256=3NCP0GGBG0wMJovy7cK_l0obj-9Zbm_PHDt2zdswEKw,14967
5
+ eyed3/main.py,sha256=iaFeAHOO8iKOgIPcWfrkYfOJCaALqwW1TvROKu6VzjI,11278
6
+ eyed3/mimetype.py,sha256=xFQxSbzERpg8H3XmAyJFEk65myXcUJ64p3e7mUByf8k,3292
7
+ eyed3/id3/__init__.py,sha256=iFb8v_w5bQMOiFsCTg8IvSmnqHvPLTaIubUMO6kxOpo,13924
8
+ eyed3/id3/apple.py,sha256=i7YZivx7Zi8b-6R98HdZQsllshJhcGGU7gdzouDGOZQ,1839
9
+ eyed3/id3/frames.py,sha256=hiNE8AbNBqHeKdOBUM_iaU5kgo4ri6zWGlwl8gh-tbM,83975
10
+ eyed3/id3/headers.py,sha256=VXMln18qzZNopq2UY8lfq7h2tYXKae1Rejp2aaFg2Fc,23981
11
+ eyed3/id3/tag.py,sha256=gUhtpx8-A44BkJmnyM15BiMbra0cxTK0NsPsw2qbJUw,73058
12
+ eyed3/mp3/__init__.py,sha256=W1MKl7lmOtTD06rsUJaFnWC0PIsUMUhEi5NkLYkWy00,6605
13
+ eyed3/mp3/headers.py,sha256=8b6Bav0ZOB1BQSceQW_SCcU1Z4IZlWpEJrhqsbBzTe8,32592
14
+ eyed3/plugins/__init__.py,sha256=qdIJA5735BBqyfnJ82yhGSLxZ5CTx9T_s-c2kOGCN6g,7546
15
+ eyed3/plugins/art.py,sha256=J75YNTquhzPIIySGWtmR1uo6ThtS52nWyiGyfMaXcWo,9912
16
+ eyed3/plugins/classic.py,sha256=49WXTMeMttW7Bh4lMc607iNfq6UAT1sdCLmtNWNVjdw,54598
17
+ eyed3/plugins/extract.py,sha256=Rf8QoCaGR9iSQAr6k81jQ-fqjUFyRwS80xEB-BmneHY,2268
18
+ eyed3/plugins/fixup.py,sha256=LkSgyfMLsyypGpEYjAViDQfELgZJQs8x0FZURYkocP8,26830
19
+ eyed3/plugins/genres.py,sha256=e6WmxtHTG7vP2yhQ7nspL9ijIA0N3P3ozT9d29WktS4,1771
20
+ eyed3/plugins/itunes.py,sha256=AkUUbYQZ4SQCDJU77GZ7OPcMN_MY0SEDyi-mLIuxR5o,2033
21
+ eyed3/plugins/jsontag.py,sha256=xPYzZ4sBIaunp5tdwTXAvpMJumuNwzAJ1-paAJPJLsE,4609
22
+ eyed3/plugins/lameinfo.py,sha256=UevBAUViHJppP_qHWCUFM2BteaXCelvkQWDB_eSHHZ0,3576
23
+ eyed3/plugins/lastfm.py,sha256=mcW4ocHCFOxDPk8vbcRsialhdKzH2XEzgXcoJHC9W90,1352
24
+ eyed3/plugins/mimetype.py,sha256=fYkiZAtSd7GPRj_gyusrzm61d7sJ29YNQ20Y6UiHL20,1792
25
+ eyed3/plugins/nfo.py,sha256=9lC-EcgiOLGidOYHgkDoQvTRGt43InT62uC4gn4Bur8,4705
26
+ eyed3/plugins/pymod.py,sha256=05bquce3kRtgn7JIIMH3vkIJ5pVpohHmC3PkxWdJpXY,2559
27
+ eyed3/plugins/stats.py,sha256=fYPSxRyty9qRDimhxwNeM86bU76a95ZdxHs9JfkVYk8,15146
28
+ eyed3/plugins/xep_118.py,sha256=9VtT3562WWVpjyNd5_KzGP-O_2gDiNhboWFaXMH0CiE,1600
29
+ eyed3/plugins/yamltag.py,sha256=Ded29_XGL5WjIkFOyGcMI01xWCqVH9yomM9olNjQlP4,860
30
+ eyed3/utils/__init__.py,sha256=L-WP7XStnN-obCo6pTDa7zBst-_nxZbFURTEU2WZiTQ,14575
31
+ eyed3/utils/art.py,sha256=cmaP1ZEPsmF6Flqja5lRNaRqUbW7bWGFWuwxui6VXYs,2725
32
+ eyed3/utils/binfuncs.py,sha256=E1UuTFNc5o-tHrUk6g9XytMgGFtk7fOrzlTuFFzBWI4,3955
33
+ eyed3/utils/console.py,sha256=eGTwgsDOO8x1vdXlASeXjcL4BYROr5qiWtGlFb-91B8,17567
34
+ eyed3/utils/log.py,sha256=TESTslOurwATIwmLU45P0rj1kiYf3bXxLNJnc-QrBXg,1484
35
+ eyed3/utils/prompt.py,sha256=56Gbd00LPAsp_k4MzTqhTudu2eOLFA3TSeeTESkKSI0,2735
36
+ eyed3-0.9.8.dist-info/licenses/AUTHORS.rst,sha256=0rp2QqSd1-fnmPiVkmp9JkP7KTKYtshkjU_V1sW3eKE,1607
37
+ eyed3-0.9.8.dist-info/licenses/LICENSE,sha256=yjcqfZJWCx-p9tgytEDovNYtmt-ohwyYKH3qtm2YMQ4,35148
38
+ eyed3-0.9.8.dist-info/METADATA,sha256=Hvd51GUoLksclMeTWM66o-jjMmozxISpcZgf4axpw70,5761
39
+ eyed3-0.9.8.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
40
+ eyed3-0.9.8.dist-info/entry_points.txt,sha256=tNVkF9g-_swrPgCLayGq9N6c_B_wFPsnHFyR4PqlGWU,43
41
+ eyed3-0.9.8.dist-info/top_level.txt,sha256=zeurONV1_zm-Vtqv947t4FQnUSmHIFLVzD6SFEa1p4M,6
42
+ eyed3-0.9.8.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (79.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ eyeD3 = eyed3.main:_main
@@ -0,0 +1,45 @@
1
+ Authors
2
+ -------
3
+
4
+ eyeD3 is written and maintained by:
5
+
6
+ * Travis Shirk <travis@pobox.com>
7
+
8
+ and has been contributed to by (ordered by date of first contribution):
9
+
10
+ * Ryan Finnie <ryan@finnie.org>
11
+ * Henning Kiel <henning.kiel@rwth-aachen.de>
12
+ * Knight Walker <kwalker@kobran.org>
13
+ * Todd Zullinger <tmz@pobox.com>
14
+ * Aaron VonderHaar <avh4@users.sourceforge.net>
15
+ * Alexander Thomas <dr-lex@dr-lex.34sp.com>
16
+ * Michael Schout <mschout@gkg.net>
17
+ * Renaud Saint-Gratien <rsg@nerim.net>
18
+ * David Grant <davidgrant@gmail.com>
19
+ * Gergan Penkov <gergan@gmail.com>
20
+ * Stephen Fairchild <sfairchild@bethere.co.uk>
21
+ * Ville Skyttä <ville.skytta@iki.fi>
22
+ * Ben Isaacs <me@ben-xo.com>
23
+ * Neil Schemenauer <nas@arctrix.com>
24
+ * Otávio Pontes <otaviobp@gmail.com>
25
+ * Nathaniel Clark <nate@misrule.us>
26
+ * Hans Meine <hmeine@users.noreply.github.com>
27
+ * Hans Petter Jansson <hpj@copyleft.no>
28
+ * Sebastian Patschorke <sludgefeast@users.noreply.github.com>
29
+ * Bouke Versteegh <info@boukeversteegh.nl>
30
+ * gaetano-guerriero <x.guerriero@tin.it>
31
+ * mafro <github@mafro.net>
32
+ * Gabriel Diego Teixeira <gabrieldiegoteixeira@gmail.com>
33
+ * Chris Newton <redshodan@gmail.com>
34
+ * Thomas Klausner <tk@giga.or.at>
35
+ * Tim Gates <tim.gates@iress.com>
36
+ * chamatht <chamatht@gmail.com>
37
+ * grun <grunseid@gmail.com>
38
+ * guiweber <guillaume.web@gmail.com>
39
+ * zhu <zhumumu@gmail.com>
40
+ * Michał Górny <mgorny@gentoo.org>
41
+ * Jonathan Herlin <Jonte@jherlin.se>
42
+ * Ramiro Gómez <code@ramiro.org>
43
+ * Steve Kowalik <steven@wedontsleep.org>
44
+ * gersonkurz <gerson.kurz@gmail.com>
45
+ * obskyr <powpowd@gmail.com>