rococo 1.0.3__tar.gz → 1.0.4__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.
Files changed (59) hide show
  1. {rococo-1.0.3 → rococo-1.0.4}/PKG-INFO +1 -1
  2. {rococo-1.0.3 → rococo-1.0.4}/rococo/messaging/sqs.py +2 -2
  3. {rococo-1.0.3 → rococo-1.0.4}/rococo.egg-info/PKG-INFO +1 -1
  4. {rococo-1.0.3 → rococo-1.0.4}/setup.py +1 -1
  5. {rococo-1.0.3 → rococo-1.0.4}/LICENSE +0 -0
  6. {rococo-1.0.3 → rococo-1.0.4}/README.md +0 -0
  7. {rococo-1.0.3 → rococo-1.0.4}/rococo/__init__.py +0 -0
  8. {rococo-1.0.3 → rococo-1.0.4}/rococo/config/__init__.py +0 -0
  9. {rococo-1.0.3 → rococo-1.0.4}/rococo/config/config.py +0 -0
  10. {rococo-1.0.3 → rococo-1.0.4}/rococo/data/__init__.py +0 -0
  11. {rococo-1.0.3 → rococo-1.0.4}/rococo/data/base.py +0 -0
  12. {rococo-1.0.3 → rococo-1.0.4}/rococo/data/mysql.py +0 -0
  13. {rococo-1.0.3 → rococo-1.0.4}/rococo/data/surrealdb.py +0 -0
  14. {rococo-1.0.3 → rococo-1.0.4}/rococo/emailing/__init__.py +0 -0
  15. {rococo-1.0.3 → rococo-1.0.4}/rococo/emailing/base.py +0 -0
  16. {rococo-1.0.3 → rococo-1.0.4}/rococo/emailing/config.py +0 -0
  17. {rococo-1.0.3 → rococo-1.0.4}/rococo/emailing/enums.py +0 -0
  18. {rococo-1.0.3 → rococo-1.0.4}/rococo/emailing/factory.py +0 -0
  19. {rococo-1.0.3 → rococo-1.0.4}/rococo/emailing/mailjet.py +0 -0
  20. {rococo-1.0.3 → rococo-1.0.4}/rococo/emailing/ses.py +0 -0
  21. {rococo-1.0.3 → rococo-1.0.4}/rococo/messaging/__init__.py +0 -0
  22. {rococo-1.0.3 → rococo-1.0.4}/rococo/messaging/base.py +0 -0
  23. {rococo-1.0.3 → rococo-1.0.4}/rococo/messaging/rabbitmq.py +0 -0
  24. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/__init__.py +0 -0
  25. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/email.py +0 -0
  26. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/login_method.py +0 -0
  27. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/organization.py +0 -0
  28. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/otp_method.py +0 -0
  29. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/person.py +0 -0
  30. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/person_organization_role.py +0 -0
  31. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/recovery_code.py +0 -0
  32. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/surrealdb/__init__.py +0 -0
  33. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/surrealdb/email.py +0 -0
  34. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/surrealdb/login_method.py +0 -0
  35. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/surrealdb/organization.py +0 -0
  36. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/surrealdb/otp_method.py +0 -0
  37. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/surrealdb/person.py +0 -0
  38. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/surrealdb/person_organization_role.py +0 -0
  39. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/surrealdb/surreal_versioned_model.py +0 -0
  40. {rococo-1.0.3 → rococo-1.0.4}/rococo/models/versioned_model.py +0 -0
  41. {rococo-1.0.3 → rococo-1.0.4}/rococo/repositories/__init__.py +0 -0
  42. {rococo-1.0.3 → rococo-1.0.4}/rococo/repositories/base_repository.py +0 -0
  43. {rococo-1.0.3 → rococo-1.0.4}/rococo/repositories/mysql/__init__.py +0 -0
  44. {rococo-1.0.3 → rococo-1.0.4}/rococo/repositories/mysql/mysql_repository.py +0 -0
  45. {rococo-1.0.3 → rococo-1.0.4}/rococo/repositories/mysql/organization_repository.py +0 -0
  46. {rococo-1.0.3 → rococo-1.0.4}/rococo/repositories/surrealdb/__init__.py +0 -0
  47. {rococo-1.0.3 → rococo-1.0.4}/rococo/repositories/surrealdb/organization_repository.py +0 -0
  48. {rococo-1.0.3 → rococo-1.0.4}/rococo/repositories/surrealdb/person_organization_role_repository.py +0 -0
  49. {rococo-1.0.3 → rococo-1.0.4}/rococo/repositories/surrealdb/surreal_db_repository.py +0 -0
  50. {rococo-1.0.3 → rococo-1.0.4}/rococo.egg-info/SOURCES.txt +0 -0
  51. {rococo-1.0.3 → rococo-1.0.4}/rococo.egg-info/dependency_links.txt +0 -0
  52. {rococo-1.0.3 → rococo-1.0.4}/rococo.egg-info/requires.txt +0 -0
  53. {rococo-1.0.3 → rococo-1.0.4}/rococo.egg-info/top_level.txt +0 -0
  54. {rococo-1.0.3 → rococo-1.0.4}/setup.cfg +0 -0
  55. {rococo-1.0.3 → rococo-1.0.4}/tests/__init__.py +0 -0
  56. {rococo-1.0.3 → rococo-1.0.4}/tests/base_repository_test.py +0 -0
  57. {rococo-1.0.3 → rococo-1.0.4}/tests/config_test.py +0 -0
  58. {rococo-1.0.3 → rococo-1.0.4}/tests/model_test.py +0 -0
  59. {rococo-1.0.3 → rococo-1.0.4}/tests/surreal_db_repository_test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rococo
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: A Python library to help build things the way we want them built
5
5
  Home-page: https://github.com/EcorRouge/rococo
6
6
  Author: Jay Grieves
@@ -48,7 +48,7 @@ class SqsConnection(MessageAdapter):
48
48
  if queue_name in self._queue_map:
49
49
  queue = self._queue_map[queue_name]
50
50
  else:
51
- queue = self._sqs.get_queue_by_name(QueueName=queue_name)
51
+ queue = self._sqs.create_queue(QueueName=queue_name)
52
52
 
53
53
  queue.send_message(QueueUrl=queue_name, MessageBody=json.dumps(message))
54
54
 
@@ -72,7 +72,7 @@ class SqsConnection(MessageAdapter):
72
72
  )
73
73
 
74
74
  logger.info("Connecting to SQS queue: %s...", queue_name)
75
- queue = self._sqs.get_queue_by_name(QueueName=queue_name)
75
+ queue = self._sqs.create_queue(QueueName=queue_name)
76
76
 
77
77
  while True:
78
78
  logger.info("Fetching messages from SQS queue: %s...", queue_name)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rococo
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: A Python library to help build things the way we want them built
5
5
  Home-page: https://github.com/EcorRouge/rococo
6
6
  Author: Jay Grieves
@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
2
2
 
3
3
  setup(
4
4
  name='rococo',
5
- version='1.0.3',
5
+ version='1.0.4',
6
6
  packages=find_packages(),
7
7
  url='https://github.com/EcorRouge/rococo',
8
8
  license='MIT',
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