pdf4me-mcp 0.1.0__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.
- pdf4me_mcp-0.1.0/.gitignore +629 -0
- pdf4me_mcp-0.1.0/.python-version +1 -0
- pdf4me_mcp-0.1.0/LICENSE +21 -0
- pdf4me_mcp-0.1.0/PKG-INFO +108 -0
- pdf4me_mcp-0.1.0/README.md +77 -0
- pdf4me_mcp-0.1.0/main.py +5 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/__init__.py +1 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/__main__.py +5 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/config.py +13 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/helper.py +49 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/main.py +18 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/__init__.py +1 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/resources/__init__.py +1 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/resources/info.py +85 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/__init__.py +1 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/compress_pdf.py +120 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_html_to_pdf.py +210 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_image_format.py +189 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_json_to_excel.py +272 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_md_to_pdf.py +173 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_pdf_to_excel.py +242 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_pdf_to_pdfa.py +189 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_pdf_to_powerpoint.py +242 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_pdf_to_word.py +242 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_to_pdf.py +163 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_url_to_pdf.py +251 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_visio_to_pdf.py +208 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/convert_word_to_pdf_form.py +170 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/delete_pdf_pages.py +174 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/fill_pdf_form.py +182 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/flatten_pdf.py +161 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/get_image_metadata.py +169 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/get_pdf_metadata.py +161 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/linearize_pdf.py +180 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/protect_pdf.py +178 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/repair_pdf.py +165 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/resize_image.py +200 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/rotate_image.py +179 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/rotate_pdf.py +173 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/rotate_pdf_page.py +184 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/sign_pdf.py +258 -0
- pdf4me_mcp-0.1.0/pdf4me_mcp/mcp/tools/unlock_pdf.py +173 -0
- pdf4me_mcp-0.1.0/pyproject.toml +21 -0
- pdf4me_mcp-0.1.0/uv.lock +1511 -0
|
@@ -0,0 +1,629 @@
|
|
|
1
|
+
## Ignore Visual Studio temporary files, build results, and
|
|
2
|
+
## files generated by popular Visual Studio add-ons.
|
|
3
|
+
##
|
|
4
|
+
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
|
|
5
|
+
|
|
6
|
+
# User-specific files
|
|
7
|
+
*.rsuser
|
|
8
|
+
*.suo
|
|
9
|
+
*.user
|
|
10
|
+
*.userosscache
|
|
11
|
+
*.sln.docstates
|
|
12
|
+
*.env
|
|
13
|
+
|
|
14
|
+
# User-specific files (MonoDevelop/Xamarin Studio)
|
|
15
|
+
*.userprefs
|
|
16
|
+
|
|
17
|
+
# Mono auto generated files
|
|
18
|
+
mono_crash.*
|
|
19
|
+
|
|
20
|
+
# Build results
|
|
21
|
+
[Dd]ebug/
|
|
22
|
+
[Dd]ebugPublic/
|
|
23
|
+
[Rr]elease/
|
|
24
|
+
[Rr]eleases/
|
|
25
|
+
x64/
|
|
26
|
+
x86/
|
|
27
|
+
[Ww][Ii][Nn]32/
|
|
28
|
+
[Aa][Rr][Mm]/
|
|
29
|
+
[Aa][Rr][Mm]64/
|
|
30
|
+
[Aa][Rr][Mm]64[Ee][Cc]/
|
|
31
|
+
bld/
|
|
32
|
+
[Oo]bj/
|
|
33
|
+
[Oo]ut/
|
|
34
|
+
[Ll]og/
|
|
35
|
+
[Ll]ogs/
|
|
36
|
+
|
|
37
|
+
# Build results on 'Bin' directories
|
|
38
|
+
**/[Bb]in/*
|
|
39
|
+
# Uncomment if you have tasks that rely on *.refresh files to move binaries
|
|
40
|
+
# (https://github.com/github/gitignore/pull/3736)
|
|
41
|
+
#!**/[Bb]in/*.refresh
|
|
42
|
+
|
|
43
|
+
# Visual Studio 2015/2017 cache/options directory
|
|
44
|
+
.vs/
|
|
45
|
+
# Uncomment if you have tasks that create the project's static files in wwwroot
|
|
46
|
+
#wwwroot/
|
|
47
|
+
|
|
48
|
+
# Visual Studio 2017 auto generated files
|
|
49
|
+
Generated\ Files/
|
|
50
|
+
|
|
51
|
+
# MSTest test Results
|
|
52
|
+
[Tt]est[Rr]esult*/
|
|
53
|
+
[Bb]uild[Ll]og.*
|
|
54
|
+
*.trx
|
|
55
|
+
|
|
56
|
+
# NUnit
|
|
57
|
+
*.VisualState.xml
|
|
58
|
+
TestResult.xml
|
|
59
|
+
nunit-*.xml
|
|
60
|
+
|
|
61
|
+
# Approval Tests result files
|
|
62
|
+
*.received.*
|
|
63
|
+
|
|
64
|
+
# Build Results of an ATL Project
|
|
65
|
+
[Dd]ebugPS/
|
|
66
|
+
[Rr]eleasePS/
|
|
67
|
+
dlldata.c
|
|
68
|
+
|
|
69
|
+
# Benchmark Results
|
|
70
|
+
BenchmarkDotNet.Artifacts/
|
|
71
|
+
|
|
72
|
+
# .NET Core
|
|
73
|
+
project.lock.json
|
|
74
|
+
project.fragment.lock.json
|
|
75
|
+
artifacts/
|
|
76
|
+
|
|
77
|
+
# ASP.NET Scaffolding
|
|
78
|
+
ScaffoldingReadMe.txt
|
|
79
|
+
|
|
80
|
+
# StyleCop
|
|
81
|
+
StyleCopReport.xml
|
|
82
|
+
|
|
83
|
+
# Files built by Visual Studio
|
|
84
|
+
*_i.c
|
|
85
|
+
*_p.c
|
|
86
|
+
*_h.h
|
|
87
|
+
*.ilk
|
|
88
|
+
*.meta
|
|
89
|
+
*.obj
|
|
90
|
+
*.idb
|
|
91
|
+
*.iobj
|
|
92
|
+
*.pch
|
|
93
|
+
*.pdb
|
|
94
|
+
*.ipdb
|
|
95
|
+
*.pgc
|
|
96
|
+
*.pgd
|
|
97
|
+
*.rsp
|
|
98
|
+
# but not Directory.Build.rsp, as it configures directory-level build defaults
|
|
99
|
+
!Directory.Build.rsp
|
|
100
|
+
*.sbr
|
|
101
|
+
*.tlb
|
|
102
|
+
*.tli
|
|
103
|
+
*.tlh
|
|
104
|
+
*.tmp
|
|
105
|
+
*.tmp_proj
|
|
106
|
+
*_wpftmp.csproj
|
|
107
|
+
*.log
|
|
108
|
+
*.tlog
|
|
109
|
+
*.vspscc
|
|
110
|
+
*.vssscc
|
|
111
|
+
.builds
|
|
112
|
+
*.pidb
|
|
113
|
+
*.svclog
|
|
114
|
+
*.scc
|
|
115
|
+
|
|
116
|
+
# Chutzpah Test files
|
|
117
|
+
_Chutzpah*
|
|
118
|
+
|
|
119
|
+
# Visual C++ cache files
|
|
120
|
+
ipch/
|
|
121
|
+
*.aps
|
|
122
|
+
*.ncb
|
|
123
|
+
*.opendb
|
|
124
|
+
*.opensdf
|
|
125
|
+
*.sdf
|
|
126
|
+
*.cachefile
|
|
127
|
+
*.VC.db
|
|
128
|
+
*.VC.VC.opendb
|
|
129
|
+
|
|
130
|
+
# Visual Studio profiler
|
|
131
|
+
*.psess
|
|
132
|
+
*.vsp
|
|
133
|
+
*.vspx
|
|
134
|
+
*.sap
|
|
135
|
+
|
|
136
|
+
# Visual Studio Trace Files
|
|
137
|
+
*.e2e
|
|
138
|
+
|
|
139
|
+
# TFS 2012 Local Workspace
|
|
140
|
+
$tf/
|
|
141
|
+
|
|
142
|
+
# Guidance Automation Toolkit
|
|
143
|
+
*.gpState
|
|
144
|
+
|
|
145
|
+
# ReSharper is a .NET coding add-in
|
|
146
|
+
_ReSharper*/
|
|
147
|
+
*.[Rr]e[Ss]harper
|
|
148
|
+
*.DotSettings.user
|
|
149
|
+
|
|
150
|
+
# TeamCity is a build add-in
|
|
151
|
+
_TeamCity*
|
|
152
|
+
|
|
153
|
+
# DotCover is a Code Coverage Tool
|
|
154
|
+
*.dotCover
|
|
155
|
+
|
|
156
|
+
# AxoCover is a Code Coverage Tool
|
|
157
|
+
.axoCover/*
|
|
158
|
+
!.axoCover/settings.json
|
|
159
|
+
|
|
160
|
+
# Coverlet is a free, cross platform Code Coverage Tool
|
|
161
|
+
coverage*.json
|
|
162
|
+
coverage*.xml
|
|
163
|
+
coverage*.info
|
|
164
|
+
|
|
165
|
+
# Visual Studio code coverage results
|
|
166
|
+
*.coverage
|
|
167
|
+
*.coveragexml
|
|
168
|
+
|
|
169
|
+
# NCrunch
|
|
170
|
+
_NCrunch_*
|
|
171
|
+
.NCrunch_*
|
|
172
|
+
.*crunch*.local.xml
|
|
173
|
+
nCrunchTemp_*
|
|
174
|
+
|
|
175
|
+
# MightyMoose
|
|
176
|
+
*.mm.*
|
|
177
|
+
AutoTest.Net/
|
|
178
|
+
|
|
179
|
+
# Web workbench (sass)
|
|
180
|
+
.sass-cache/
|
|
181
|
+
|
|
182
|
+
# Installshield output folder
|
|
183
|
+
[Ee]xpress/
|
|
184
|
+
|
|
185
|
+
# DocProject is a documentation generator add-in
|
|
186
|
+
DocProject/buildhelp/
|
|
187
|
+
DocProject/Help/*.HxT
|
|
188
|
+
DocProject/Help/*.HxC
|
|
189
|
+
DocProject/Help/*.hhc
|
|
190
|
+
DocProject/Help/*.hhk
|
|
191
|
+
DocProject/Help/*.hhp
|
|
192
|
+
DocProject/Help/Html2
|
|
193
|
+
DocProject/Help/html
|
|
194
|
+
|
|
195
|
+
# Click-Once directory
|
|
196
|
+
publish/
|
|
197
|
+
|
|
198
|
+
# Publish Web Output
|
|
199
|
+
*.[Pp]ublish.xml
|
|
200
|
+
*.azurePubxml
|
|
201
|
+
# Note: Comment the next line if you want to checkin your web deploy settings,
|
|
202
|
+
# but database connection strings (with potential passwords) will be unencrypted
|
|
203
|
+
*.pubxml
|
|
204
|
+
*.publishproj
|
|
205
|
+
|
|
206
|
+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
|
207
|
+
# checkin your Azure Web App publish settings, but sensitive information contained
|
|
208
|
+
# in these scripts will be unencrypted
|
|
209
|
+
PublishScripts/
|
|
210
|
+
|
|
211
|
+
# NuGet Packages
|
|
212
|
+
*.nupkg
|
|
213
|
+
# NuGet Symbol Packages
|
|
214
|
+
*.snupkg
|
|
215
|
+
# The packages folder can be ignored because of Package Restore
|
|
216
|
+
**/[Pp]ackages/*
|
|
217
|
+
# except build/, which is used as an MSBuild target.
|
|
218
|
+
!**/[Pp]ackages/build/
|
|
219
|
+
# Uncomment if necessary however generally it will be regenerated when needed
|
|
220
|
+
#!**/[Pp]ackages/repositories.config
|
|
221
|
+
# NuGet v3's project.json files produces more ignorable files
|
|
222
|
+
*.nuget.props
|
|
223
|
+
*.nuget.targets
|
|
224
|
+
|
|
225
|
+
# Microsoft Azure Build Output
|
|
226
|
+
csx/
|
|
227
|
+
*.build.csdef
|
|
228
|
+
|
|
229
|
+
# Microsoft Azure Emulator
|
|
230
|
+
ecf/
|
|
231
|
+
rcf/
|
|
232
|
+
|
|
233
|
+
# Windows Store app package directories and files
|
|
234
|
+
AppPackages/
|
|
235
|
+
BundleArtifacts/
|
|
236
|
+
Package.StoreAssociation.xml
|
|
237
|
+
_pkginfo.txt
|
|
238
|
+
*.appx
|
|
239
|
+
*.appxbundle
|
|
240
|
+
*.appxupload
|
|
241
|
+
|
|
242
|
+
# Visual Studio cache files
|
|
243
|
+
# files ending in .cache can be ignored
|
|
244
|
+
*.[Cc]ache
|
|
245
|
+
# but keep track of directories ending in .cache
|
|
246
|
+
!?*.[Cc]ache/
|
|
247
|
+
|
|
248
|
+
# Others
|
|
249
|
+
ClientBin/
|
|
250
|
+
~$*
|
|
251
|
+
*~
|
|
252
|
+
*.dbmdl
|
|
253
|
+
*.dbproj.schemaview
|
|
254
|
+
*.jfm
|
|
255
|
+
*.pfx
|
|
256
|
+
*.publishsettings
|
|
257
|
+
orleans.codegen.cs
|
|
258
|
+
|
|
259
|
+
# Including strong name files can present a security risk
|
|
260
|
+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
|
261
|
+
#*.snk
|
|
262
|
+
|
|
263
|
+
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
|
264
|
+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
|
265
|
+
#bower_components/
|
|
266
|
+
|
|
267
|
+
# RIA/Silverlight projects
|
|
268
|
+
Generated_Code/
|
|
269
|
+
|
|
270
|
+
# Backup & report files from converting an old project file
|
|
271
|
+
# to a newer Visual Studio version. Backup files are not needed,
|
|
272
|
+
# because we have git ;-)
|
|
273
|
+
_UpgradeReport_Files/
|
|
274
|
+
Backup*/
|
|
275
|
+
UpgradeLog*.XML
|
|
276
|
+
UpgradeLog*.htm
|
|
277
|
+
ServiceFabricBackup/
|
|
278
|
+
*.rptproj.bak
|
|
279
|
+
|
|
280
|
+
# SQL Server files
|
|
281
|
+
*.mdf
|
|
282
|
+
*.ldf
|
|
283
|
+
*.ndf
|
|
284
|
+
|
|
285
|
+
# Business Intelligence projects
|
|
286
|
+
*.rdl.data
|
|
287
|
+
*.bim.layout
|
|
288
|
+
*.bim_*.settings
|
|
289
|
+
*.rptproj.rsuser
|
|
290
|
+
*- [Bb]ackup.rdl
|
|
291
|
+
*- [Bb]ackup ([0-9]).rdl
|
|
292
|
+
*- [Bb]ackup ([0-9][0-9]).rdl
|
|
293
|
+
|
|
294
|
+
# Microsoft Fakes
|
|
295
|
+
FakesAssemblies/
|
|
296
|
+
|
|
297
|
+
# GhostDoc plugin setting file
|
|
298
|
+
*.GhostDoc.xml
|
|
299
|
+
|
|
300
|
+
# Node.js Tools for Visual Studio
|
|
301
|
+
.ntvs_analysis.dat
|
|
302
|
+
node_modules/
|
|
303
|
+
|
|
304
|
+
# Visual Studio 6 build log
|
|
305
|
+
*.plg
|
|
306
|
+
|
|
307
|
+
# Visual Studio 6 workspace options file
|
|
308
|
+
*.opt
|
|
309
|
+
|
|
310
|
+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
|
311
|
+
*.vbw
|
|
312
|
+
|
|
313
|
+
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
|
|
314
|
+
*.vbp
|
|
315
|
+
|
|
316
|
+
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
|
|
317
|
+
*.dsw
|
|
318
|
+
*.dsp
|
|
319
|
+
|
|
320
|
+
# Visual Studio 6 technical files
|
|
321
|
+
*.ncb
|
|
322
|
+
*.aps
|
|
323
|
+
|
|
324
|
+
# Visual Studio LightSwitch build output
|
|
325
|
+
**/*.HTMLClient/GeneratedArtifacts
|
|
326
|
+
**/*.DesktopClient/GeneratedArtifacts
|
|
327
|
+
**/*.DesktopClient/ModelManifest.xml
|
|
328
|
+
**/*.Server/GeneratedArtifacts
|
|
329
|
+
**/*.Server/ModelManifest.xml
|
|
330
|
+
_Pvt_Extensions
|
|
331
|
+
|
|
332
|
+
# Paket dependency manager
|
|
333
|
+
**/.paket/paket.exe
|
|
334
|
+
paket-files/
|
|
335
|
+
|
|
336
|
+
# FAKE - F# Make
|
|
337
|
+
**/.fake/
|
|
338
|
+
|
|
339
|
+
# CodeRush personal settings
|
|
340
|
+
**/.cr/personal
|
|
341
|
+
|
|
342
|
+
# Python Tools for Visual Studio (PTVS)
|
|
343
|
+
**/__pycache__/
|
|
344
|
+
*.pyc
|
|
345
|
+
|
|
346
|
+
# Cake - Uncomment if you are using it
|
|
347
|
+
#tools/**
|
|
348
|
+
#!tools/packages.config
|
|
349
|
+
|
|
350
|
+
# Tabs Studio
|
|
351
|
+
*.tss
|
|
352
|
+
|
|
353
|
+
# Telerik's JustMock configuration file
|
|
354
|
+
*.jmconfig
|
|
355
|
+
|
|
356
|
+
# BizTalk build output
|
|
357
|
+
*.btp.cs
|
|
358
|
+
*.btm.cs
|
|
359
|
+
*.odx.cs
|
|
360
|
+
*.xsd.cs
|
|
361
|
+
|
|
362
|
+
# OpenCover UI analysis results
|
|
363
|
+
OpenCover/
|
|
364
|
+
|
|
365
|
+
# Azure Stream Analytics local run output
|
|
366
|
+
ASALocalRun/
|
|
367
|
+
|
|
368
|
+
# MSBuild Binary and Structured Log
|
|
369
|
+
*.binlog
|
|
370
|
+
MSBuild_Logs/
|
|
371
|
+
|
|
372
|
+
# AWS SAM Build and Temporary Artifacts folder
|
|
373
|
+
.aws-sam
|
|
374
|
+
|
|
375
|
+
# NVidia Nsight GPU debugger configuration file
|
|
376
|
+
*.nvuser
|
|
377
|
+
|
|
378
|
+
# MFractors (Xamarin productivity tool) working folder
|
|
379
|
+
**/.mfractor/
|
|
380
|
+
|
|
381
|
+
# Local History for Visual Studio
|
|
382
|
+
**/.localhistory/
|
|
383
|
+
|
|
384
|
+
# Visual Studio History (VSHistory) files
|
|
385
|
+
.vshistory/
|
|
386
|
+
|
|
387
|
+
# BeatPulse healthcheck temp database
|
|
388
|
+
healthchecksdb
|
|
389
|
+
|
|
390
|
+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
|
|
391
|
+
MigrationBackup/
|
|
392
|
+
|
|
393
|
+
# Ionide (cross platform F# VS Code tools) working folder
|
|
394
|
+
**/.ionide/
|
|
395
|
+
|
|
396
|
+
# Fody - auto-generated XML schema
|
|
397
|
+
FodyWeavers.xsd
|
|
398
|
+
|
|
399
|
+
# VS Code files for those working on multiple tools
|
|
400
|
+
.vscode/*
|
|
401
|
+
!.vscode/settings.json
|
|
402
|
+
!.vscode/tasks.json
|
|
403
|
+
!.vscode/launch.json
|
|
404
|
+
!.vscode/extensions.json
|
|
405
|
+
!.vscode/*.code-snippets
|
|
406
|
+
|
|
407
|
+
# Local History for Visual Studio Code
|
|
408
|
+
.history/
|
|
409
|
+
|
|
410
|
+
# Built Visual Studio Code Extensions
|
|
411
|
+
*.vsix
|
|
412
|
+
|
|
413
|
+
# Windows Installer files from build outputs
|
|
414
|
+
*.cab
|
|
415
|
+
*.msi
|
|
416
|
+
*.msix
|
|
417
|
+
*.msm
|
|
418
|
+
*.msp
|
|
419
|
+
|
|
420
|
+
# Byte-compiled / optimized / DLL files
|
|
421
|
+
__pycache__/
|
|
422
|
+
*.py[codz]
|
|
423
|
+
*$py.class
|
|
424
|
+
|
|
425
|
+
# C extensions
|
|
426
|
+
*.so
|
|
427
|
+
|
|
428
|
+
# Distribution / packaging
|
|
429
|
+
.Python
|
|
430
|
+
build/
|
|
431
|
+
develop-eggs/
|
|
432
|
+
dist/
|
|
433
|
+
downloads/
|
|
434
|
+
eggs/
|
|
435
|
+
.eggs/
|
|
436
|
+
lib/
|
|
437
|
+
lib64/
|
|
438
|
+
parts/
|
|
439
|
+
sdist/
|
|
440
|
+
var/
|
|
441
|
+
wheels/
|
|
442
|
+
share/python-wheels/
|
|
443
|
+
*.egg-info/
|
|
444
|
+
.installed.cfg
|
|
445
|
+
*.egg
|
|
446
|
+
MANIFEST
|
|
447
|
+
|
|
448
|
+
# PyInstaller
|
|
449
|
+
# Usually these files are written by a python script from a template
|
|
450
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
451
|
+
*.manifest
|
|
452
|
+
*.spec
|
|
453
|
+
|
|
454
|
+
# Installer logs
|
|
455
|
+
pip-log.txt
|
|
456
|
+
pip-delete-this-directory.txt
|
|
457
|
+
|
|
458
|
+
# Unit test / coverage reports
|
|
459
|
+
htmlcov/
|
|
460
|
+
.tox/
|
|
461
|
+
.nox/
|
|
462
|
+
.coverage
|
|
463
|
+
.coverage.*
|
|
464
|
+
.cache
|
|
465
|
+
nosetests.xml
|
|
466
|
+
coverage.xml
|
|
467
|
+
*.cover
|
|
468
|
+
*.py.cover
|
|
469
|
+
.hypothesis/
|
|
470
|
+
.pytest_cache/
|
|
471
|
+
cover/
|
|
472
|
+
|
|
473
|
+
# Translations
|
|
474
|
+
*.mo
|
|
475
|
+
*.pot
|
|
476
|
+
|
|
477
|
+
# Django stuff:
|
|
478
|
+
*.log
|
|
479
|
+
local_settings.py
|
|
480
|
+
db.sqlite3
|
|
481
|
+
db.sqlite3-journal
|
|
482
|
+
|
|
483
|
+
# Flask stuff:
|
|
484
|
+
instance/
|
|
485
|
+
.webassets-cache
|
|
486
|
+
|
|
487
|
+
# Scrapy stuff:
|
|
488
|
+
.scrapy
|
|
489
|
+
|
|
490
|
+
# Sphinx documentation
|
|
491
|
+
docs/_build/
|
|
492
|
+
|
|
493
|
+
# PyBuilder
|
|
494
|
+
.pybuilder/
|
|
495
|
+
target/
|
|
496
|
+
|
|
497
|
+
# Jupyter Notebook
|
|
498
|
+
.ipynb_checkpoints
|
|
499
|
+
|
|
500
|
+
# IPython
|
|
501
|
+
profile_default/
|
|
502
|
+
ipython_config.py
|
|
503
|
+
|
|
504
|
+
# pyenv
|
|
505
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
506
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
507
|
+
# .python-version
|
|
508
|
+
|
|
509
|
+
# pipenv
|
|
510
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
511
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
512
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
513
|
+
# install all needed dependencies.
|
|
514
|
+
#Pipfile.lock
|
|
515
|
+
|
|
516
|
+
# UV
|
|
517
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
518
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
519
|
+
# commonly ignored for libraries.
|
|
520
|
+
#uv.lock
|
|
521
|
+
|
|
522
|
+
# poetry
|
|
523
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
524
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
525
|
+
# commonly ignored for libraries.
|
|
526
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
527
|
+
#poetry.lock
|
|
528
|
+
#poetry.toml
|
|
529
|
+
|
|
530
|
+
# pdm
|
|
531
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
532
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
533
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
534
|
+
#pdm.lock
|
|
535
|
+
#pdm.toml
|
|
536
|
+
.pdm-python
|
|
537
|
+
.pdm-build/
|
|
538
|
+
|
|
539
|
+
# pixi
|
|
540
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
541
|
+
#pixi.lock
|
|
542
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
543
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
544
|
+
.pixi
|
|
545
|
+
|
|
546
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
547
|
+
__pypackages__/
|
|
548
|
+
|
|
549
|
+
# Celery stuff
|
|
550
|
+
celerybeat-schedule
|
|
551
|
+
celerybeat.pid
|
|
552
|
+
|
|
553
|
+
# SageMath parsed files
|
|
554
|
+
*.sage.py
|
|
555
|
+
|
|
556
|
+
# Environments
|
|
557
|
+
.env
|
|
558
|
+
.envrc
|
|
559
|
+
.venv
|
|
560
|
+
env/
|
|
561
|
+
venv/
|
|
562
|
+
ENV/
|
|
563
|
+
env.bak/
|
|
564
|
+
venv.bak/
|
|
565
|
+
|
|
566
|
+
# Spyder project settings
|
|
567
|
+
.spyderproject
|
|
568
|
+
.spyproject
|
|
569
|
+
|
|
570
|
+
# Rope project settings
|
|
571
|
+
.ropeproject
|
|
572
|
+
|
|
573
|
+
# mkdocs documentation
|
|
574
|
+
/site
|
|
575
|
+
|
|
576
|
+
# mypy
|
|
577
|
+
.mypy_cache/
|
|
578
|
+
.dmypy.json
|
|
579
|
+
dmypy.json
|
|
580
|
+
|
|
581
|
+
# Pyre type checker
|
|
582
|
+
.pyre/
|
|
583
|
+
|
|
584
|
+
# pytype static type analyzer
|
|
585
|
+
.pytype/
|
|
586
|
+
|
|
587
|
+
# Cython debug symbols
|
|
588
|
+
cython_debug/
|
|
589
|
+
|
|
590
|
+
# PyCharm
|
|
591
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
592
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
593
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
594
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
595
|
+
#.idea/
|
|
596
|
+
|
|
597
|
+
# Abstra
|
|
598
|
+
# Abstra is an AI-powered process automation framework.
|
|
599
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
600
|
+
# Learn more at https://abstra.io/docs
|
|
601
|
+
.abstra/
|
|
602
|
+
|
|
603
|
+
# Visual Studio Code
|
|
604
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
605
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
606
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
607
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
608
|
+
# .vscode/
|
|
609
|
+
|
|
610
|
+
# Ruff stuff:
|
|
611
|
+
.ruff_cache/
|
|
612
|
+
|
|
613
|
+
# PyPI configuration file
|
|
614
|
+
.pypirc
|
|
615
|
+
|
|
616
|
+
# Cursor
|
|
617
|
+
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
|
|
618
|
+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
|
|
619
|
+
# refer to https://docs.cursor.com/context/ignore-files
|
|
620
|
+
.cursorignore
|
|
621
|
+
.cursorindexingignore
|
|
622
|
+
|
|
623
|
+
# Marimo
|
|
624
|
+
marimo/_static/
|
|
625
|
+
marimo/_lsp/
|
|
626
|
+
__marimo__/
|
|
627
|
+
|
|
628
|
+
# vscode
|
|
629
|
+
.vscode/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.14
|
pdf4me_mcp-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 pdf4me
|
|
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.
|