redis_set.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. import redis
  2. data="""
  3. {
  4. "type": "carousel",
  5. "contents": [
  6. {
  7. "type": "bubble",
  8. "size": "nano",
  9. "header": {
  10. "type": "box",
  11. "layout": "vertical",
  12. "contents": [
  13. {
  14. "type": "text",
  15. "text": "中文測是",
  16. "color": "#ffffff",
  17. "align": "start",
  18. "size": "md",
  19. "gravity": "center"
  20. },
  21. {
  22. "type": "text",
  23. "text": "70%",
  24. "color": "#ffffff",
  25. "align": "start",
  26. "size": "xs",
  27. "gravity": "center",
  28. "margin": "lg"
  29. }
  30. ],
  31. "backgroundColor": "#27ACB2",
  32. "paddingTop": "19px",
  33. "paddingAll": "12px",
  34. "paddingBottom": "16px"
  35. },
  36. "body": {
  37. "type": "box",
  38. "layout": "vertical",
  39. "contents": [
  40. {
  41. "type": "box",
  42. "layout": "horizontal",
  43. "contents": [
  44. {
  45. "type": "text",
  46. "text": "這是一個測試efore class",
  47. "color": "#8C8C8C",
  48. "size": "sm",
  49. "wrap": true
  50. }
  51. ],
  52. "flex": 1
  53. }
  54. ],
  55. "spacing": "md",
  56. "paddingAll": "12px"
  57. },
  58. "styles": {
  59. "footer": {
  60. "separator": false
  61. }
  62. }
  63. },
  64. {
  65. "type": "bubble",
  66. "size": "nano",
  67. "header": {
  68. "type": "box",
  69. "layout": "vertical",
  70. "contents": [
  71. {
  72. "type": "text",
  73. "text": "Pending",
  74. "color": "#ffffff",
  75. "align": "start",
  76. "size": "md",
  77. "gravity": "center"
  78. },
  79. {
  80. "type": "text",
  81. "text": "30%",
  82. "color": "#ffffff",
  83. "align": "start",
  84. "size": "xs",
  85. "gravity": "center",
  86. "margin": "lg"
  87. }
  88. ],
  89. "backgroundColor": "#FF6B6E",
  90. "paddingTop": "19px",
  91. "paddingAll": "12px",
  92. "paddingBottom": "16px"
  93. },
  94. "body": {
  95. "type": "box",
  96. "layout": "vertical",
  97. "contents": [
  98. {
  99. "type": "box",
  100. "layout": "horizontal",
  101. "contents": [
  102. {
  103. "type": "text",
  104. "text": "Wash my car",
  105. "color": "#8C8C8C",
  106. "size": "sm",
  107. "wrap": true
  108. }
  109. ],
  110. "flex": 1
  111. }
  112. ],
  113. "spacing": "md",
  114. "paddingAll": "12px"
  115. },
  116. "styles": {
  117. "footer": {
  118. "separator": false
  119. }
  120. }
  121. },
  122. {
  123. "type": "bubble",
  124. "size": "nano",
  125. "header": {
  126. "type": "box",
  127. "layout": "vertical",
  128. "contents": [
  129. {
  130. "type": "text",
  131. "text": "In Progress",
  132. "color": "#ffffff",
  133. "align": "start",
  134. "size": "md",
  135. "gravity": "center"
  136. },
  137. {
  138. "type": "text",
  139. "text": "100%",
  140. "color": "#ffffff",
  141. "align": "start",
  142. "size": "xs",
  143. "gravity": "center",
  144. "margin": "lg"
  145. }
  146. ],
  147. "backgroundColor": "#A17DF5",
  148. "paddingTop": "19px",
  149. "paddingAll": "12px",
  150. "paddingBottom": "16px"
  151. },
  152. "body": {
  153. "type": "box",
  154. "layout": "vertical",
  155. "contents": [
  156. {
  157. "type": "box",
  158. "layout": "horizontal",
  159. "contents": [
  160. {
  161. "type": "text",
  162. "text": "Buy milk and lettuce before class",
  163. "color": "#8C8C8C",
  164. "size": "sm",
  165. "wrap": true
  166. }
  167. ],
  168. "flex": 1
  169. }
  170. ],
  171. "spacing": "md",
  172. "paddingAll": "12px"
  173. },
  174. "styles": {
  175. "footer": {
  176. "separator": false
  177. }
  178. }
  179. }
  180. ]
  181. }
  182. """
  183. r = redis.Redis(host='db.ptt.cx', port=6379, db=2,password='choozmo9')
  184. r.set('btn_data',data)