omserv 0.0.0.dev300__tar.gz → 0.0.0.dev302__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.
- {omserv-0.0.0.dev300/omserv.egg-info → omserv-0.0.0.dev302}/PKG-INFO +4 -4
- omserv-0.0.0.dev302/README.md +40 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/__about__.py +1 -1
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302/omserv.egg-info}/PKG-INFO +4 -4
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv.egg-info/requires.txt +3 -3
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/pyproject.toml +4 -4
- omserv-0.0.0.dev300/README.md +0 -31
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/LICENSE +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/MANIFEST.in +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/.manifests.json +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/__init__.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/apps/__init__.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/apps/base.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/apps/inject.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/apps/markers.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/apps/routes.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/apps/sessions.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/apps/templates.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nginx/__init__.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nginx/build.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nginx/logs.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nginx/patches/__init__.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nginx/patches/nginx-1.27.4_http_status.patch +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nginx/stubstatus.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nodes/__init__.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nodes/models.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nodes/registry.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nodes/sql.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/LICENSE +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/__init__.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/config.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/debug.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/default.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/events.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/headers.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/inject.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/lifespans.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/listener.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/multiprocess.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/protocols/__init__.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/protocols/h11.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/protocols/h2.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/protocols/protocols.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/protocols/types.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/resources/__init__.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/resources/favicon.ico +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/server.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/sockets.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/ssl.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/streams/__init__.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/streams/httpstream.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/streams/utils.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/streams/wsstream.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/taskspawner.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/types.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/server/workercontext.py +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv.egg-info/SOURCES.txt +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv.egg-info/dependency_links.txt +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv.egg-info/entry_points.txt +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv.egg-info/top_level.txt +0 -0
- {omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omserv
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev302
|
4
4
|
Summary: omserv
|
5
5
|
Author: wrmsr
|
6
6
|
License: BSD-3-Clause
|
@@ -12,15 +12,15 @@ Classifier: Operating System :: OS Independent
|
|
12
12
|
Classifier: Operating System :: POSIX
|
13
13
|
Requires-Python: >=3.12
|
14
14
|
License-File: LICENSE
|
15
|
-
Requires-Dist: omlish==0.0.0.
|
15
|
+
Requires-Dist: omlish==0.0.0.dev302
|
16
16
|
Provides-Extra: all
|
17
|
-
Requires-Dist: h11~=0.
|
17
|
+
Requires-Dist: h11~=0.16; extra == "all"
|
18
18
|
Requires-Dist: h2~=4.2; extra == "all"
|
19
19
|
Requires-Dist: priority~=2.0; extra == "all"
|
20
20
|
Requires-Dist: wsproto~=1.2; extra == "all"
|
21
21
|
Requires-Dist: jinja2~=3.1; extra == "all"
|
22
22
|
Provides-Extra: server
|
23
|
-
Requires-Dist: h11~=0.
|
23
|
+
Requires-Dist: h11~=0.16; extra == "server"
|
24
24
|
Requires-Dist: h2~=4.2; extra == "server"
|
25
25
|
Requires-Dist: priority~=2.0; extra == "server"
|
26
26
|
Requires-Dist: wsproto~=1.2; extra == "server"
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# Overview
|
2
|
+
|
3
|
+
My python monorepo, the successor to my previous one `omnibus`(... 'ish').
|
4
|
+
|
5
|
+
Core libraries begin with `om`, scratch app is in `app`, temp / dump code is in `x`.
|
6
|
+
|
7
|
+
The core libraries have no required dependencies besides each other, but there are numerous optional ones - see their
|
8
|
+
respective `pyproject.toml` files for details.
|
9
|
+
|
10
|
+
General code is written for python 3.12+, '[lite](omlish#lite-code)' code for 3.8+.
|
11
|
+
|
12
|
+
# Core libraries
|
13
|
+
|
14
|
+
- **[omlish](omlish#readme)** - Core foundational code
|
15
|
+
- **[omdev](omdev#readme)** - Development utilities
|
16
|
+
- **[omserv](omserv)** - Production web server
|
17
|
+
- **[ominfra](ominfra)** - Infrastructure and cloud code
|
18
|
+
- **[ommlx](ommlx)** - ML / AI code
|
19
|
+
|
20
|
+
# Installation
|
21
|
+
|
22
|
+
Core libraries installable by name from pypi:
|
23
|
+
|
24
|
+
```bash
|
25
|
+
pip install omlish
|
26
|
+
```
|
27
|
+
|
28
|
+
Or directly from git via:
|
29
|
+
|
30
|
+
```bash
|
31
|
+
pip install 'git+https://github.com/wrmsr/omlish@master#subdirectory=.pkg/<pkg>'
|
32
|
+
```
|
33
|
+
|
34
|
+
The CLI is installable through uvx or pipx via:
|
35
|
+
|
36
|
+
```bash
|
37
|
+
curl -LsSf 'https://raw.githubusercontent.com/wrmsr/omlish/master/omdev/cli/install.py' | python3 -
|
38
|
+
```
|
39
|
+
|
40
|
+
Additional deps to be injected may be appended to the command.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omserv
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev302
|
4
4
|
Summary: omserv
|
5
5
|
Author: wrmsr
|
6
6
|
License: BSD-3-Clause
|
@@ -12,15 +12,15 @@ Classifier: Operating System :: OS Independent
|
|
12
12
|
Classifier: Operating System :: POSIX
|
13
13
|
Requires-Python: >=3.12
|
14
14
|
License-File: LICENSE
|
15
|
-
Requires-Dist: omlish==0.0.0.
|
15
|
+
Requires-Dist: omlish==0.0.0.dev302
|
16
16
|
Provides-Extra: all
|
17
|
-
Requires-Dist: h11~=0.
|
17
|
+
Requires-Dist: h11~=0.16; extra == "all"
|
18
18
|
Requires-Dist: h2~=4.2; extra == "all"
|
19
19
|
Requires-Dist: priority~=2.0; extra == "all"
|
20
20
|
Requires-Dist: wsproto~=1.2; extra == "all"
|
21
21
|
Requires-Dist: jinja2~=3.1; extra == "all"
|
22
22
|
Provides-Extra: server
|
23
|
-
Requires-Dist: h11~=0.
|
23
|
+
Requires-Dist: h11~=0.16; extra == "server"
|
24
24
|
Requires-Dist: h2~=4.2; extra == "server"
|
25
25
|
Requires-Dist: priority~=2.0; extra == "server"
|
26
26
|
Requires-Dist: wsproto~=1.2; extra == "server"
|
@@ -12,7 +12,7 @@ authors = [
|
|
12
12
|
urls = {source = 'https://github.com/wrmsr/omlish'}
|
13
13
|
license = {text = 'BSD-3-Clause'}
|
14
14
|
requires-python = '>=3.12'
|
15
|
-
version = '0.0.0.
|
15
|
+
version = '0.0.0.dev302'
|
16
16
|
classifiers = [
|
17
17
|
'License :: OSI Approved :: BSD License',
|
18
18
|
'Development Status :: 2 - Pre-Alpha',
|
@@ -22,19 +22,19 @@ classifiers = [
|
|
22
22
|
]
|
23
23
|
description = 'omserv'
|
24
24
|
dependencies = [
|
25
|
-
'omlish == 0.0.0.
|
25
|
+
'omlish == 0.0.0.dev302',
|
26
26
|
]
|
27
27
|
|
28
28
|
[project.optional-dependencies]
|
29
29
|
all = [
|
30
|
-
'h11 ~= 0.
|
30
|
+
'h11 ~= 0.16',
|
31
31
|
'h2 ~= 4.2',
|
32
32
|
'priority ~= 2.0',
|
33
33
|
'wsproto ~= 1.2',
|
34
34
|
'jinja2 ~= 3.1',
|
35
35
|
]
|
36
36
|
server = [
|
37
|
-
'h11 ~= 0.
|
37
|
+
'h11 ~= 0.16',
|
38
38
|
'h2 ~= 4.2',
|
39
39
|
'priority ~= 2.0',
|
40
40
|
'wsproto ~= 1.2',
|
omserv-0.0.0.dev300/README.md
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
It's like my previous python monorepo-ey thing [`omnibus`](https://github.com/wrmsr/omnibus/tree/wrmsr_exp_split)... ish.
|
2
|
-
|
3
|
-
Core packages begin with `om`, scratch app is in `app`, temp / dump code is in `x`.
|
4
|
-
|
5
|
-
----
|
6
|
-
|
7
|
-
The core packages are:
|
8
|
-
|
9
|
-
- **omlish**: core foundational code
|
10
|
-
- **omdev**: development utilities
|
11
|
-
- **omserv**: production web server
|
12
|
-
- **ominfra**: infrastructure and cloud code
|
13
|
-
- **ommlx**: ml / ai code
|
14
|
-
|
15
|
-
----
|
16
|
-
|
17
|
-
Core packages installable from pypi, or from git via:
|
18
|
-
|
19
|
-
```bash
|
20
|
-
pip install 'git+https://github.com/wrmsr/omlish@master#subdirectory=.pkg/<pkg>'
|
21
|
-
```
|
22
|
-
|
23
|
-
Core packages have no required dependencies, but numerous optional ones - see their respective `pyproject.toml` files for details.
|
24
|
-
|
25
|
-
The CLI is installable through uvx or pipx via:
|
26
|
-
|
27
|
-
```bash
|
28
|
-
curl -LsSf 'https://raw.githubusercontent.com/wrmsr/omlish/master/omdev/cli/install.py' | python3 -
|
29
|
-
```
|
30
|
-
|
31
|
-
Additional deps to be injected may be appended to the command.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{omserv-0.0.0.dev300 → omserv-0.0.0.dev302}/omserv/nginx/patches/nginx-1.27.4_http_status.patch
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|