cloudpdf 0.0.1__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.
- cloudpdf-0.0.1/PKG-INFO +25 -0
- cloudpdf-0.0.1/README.md +11 -0
- cloudpdf-0.0.1/pyproject.toml +21 -0
- cloudpdf-0.0.1/src/cloudpdf/__init__.py +8 -0
cloudpdf-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cloudpdf
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Python SDK for CloudPDF, the cloud PDF engine. Name placeholder ahead of the first generated SDK release.
|
|
5
|
+
Project-URL: Homepage, https://www.cloudpdf.com
|
|
6
|
+
Project-URL: Repository, https://github.com/embedpdf/embed-pdf-viewer
|
|
7
|
+
Author-email: CloudPDF <hello@cloudpdf.com>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
Classifier: Development Status :: 3 - Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# cloudpdf
|
|
16
|
+
|
|
17
|
+
The official Python SDK for [CloudPDF](https://www.cloudpdf.com) — the
|
|
18
|
+
document engine behind the CloudPDF viewer: uploads, viewer tokens,
|
|
19
|
+
annotations, forms, page operations, redaction, and download, from your
|
|
20
|
+
backend.
|
|
21
|
+
|
|
22
|
+
This release reserves the package name ahead of the first generated SDK
|
|
23
|
+
release, which is built from CloudPDF's OpenAPI contract and arriving
|
|
24
|
+
shortly. Until then, see https://www.cloudpdf.com for the API reference
|
|
25
|
+
and other SDKs.
|
cloudpdf-0.0.1/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# cloudpdf
|
|
2
|
+
|
|
3
|
+
The official Python SDK for [CloudPDF](https://www.cloudpdf.com) — the
|
|
4
|
+
document engine behind the CloudPDF viewer: uploads, viewer tokens,
|
|
5
|
+
annotations, forms, page operations, redaction, and download, from your
|
|
6
|
+
backend.
|
|
7
|
+
|
|
8
|
+
This release reserves the package name ahead of the first generated SDK
|
|
9
|
+
release, which is built from CloudPDF's OpenAPI contract and arriving
|
|
10
|
+
shortly. Until then, see https://www.cloudpdf.com for the API reference
|
|
11
|
+
and other SDKs.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "cloudpdf"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Official Python SDK for CloudPDF, the cloud PDF engine. Name placeholder ahead of the first generated SDK release."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [{ name = "CloudPDF", email = "hello@cloudpdf.com" }]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 3 - Alpha",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://www.cloudpdf.com"
|
|
21
|
+
Repository = "https://github.com/embedpdf/embed-pdf-viewer"
|