onestep 0.1.77__tar.gz → 0.1.78__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.

Potentially problematic release.


This version of onestep might be problematic. Click here for more details.

Files changed (23) hide show
  1. {onestep-0.1.77 → onestep-0.1.78}/PKG-INFO +1 -1
  2. {onestep-0.1.77 → onestep-0.1.78}/pyproject.toml +1 -1
  3. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/__init__.py +4 -4
  4. onestep-0.1.78/src/onestep/store/__init__.py +2 -0
  5. onestep-0.1.77/src/onestep/store/__init__.py +0 -1
  6. {onestep-0.1.77 → onestep-0.1.78}/README.md +0 -0
  7. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/broker/__init__.py +0 -0
  8. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/broker/base.py +0 -0
  9. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/broker/cron.py +0 -0
  10. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/broker/memory.py +0 -0
  11. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/broker/rabbitmq.py +0 -0
  12. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/broker/webhook.py +0 -0
  13. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/exception.py +0 -0
  14. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/message.py +0 -0
  15. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/middleware/__init__.py +0 -0
  16. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/middleware/base.py +0 -0
  17. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/middleware/config.py +0 -0
  18. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/onestep.py +0 -0
  19. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/retry.py +0 -0
  20. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/signal.py +0 -0
  21. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/state.py +0 -0
  22. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/store/rabbitmq.py +0 -0
  23. {onestep-0.1.77 → onestep-0.1.78}/src/onestep/worker.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: onestep
3
- Version: 0.1.77
3
+ Version: 0.1.78
4
4
  Summary:
5
5
  Author: miclon
6
6
  Author-email: jcnd@163.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "onestep"
3
- version = "0.1.77"
3
+ version = "0.1.78"
4
4
  description = ""
5
5
  authors = ["miclon <jcnd@163.com>"]
6
6
  readme = "README.md"
@@ -19,7 +19,7 @@ from .exception import (
19
19
 
20
20
  __all__ = [
21
21
  'step',
22
-
22
+
23
23
  # broker
24
24
  'BaseBroker',
25
25
  'BaseConsumer',
@@ -29,7 +29,7 @@ __all__ = [
29
29
  'RabbitMQBroker',
30
30
  'WebHookBroker',
31
31
  'CronBroker',
32
-
32
+
33
33
  # retry
34
34
  'BaseRetry',
35
35
  'NeverRetry',
@@ -40,7 +40,7 @@ __all__ = [
40
40
  # error callback
41
41
  'BaseErrorCallback',
42
42
  'NackErrorCallBack',
43
-
43
+
44
44
  # middleware
45
45
  'BaseMiddleware',
46
46
  'BaseConfigMiddleware',
@@ -48,7 +48,7 @@ __all__ = [
48
48
  'NacosConsumeConfigMiddleware',
49
49
  'RedisPublishConfigMiddleware',
50
50
  'RedisConsumeConfigMiddleware',
51
-
51
+
52
52
  # exception
53
53
  'StopMiddleware',
54
54
  'DropMessage',
@@ -0,0 +1,2 @@
1
+ from .rabbitmq import RabbitMQStore
2
+ from .rabbitmq import RabbitmqStore # deprecated
@@ -1 +0,0 @@
1
- from .rabbitmq import RabbitMQStore
File without changes
File without changes
File without changes
File without changes
File without changes