Metadata in PDF files can be stored in at least two places:
- the Info Dictionary, a limited set of key/value pairs
- XMP packets, which contain RDF statements expressed as XML
#!/usr/bin/env python | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
""" |
--[[ config | |
root = "./" | |
listen = "127.0.0.1:8786" | |
redisaddr = "127.0.0.1:6379[1]" | |
dbfile = root .. "backup.db" | |
thread = 4 | |
logger = nil | |
harbor = 1 |
from trello import * | |
import re | |
from pprint import pprint | |
from difflib import * | |
client = TrelloClient( | |
'YOUR_KEY', | |
'YOUR_TOKEN', | |
) |
$ text-builder -index /path/to/index.txt
Or run $ sh build-all
to build all your index files.本人不提供任何保证和技术支持,使用者自负风险。
There are no guarantees, no any support. Use it at your own risk.
@ECHO OFF&PUSHD %~DP0 | |
TITLE title KMS_Activation for Windows 10 | |
Rd "%WinDir%\system32\test_permissions" >NUL 2>NUL | |
Md "%WinDir%\System32\test_permissions" 2>NUL||(Echo 请使用右键管理员身份运行!&&Pause >nul&&Exit) | |
Rd "%WinDir%\System32\test_permissions" 2>NUL | |
SetLocal EnableDelayedExpansion | |
::修改下面的内容,定义选择想使用的KMS服务器。如果定义了多次,最后的有效 | |
::set KMS_Sev=192.168.2.8 | |
::set KMS_Sev=1.2.7.0 |
""" | |
Title: Directory Loader using Unstructured API with Error Handling and LangChain Document Output | |
Description: A class for loading documents from a directory using the LangChain format. | |
It supports recursive loading and conversion of documents to the LangChain Document class using the UnstructuredClient API. | |
The class includes built-in error handling and outputs documents in the same style as the LangChain Document class. | |
To use, get a free unstructured API key here: https://unstructured.io/api-key | |
Author: @CivilEngineerUK |