linkedin2md 0.2.0__tar.gz → 0.2.2__tar.gz

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.
Files changed (62) hide show
  1. linkedin2md-0.2.2/LICENSE +347 -0
  2. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/PKG-INFO +4 -4
  3. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/README.md +1 -1
  4. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/pyproject.toml +3 -3
  5. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/tests/test_formatters.py +0 -1
  6. linkedin2md-0.2.0/LICENSE +0 -21
  7. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  8. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  9. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  10. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/.github/workflows/ci.yml +0 -0
  11. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/.github/workflows/publish.yml +0 -0
  12. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/.gitignore +0 -0
  13. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/CHANGELOG.md +0 -0
  14. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/CODE_OF_CONDUCT.md +0 -0
  15. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/CONTRIBUTING.md +0 -0
  16. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/__init__.py +0 -0
  17. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/__main__.py +0 -0
  18. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/cli.py +0 -0
  19. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/converter.py +0 -0
  20. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/extractor.py +0 -0
  21. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatter.py +0 -0
  22. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/__init__.py +0 -0
  23. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/activity.py +0 -0
  24. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/advertising.py +0 -0
  25. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/base.py +0 -0
  26. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/content.py +0 -0
  27. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/identity.py +0 -0
  28. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/jobs.py +0 -0
  29. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/learning.py +0 -0
  30. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/network.py +0 -0
  31. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/payments.py +0 -0
  32. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/professional.py +0 -0
  33. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/profile.py +0 -0
  34. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/recommendations.py +0 -0
  35. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/formatters/services.py +0 -0
  36. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/language.py +0 -0
  37. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parser.py +0 -0
  38. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/__init__.py +0 -0
  39. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/activity.py +0 -0
  40. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/advertising.py +0 -0
  41. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/base.py +0 -0
  42. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/content.py +0 -0
  43. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/identity.py +0 -0
  44. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/jobs.py +0 -0
  45. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/learning.py +0 -0
  46. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/network.py +0 -0
  47. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/payments.py +0 -0
  48. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/professional.py +0 -0
  49. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/profile.py +0 -0
  50. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/recommendations.py +0 -0
  51. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/parsers/services.py +0 -0
  52. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/protocols.py +0 -0
  53. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/registry.py +0 -0
  54. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/src/linkedin2md/writer.py +0 -0
  55. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/tests/__init__.py +0 -0
  56. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/tests/test_cli.py +0 -0
  57. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/tests/test_e2e.py +0 -0
  58. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/tests/test_formatter.py +0 -0
  59. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/tests/test_parser.py +0 -0
  60. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/tests/test_parsers.py +0 -0
  61. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/tests/test_security.py +0 -0
  62. {linkedin2md-0.2.0 → linkedin2md-0.2.2}/tests/test_solid.py +0 -0
@@ -0,0 +1,347 @@
1
+ Copyright (c) 2026 Juan Manuel Daza
2
+
3
+ GNU GENERAL PUBLIC LICENSE
4
+ Version 2, June 1991
5
+
6
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
7
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
8
+ Everyone is permitted to copy and distribute verbatim copies
9
+ of this license document, but changing it is not allowed.
10
+
11
+ Preamble
12
+
13
+ The licenses for most software are designed to take away your
14
+ freedom to share and change it. By contrast, the GNU General Public
15
+ License is intended to guarantee your freedom to share and change free
16
+ software--to make sure the software is free for all its users. This
17
+ General Public License applies to most of the Free Software
18
+ Foundation's software and to any other program whose authors commit to
19
+ using it. (Some other Free Software Foundation software is covered by
20
+ the GNU Lesser General Public License instead.) You can apply it to
21
+ your programs, too.
22
+
23
+ When we speak of free software, we are referring to freedom, not
24
+ price. Our General Public Licenses are designed to make sure that you
25
+ have the freedom to distribute copies of free software (and charge for
26
+ this service if you wish), that you receive source code or can get it
27
+ if you want it, that you can change the software or use pieces of it
28
+ in new free programs; and that you know you can do these things.
29
+
30
+ To protect your rights, we need to make restrictions that forbid
31
+ anyone to deny you these rights or to ask you to surrender the rights.
32
+ These restrictions translate to certain responsibilities for you if
33
+ you distribute copies of the software, or if you modify it.
34
+
35
+ For example, if you distribute copies of such a program, whether
36
+ gratis or for a fee, you must give the recipients all the rights that
37
+ you have. You must make sure that they, too, receive or can get the
38
+ source code. And you must show them these terms so they know their
39
+ rights.
40
+
41
+ We protect your rights with two steps: (1) copyright the software, and
42
+ (2) offer you this license which gives you legal permission to copy,
43
+ distribute and/or modify the software.
44
+
45
+ Also, for each author's protection and ours, we want to make certain
46
+ that everyone understands that there is no warranty for this free
47
+ software. If the software is modified by someone else and passed on, we
48
+ want its recipients to know that what they have is not the original, so
49
+ that any problems introduced by others will not reflect on the original
50
+ authors' reputations.
51
+
52
+ Finally, any free program is threatened constantly by software
53
+ patents. We wish to avoid the danger that redistributors of a free
54
+ program will individually obtain patent licenses, in effect making the
55
+ program proprietary. To prevent this, we have made it clear that any
56
+ patent must be licensed for everyone's free use or not licensed at all.
57
+
58
+ The precise terms and conditions for copying, distribution and
59
+ modification follow.
60
+
61
+ GNU GENERAL PUBLIC LICENSE
62
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
63
+
64
+ 0. This License applies to any program or other work which contains a
65
+ notice placed by the copyright holder saying it may be distributed under
66
+ the terms of this General Public License. The "Program", below,
67
+ refers to any such program or work, and a "work based on the Program"
68
+ means either the Program or any derivative work under copyright law:
69
+ that is to say, a work containing the Program or a portion of it,
70
+ either verbatim or with modifications and/or translated into another
71
+ language. (Hereinafter, translation is included without limitation in
72
+ the term "modification".) Each licensee is addressed as "you".
73
+
74
+ Activities other than copying, distribution and modification are not
75
+ covered by this License; they are outside its scope. The act of
76
+ running the Program is not restricted, and the output from the Program
77
+ is covered only if its contents constitute a work based on the Program
78
+ (independent of having been made by running the Program). Whether that
79
+ is true depends on what the Program does.
80
+
81
+ 1. You may copy and distribute verbatim copies of the Program's
82
+ source code as you receive it, in any medium, provided that you
83
+ conspicuously and appropriately publish on each copy an appropriate
84
+ copyright notice and disclaimer of warranty; keep intact all the
85
+ notices that refer to this License and to the absence of any warranty;
86
+ and give any other recipients of the Program a copy of this License
87
+ along with the Program.
88
+
89
+ You may charge a fee for the physical act of transferring a copy, and
90
+ you may at your option offer warranty protection in exchange for a fee.
91
+
92
+ 2. You may modify your copy or copies of the Program or any portion of
93
+ it, thus forming a work based on the Program, and copy and distribute
94
+ such modifications or work under the terms of Section 1 above, provided
95
+ that you also meet all of these conditions:
96
+
97
+ a) You must cause the modified files to carry prominent notices
98
+ stating that you changed the files and the date of any change.
99
+
100
+ b) You must cause any work that you distribute or publish, that in
101
+ whole or in part contains or is derived from the Program or any
102
+ part thereof, to be licensed as a whole at no charge to all third
103
+ parties under the terms of this License.
104
+
105
+ c) If the modified program normally reads commands interactively
106
+ when run, you must cause it, when started running for such
107
+ interactive use in the most ordinary way, to print or display an
108
+ announcement including an appropriate copyright notice and a notice
109
+ that there is no warranty (or else, saying that you provide a
110
+ warranty) and that users may redistribute the program under these
111
+ conditions, and telling the user how to view a copy of this
112
+ License. (Exception: if the Program itself is interactive but
113
+ does not normally print such an announcement, your work based on
114
+ the Program is not required to print an announcement.)
115
+
116
+ These requirements apply to the modified work as a whole. If
117
+ identifiable sections of that work are not derived from the Program,
118
+ and can be reasonably considered independent and separate works in
119
+ themselves, then this License, and its terms, do not apply to those
120
+ sections when you distribute them as separate works. But when you
121
+ distribute the same sections as part of a whole which is a work based
122
+ on the Program, the distribution of the whole must be on the terms of
123
+ this License, whose permissions for other licensees extend to the
124
+ entire whole, and thus to each and every part regardless of who wrote
125
+ it.
126
+
127
+ Thus, it is not the intent of this section to claim rights or contest
128
+ your rights to work written entirely by you; rather, the intent is to
129
+ exercise the right to control the distribution of derivative or
130
+ collective works based on the Program.
131
+
132
+ In addition, mere aggregation of another work not based on the Program
133
+ with the Program (or with a work based on the Program) on a volume of
134
+ a storage or distribution medium does not bring the other work under
135
+ the scope of this License.
136
+
137
+ 3. You may copy and distribute the Program (or a work based on it,
138
+ under Section 2) in object code or executable form under the terms of
139
+ Sections 1 and 2 above provided that you also do one of the
140
+ following:
141
+
142
+ a) Accompany it with the complete corresponding machine-readable
143
+ source code, which must be distributed under the terms of Sections
144
+ 1 and 2 above on a medium customarily used for software
145
+ interchange; or,
146
+
147
+ b) Accompany it with a written offer, valid for at least three
148
+ years, to give any third party, for a charge no more than your
149
+ cost of physically performing source distribution, a complete
150
+ machine-readable copy of the corresponding source code, to be
151
+ distributed under the terms of Sections 1 and 2 above on a medium
152
+ customarily used for software interchange; or,
153
+
154
+ c) Accompany it with the information you received as to the offer
155
+ to distribute corresponding source code. (This alternative is
156
+ allowed only for noncommercial distribution and only if you
157
+ received the program in object code or executable form with such
158
+ an offer, in accord with Subsection b above.)
159
+
160
+ The source code for a work means the preferred form of the work for
161
+ making modifications to it. For an executable work, complete source
162
+ code means all the source code for all modules it contains, plus any
163
+ associated interface definition files, plus the scripts used to control
164
+ compilation and installation of the executable. However, as a special
165
+ exception, the source code distributed need not include anything that
166
+ is normally distributed (in either source or binary form) with the
167
+ major components (compiler, kernel, and so on) of the operating system
168
+ on which the executable runs, unless that component itself accompanies
169
+ the executable.
170
+
171
+ If distribution of executable or object code is made by offering access
172
+ to copy from a designated place, then offering equivalent access to
173
+ copy the source code from the same place counts as distribution of the
174
+ source code, even though third parties are not compelled to copy the
175
+ source along with the object code.
176
+
177
+ 4. You may not copy, modify, sublicense, or distribute the Program
178
+ except as expressly provided under this License. Any attempt
179
+ otherwise to copy, modify, sublicense or distribute the Program is
180
+ void, and will automatically terminate your rights under this License.
181
+ However, parties who have received copies, or rights, from you under
182
+ this License will not have their licenses terminated so long as such
183
+ parties remain in full compliance.
184
+
185
+ 5. You are not required to accept this License, since you have not
186
+ signed it. However, nothing else grants you permission to modify or
187
+ distribute the Program or its derivative works. These actions are
188
+ prohibited by law if you do not accept this License. Therefore, by
189
+ modifying or distributing the Program (or any work based on the
190
+ Program), you indicate your acceptance of this License to do so, and
191
+ all its terms and conditions for copying, distributing or modifying
192
+ the Program or works based on it.
193
+
194
+ 6. Each time you redistribute the Program (or any work based on the
195
+ Program), the recipient automatically receives a license from the
196
+ original licensor to copy, distribute or modify the Program subject to
197
+ these terms and conditions. You may not impose any further
198
+ restrictions on the recipients' exercise of the rights granted herein.
199
+ You are not responsible for enforcing compliance by third parties to
200
+ this License.
201
+
202
+ 7. If, as a consequence of a court judgment or allegation of patent
203
+ infringement or for any other reason (not limited to patent issues),
204
+ conditions are imposed on you (whether by court order, agreement or
205
+ otherwise) that contradict the conditions of this License, they do not
206
+ excuse you from the conditions of this License. If you cannot
207
+ distribute so as to satisfy simultaneously your obligations under this
208
+ License and any other pertinent obligations, then as a consequence you
209
+ may not distribute the Program at all. For example, if a patent
210
+ license would not permit royalty-free redistribution of the Program by
211
+ all those who receive copies directly or indirectly through you, then
212
+ the only way you could satisfy both it and this License would be to
213
+ refrain entirely from distribution of the Program.
214
+
215
+ If any portion of this section is held invalid or unenforceable under
216
+ any particular circumstance, the balance of the section is intended to
217
+ apply and the section as a whole is intended to apply in other
218
+ circumstances.
219
+
220
+ It is not the purpose of this section to induce you to infringe any
221
+ patents or other property right claims or to contest validity of any
222
+ such claims; this section has the sole purpose of protecting the
223
+ integrity of the free software distribution system, which is
224
+ implemented by public license practices. Many people have made
225
+ generous contributions to the wide range of software distributed
226
+ through that system in reliance on consistent application of that
227
+ system; it is up to the author/donor to decide if he or she is willing
228
+ to distribute software through any other system and a licensee cannot
229
+ impose that choice.
230
+
231
+ This section is intended to make thoroughly clear what is believed to
232
+ be a consequence of the rest of this License.
233
+
234
+ 8. If the distribution and/or use of the Program is restricted in
235
+ certain countries either by patents or by copyrighted interfaces, the
236
+ original copyright holder who places the Program under this License may
237
+ add an explicit geographical distribution limitation excluding those
238
+ countries, so that distribution is permitted only in or among countries
239
+ not thus excluded. In such case, this License incorporates the
240
+ limitation as if written in the body of this License.
241
+
242
+ 9. The Free Software Foundation may publish revised and/or new
243
+ versions of the General Public License from time to time. Such new
244
+ versions will be similar in spirit to the present version, but may
245
+ differ in detail to address new problems or concerns.
246
+
247
+ Each version is given a distinguishing version number. If the Program
248
+ specifies a version number of this License which applies to it and "any
249
+ later version", you have the option of following the terms and
250
+ conditions either of that version or of any later version published by
251
+ the Free Software Foundation. If the Program does not specify a
252
+ version number of this License, you may choose any version ever
253
+ published by the Free Software Foundation.
254
+
255
+ 10. If you wish to incorporate parts of the Program into other free
256
+ programs whose distribution conditions are different, write to the
257
+ author to ask for permission. For software which is copyrighted by the
258
+ Free Software Foundation, write to the Free Software Foundation; we
259
+ sometimes make exceptions for this. Our decision will be guided by the
260
+ two goals of preserving the free status of all derivatives of our free
261
+ software and of promoting the sharing and reuse of software generally.
262
+
263
+ NO WARRANTY
264
+
265
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
266
+ WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
267
+ EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
268
+ OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND,
269
+ EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
270
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
271
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
272
+ PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME
273
+ THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
274
+
275
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
276
+ WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
277
+ AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU
278
+ FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
279
+ CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
280
+ PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
281
+ RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
282
+ FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF
283
+ SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
284
+ DAMAGES.
285
+
286
+ END OF TERMS AND CONDITIONS
287
+
288
+ How to Apply These Terms to Your New Programs
289
+
290
+ If you develop a new program, and you want it to be of the greatest
291
+ possible use to the public, the best way to achieve this is to make it
292
+ free software which everyone can redistribute and change under these
293
+ terms.
294
+
295
+ To do so, attach the following notices to the program. It is safest
296
+ to attach them to the start of each source file to most effectively
297
+ convey the exclusion of warranty; and each file should have at least
298
+ the "copyright" line and a pointer to where the full notice is found.
299
+
300
+ <one line to give the program's name and a brief idea of what it does.>
301
+ Copyright (C) <year> <name of author>
302
+
303
+ This program is free software; you can redistribute it and/or modify
304
+ it under the terms of the GNU General Public License as published by
305
+ the Free Software Foundation; either version 2 of the License, or
306
+ (at your option) any later version.
307
+
308
+ This program is distributed in the hope that it will be useful,
309
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
310
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
311
+ GNU General Public License for more details.
312
+
313
+ You should have received a copy of the GNU General Public License
314
+ along with this program; if not, write to the Free Software
315
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
316
+
317
+ Also add information on how to contact you by electronic and paper mail.
318
+
319
+ If the program is interactive, make it output a short notice like this
320
+ when it starts in an interactive mode:
321
+
322
+ Gnomovision version 69, Copyright (C) <year> <name of author>
323
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
324
+ This is free software, and you are welcome to redistribute it
325
+ under certain conditions; type `show c' for details.
326
+
327
+ The hypothetical commands `show w' and `show c' should show the
328
+ appropriate parts of the General Public License. Of course, the
329
+ commands you use may be called something different than `show w' and
330
+ `show c'; they could even be mouse-clicks or menu items--whatever
331
+ suits your program.
332
+
333
+ You should also get your employer (if you work as a programmer) or
334
+ your school, if any, to sign a "copyright disclaimer" for the program,
335
+ if necessary. Here is a sample; alter the names:
336
+
337
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
338
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
339
+
340
+ <signature of Ty Coon>, 1 April 1990
341
+ Ty Coon, President of Vice
342
+
343
+ This General Public License does not permit incorporating your program
344
+ into proprietary programs. If your program is a subroutine library, you
345
+ may consider it more useful to permit linking proprietary applications with
346
+ the library. If this is what you want to do, use the GNU Lesser General
347
+ Public License instead of this License.
@@ -1,19 +1,19 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: linkedin2md
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: Convert LinkedIn data exports to Markdown
5
5
  Project-URL: Homepage, https://github.com/juanmanueldaza/linkedin2md
6
6
  Project-URL: Repository, https://github.com/juanmanueldaza/linkedin2md
7
7
  Project-URL: Issues, https://github.com/juanmanueldaza/linkedin2md/issues
8
8
  Author-email: Juan Manuel Daza <juanmanueldaza@gmail.com>
9
- License: MIT
9
+ License: GPL-2.0
10
10
  License-File: LICENSE
11
11
  Keywords: cv,export,linkedin,markdown,parser,resume
12
12
  Classifier: Development Status :: 4 - Beta
13
13
  Classifier: Environment :: Console
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Intended Audience :: End Users/Desktop
16
- Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
17
17
  Classifier: Operating System :: OS Independent
18
18
  Classifier: Programming Language :: Python :: 3
19
19
  Classifier: Programming Language :: Python :: 3.13
@@ -196,4 +196,4 @@ Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for gui
196
196
 
197
197
  ## License
198
198
 
199
- MIT - see [LICENSE](LICENSE) for details.
199
+ GPL-2.0 - see [LICENSE](LICENSE) for details.
@@ -168,4 +168,4 @@ Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for gui
168
168
 
169
169
  ## License
170
170
 
171
- MIT - see [LICENSE](LICENSE) for details.
171
+ GPL-2.0 - see [LICENSE](LICENSE) for details.
@@ -1,9 +1,9 @@
1
1
  [project]
2
2
  name = "linkedin2md"
3
- version = "0.2.0"
3
+ version = "0.2.2"
4
4
  description = "Convert LinkedIn data exports to Markdown"
5
5
  readme = "README.md"
6
- license = { text = "MIT" }
6
+ license = { text = "GPL-2.0" }
7
7
  authors = [{ name = "Juan Manuel Daza", email = "juanmanueldaza@gmail.com" }]
8
8
  requires-python = ">=3.13"
9
9
  keywords = ["linkedin", "markdown", "export", "cv", "resume", "parser"]
@@ -12,7 +12,7 @@ classifiers = [
12
12
  "Environment :: Console",
13
13
  "Intended Audience :: Developers",
14
14
  "Intended Audience :: End Users/Desktop",
15
- "License :: OSI Approved :: MIT License",
15
+ "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
16
16
  "Operating System :: OS Independent",
17
17
  "Programming Language :: Python :: 3",
18
18
  "Programming Language :: Python :: 3.13",
@@ -1,6 +1,5 @@
1
1
  """Tests for all formatter modules."""
2
2
 
3
-
4
3
  from linkedin2md.formatters.professional import (
5
4
  CertificationsFormatter,
6
5
  EducationFormatter,
linkedin2md-0.2.0/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Juan Manuel Daza
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
File without changes
File without changes
File without changes