millionsend 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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 MillionSend
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.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.5
2
+ Name: millionsend
3
+ Version: 0.0.1
4
+ Summary: Official Python SDK for MillionSend — the open-source email platform. Under active development.
5
+ Project-URL: Homepage, https://github.com/MillionSend
6
+ Project-URL: Repository, https://github.com/MillionSend/millionsend-python
7
+ License: MIT
8
+ License-File: LICENSE
9
+ Keywords: email,millionsend,ses,transactional-email
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+
13
+ # millionsend
14
+
15
+ Official Python SDK for [MillionSend](https://github.com/MillionSend) — the open-source,
16
+ self-hostable email platform (bring your own AWS SES, or use the hosted cloud).
17
+
18
+ **Status: under active development.** This release reserves the package name; the first working
19
+ SDK will land here. Watch the [MillionSend GitHub org](https://github.com/MillionSend) for progress.
@@ -0,0 +1,7 @@
1
+ # millionsend
2
+
3
+ Official Python SDK for [MillionSend](https://github.com/MillionSend) — the open-source,
4
+ self-hostable email platform (bring your own AWS SES, or use the hosted cloud).
5
+
6
+ **Status: under active development.** This release reserves the package name; the first working
7
+ SDK will land here. Watch the [MillionSend GitHub org](https://github.com/MillionSend) for progress.
@@ -0,0 +1,13 @@
1
+ """MillionSend Python SDK — under active development.
2
+
3
+ The published API will mirror the shape you already know::
4
+
5
+ import millionsend
6
+ millionsend.api_key = os.environ["MILLIONSEND_API_KEY"]
7
+ millionsend.Emails.send({"from": ..., "to": ..., "subject": ..., "html": ...})
8
+
9
+ This placeholder release reserves the package name. Follow
10
+ https://github.com/MillionSend for the first working release.
11
+ """
12
+
13
+ __version__ = "0.0.1"
@@ -0,0 +1,16 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "millionsend"
7
+ version = "0.0.1"
8
+ description = "Official Python SDK for MillionSend — the open-source email platform. Under active development."
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.9"
12
+ keywords = ["email", "millionsend", "ses", "transactional-email"]
13
+
14
+ [project.urls]
15
+ Homepage = "https://github.com/MillionSend"
16
+ Repository = "https://github.com/MillionSend/millionsend-python"