queuerPy 0.4.0__tar.gz → 0.5.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.
- {queuerpy-0.4.0/queuerPy.egg-info → queuerpy-0.5.0}/PKG-INFO +2 -2
- {queuerpy-0.4.0 → queuerpy-0.5.0}/README.md +1 -1
- {queuerpy-0.4.0 → queuerpy-0.5.0}/_version.py +1 -1
- {queuerpy-0.4.0 → queuerpy-0.5.0}/pyproject.toml +1 -1
- {queuerpy-0.4.0 → queuerpy-0.5.0/queuerPy.egg-info}/PKG-INFO +2 -2
- {queuerpy-0.4.0 → queuerpy-0.5.0}/LICENSE +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/MANIFEST.in +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/__init__.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/core/__init__.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/core/broadcaster.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/core/listener.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/core/retryer.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/core/runner.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/core/scheduler.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/core/ticker.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/database/__init__.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/database/db_job.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/database/db_listener.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/database/db_worker.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/helper/__init__.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/helper/database.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/helper/error.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/helper/logging.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/helper/sql.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/helper/task.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/model/__init__.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/model/batch_job.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/model/connection.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/model/job.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/model/options.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/model/options_on_error.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/model/task.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/model/worker.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/queuer.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/queuerPy.egg-info/SOURCES.txt +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/queuerPy.egg-info/dependency_links.txt +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/queuerPy.egg-info/requires.txt +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/queuerPy.egg-info/top_level.txt +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/queuer_global.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/queuer_job.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/queuer_listener.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/queuer_next_interval.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/queuer_task.py +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/setup.cfg +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/sql/job.sql +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/sql/notify.sql +0 -0
- {queuerpy-0.4.0 → queuerpy-0.5.0}/sql/worker.sql +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: queuerPy
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: A Python implementation of the queuer system - a job queuing and processing system with PostgreSQL backend
|
|
5
5
|
Author-email: Simon Herrmann <siherrmann@users.noreply.github.com>
|
|
6
6
|
Maintainer-email: Simon Herrmann <siherrmann@users.noreply.github.com>
|
|
@@ -45,7 +45,7 @@ Dynamic: license-file
|
|
|
45
45
|
|
|
46
46
|
[](https://www.python.org/)
|
|
47
47
|
[](https://github.com/siherrmann/queuer/blob/master/LICENSE)
|
|
48
|
-

|
|
49
49
|
|
|
50
50
|
Python port of the queuer package - a queueing system based on PostgreSQL.
|
|
51
51
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.python.org/)
|
|
4
4
|
[](https://github.com/siherrmann/queuer/blob/master/LICENSE)
|
|
5
|
-

|
|
6
6
|
|
|
7
7
|
Python port of the queuer package - a queueing system based on PostgreSQL.
|
|
8
8
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "queuerPy"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.5.0"
|
|
8
8
|
description = "A Python implementation of the queuer system - a job queuing and processing system with PostgreSQL backend"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: queuerPy
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: A Python implementation of the queuer system - a job queuing and processing system with PostgreSQL backend
|
|
5
5
|
Author-email: Simon Herrmann <siherrmann@users.noreply.github.com>
|
|
6
6
|
Maintainer-email: Simon Herrmann <siherrmann@users.noreply.github.com>
|
|
@@ -45,7 +45,7 @@ Dynamic: license-file
|
|
|
45
45
|
|
|
46
46
|
[](https://www.python.org/)
|
|
47
47
|
[](https://github.com/siherrmann/queuer/blob/master/LICENSE)
|
|
48
|
-

|
|
49
49
|
|
|
50
50
|
Python port of the queuer package - a queueing system based on PostgreSQL.
|
|
51
51
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|