eyeD3 0.9.8a1__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,163 @@
1
+ Metadata-Version: 2.4
2
+ Name: eyeD3
3
+ Version: 0.9.8a1
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/status/eyeD3.svg
60
+ :target: https://pypi.python.org/pypi/eyeD3/
61
+ :alt: Project Status
62
+ .. image:: https://travis-ci.org/nicfit/eyeD3.svg?branch=master
63
+ :target: https://travis-ci.org/nicfit/eyeD3
64
+ :alt: Build Status
65
+ .. image:: https://img.shields.io/pypi/l/eyeD3.svg
66
+ :target: https://pypi.python.org/pypi/eyeD3/
67
+ :alt: License
68
+ .. image:: https://img.shields.io/pypi/pyversions/eyeD3.svg
69
+ :target: https://pypi.python.org/pypi/eyeD3/
70
+ :alt: Supported Python versions
71
+ .. image:: https://coveralls.io/repos/nicfit/eyeD3/badge.svg
72
+ :target: https://coveralls.io/r/nicfit/eyeD3
73
+ :alt: Coverage Status
74
+
75
+
76
+ About
77
+ -----
78
+ eyeD3_ is a Python tool for working with audio files, specifically MP3 files
79
+ containing ID3_ metadata (i.e. song info).
80
+
81
+ It provides a command-line tool (``eyeD3``) and a Python library
82
+ (``import eyed3``) that can be used to write your own applications or
83
+ plugins that are callable from the command-line tool.
84
+
85
+ For example, to set some song information in an mp3 file called
86
+ ``song.mp3``::
87
+
88
+ $ eyeD3 -a Integrity -A "Humanity Is The Devil" -t "Hollow" -n 2 song.mp3
89
+
90
+ With this command we've set the artist (``-a/--artist``), album
91
+ (``-A/--album``), title (``-t/--title``), and track number
92
+ (``-n/--track-num``) properties in the ID3 tag of the file. This is the
93
+ standard interface that eyeD3 has always had in the past, therefore it
94
+ is also the default plugin when no other is specified.
95
+
96
+ The results of this command can be seen by running the ``eyeD3`` with no
97
+ options.
98
+
99
+ ::
100
+
101
+ $ eyeD3 song.mp3
102
+ song.mp3 [ 3.06 MB ]
103
+ -------------------------------------------------------------------------
104
+ ID3 v2.4:
105
+ title: Hollow
106
+ artist: Integrity
107
+ album: Humanity Is The Devil
108
+ album artist: None
109
+ track: 2
110
+ -------------------------------------------------------------------------
111
+
112
+ The same can be accomplished using Python.
113
+
114
+ ::
115
+
116
+ import eyed3
117
+
118
+ audiofile = eyed3.load("song.mp3")
119
+ audiofile.tag.artist = "Token Entry"
120
+ audiofile.tag.album = "Free For All Comp LP"
121
+ audiofile.tag.album_artist = "Various Artists"
122
+ audiofile.tag.title = "The Edge"
123
+ audiofile.tag.track_num = 3
124
+
125
+ audiofile.tag.save()
126
+
127
+ eyeD3_ is written and maintained by `Travis Shirk`_ and is licensed under
128
+ version 3 of the GPL_.
129
+
130
+ Features
131
+ --------
132
+
133
+ * Python package (`import eyed3`) for writing applications and plugins.
134
+ * `eyeD3` : Command-line tool driver script that supports plugins.
135
+ * Easy ID3 editing/viewing of audio metadata from the command-line.
136
+ * Plugins for: Tag to string formatting (display), album fixing (fixup),
137
+ cover art downloading (art), collection stats (stats),
138
+ and json/yaml/jabber/nfo output formats, and more included.
139
+ * Support for ID3 versions 1.x, 2.2 (read-only), 2.3, and 2.4.
140
+ * Support for the MP3 audio format exposing details such as play time, bit
141
+ rate, sampling frequency, etc.
142
+ * Abstract design allowing future support for different audio formats and
143
+ metadata containers.
144
+
145
+ Get Started
146
+ -----------
147
+
148
+ Python >= 3.7 is required.
149
+
150
+ For `installation instructions`_ or more complete `documentation`_ see
151
+ http://eyeD3.nicfit.net/
152
+
153
+ Please post feedback and/or defects on the `issue tracker`_, or `mailing list`_.
154
+
155
+ .. _eyeD3: http://eyeD3.nicfit.net/
156
+ .. _Travis Shirk: travis@pobox.com
157
+ .. _issue tracker: https://github.com/nicfit/eyeD3/issues
158
+ .. _mailing list: https://groups.google.com/forum/?fromgroups#!forum/eyed3-users
159
+ .. _installation instructions: http://eyeD3.nicfit.net/index.html#installation
160
+ .. _documentation: http://eyeD3.nicfit.net/index.html#documentation
161
+ .. _GPL: http://www.gnu.org/licenses/gpl-2.0.html
162
+ .. _ID3: http://id3.org/
163
+
@@ -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=dXiMFmtZaWAFF8iRsvyKvP-bwC9c3lbNiEgKz79xdM0,1082
4
+ eyed3/core.py,sha256=ymrKZK2-0QpzZfppQI1xgSFSOe128HcYWwY6NFpSGQg,13657
5
+ eyed3/main.py,sha256=mNf2afmfIn19tlnduVMytd9IOAZchNEkVxDVjDjvtP8,10991
6
+ eyed3/mimetype.py,sha256=xFQxSbzERpg8H3XmAyJFEk65myXcUJ64p3e7mUByf8k,3292
7
+ eyed3/id3/__init__.py,sha256=5Gkm7dX_ujY0LHY4DbkhLcMB0ZtQ6uMdbWtipZHUUVQ,13895
8
+ eyed3/id3/apple.py,sha256=nQ1U7u4ObG9XcHSkqjsJaOzlyCJ8b4Kj1R7CiFj4wq4,1431
9
+ eyed3/id3/frames.py,sha256=2H1iWUvZQ07H-uEqqT2t77uCzF4fgpVzlDQ7df6kNNU,83519
10
+ eyed3/id3/headers.py,sha256=VXMln18qzZNopq2UY8lfq7h2tYXKae1Rejp2aaFg2Fc,23981
11
+ eyed3/id3/tag.py,sha256=cr9cCSgPVEaWZ0PoLLPC5Im2Tc_e6_Rc3zlw42SWUUk,73054
12
+ eyed3/mp3/__init__.py,sha256=W1MKl7lmOtTD06rsUJaFnWC0PIsUMUhEi5NkLYkWy00,6605
13
+ eyed3/mp3/headers.py,sha256=8b6Bav0ZOB1BQSceQW_SCcU1Z4IZlWpEJrhqsbBzTe8,32592
14
+ eyed3/plugins/__init__.py,sha256=nSEud7L2EjiNy0dvIcEx82G5yPUswKv2i9eXk4YZUAo,7445
15
+ eyed3/plugins/art.py,sha256=J75YNTquhzPIIySGWtmR1uo6ThtS52nWyiGyfMaXcWo,9912
16
+ eyed3/plugins/classic.py,sha256=qxsBCCzRrwDlFc6kB82efkcXwR8eps8p6QOtnRD4LL4,54557
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=ECwHqQZwE9r3v-W7BLXgVPiNNaQ6JkdJTLPBnLsLwuo,2958
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=1DllCbtHS0vry218lL6EcHVWvZfUthpnAGimq0zkUX0,17567
34
+ eyed3/utils/log.py,sha256=TESTslOurwATIwmLU45P0rj1kiYf3bXxLNJnc-QrBXg,1484
35
+ eyed3/utils/prompt.py,sha256=56Gbd00LPAsp_k4MzTqhTudu2eOLFA3TSeeTESkKSI0,2735
36
+ eyed3-0.9.8a1.dist-info/licenses/AUTHORS.rst,sha256=FM5ejB4iI-N96B-ZkWTpBV7ZUr344vfkWxc-XuNQ638,1380
37
+ eyed3-0.9.8a1.dist-info/licenses/LICENSE,sha256=yjcqfZJWCx-p9tgytEDovNYtmt-ohwyYKH3qtm2YMQ4,35148
38
+ eyed3-0.9.8a1.dist-info/METADATA,sha256=zSDTH0JI0L43ZwZAV4-FO7-Pe4OiAblcSr3TmZxhMqg,5997
39
+ eyed3-0.9.8a1.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
40
+ eyed3-0.9.8a1.dist-info/entry_points.txt,sha256=tNVkF9g-_swrPgCLayGq9N6c_B_wFPsnHFyR4PqlGWU,43
41
+ eyed3-0.9.8a1.dist-info/top_level.txt,sha256=zeurONV1_zm-Vtqv947t4FQnUSmHIFLVzD6SFEa1p4M,6
42
+ eyed3-0.9.8a1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (78.1.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,39 @@
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>