cql2 0.3.3a1__cp312-cp312-win32.whl → 0.3.4__cp312-cp312-win32.whl

Sign up to get free protection for your applications and to get access to all the features.
cql2/__init__.pyi CHANGED
@@ -118,6 +118,22 @@ class Expr:
118
118
  ['LC82030282019133LGN00']
119
119
  """
120
120
 
121
+ def __add__(self, other: "Expr") -> "Expr":
122
+ """Combines two cql2 expressions using the AND operator.
123
+
124
+ Args:
125
+ other (Expr): The other expression
126
+
127
+ Returns:
128
+ Expr: The combined expression
129
+
130
+ Examples:
131
+ >>> from cql2 import Expr
132
+ >>> expr1 = Expr("landsat:scene_id = 'LC82030282019133LGN00'")
133
+ >>> expr2 = Expr("landsat:cloud_cover = 10")
134
+ >>> expr = expr1 + expr2
135
+ """
136
+
121
137
  class SqlQuery:
122
138
  """A SQL query"""
123
139
 
cql2/cql2.cp312-win32.pyd CHANGED
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cql2
3
- Version: 0.3.3a1
3
+ Version: 0.3.4
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -0,0 +1,9 @@
1
+ cql2-0.3.4.dist-info/METADATA,sha256=l-x__gF9i3K__4c0n0xdzQ3wRgfI3HL8VSoP8PiezXE,1774
2
+ cql2-0.3.4.dist-info/WHEEL,sha256=mKSvIR2c1kCpUi-F32oZPRi3BB-MEi-lwsYYpA42yCM,92
3
+ cql2-0.3.4.dist-info/entry_points.txt,sha256=71myRgqcjlXJ5L8YfBsyaQS-Ef8mXeSlOCDwf1rrURo,33
4
+ cql2-0.3.4.dist-info/licenses/LICENSE,sha256=GBDoMt4G_b08P_Dn5o-j2fL9cj5uoWTbLO90rtO2edE,1071
5
+ cql2/__init__.py,sha256=lQIzMwXTmBW1tLuKrIKf3_nxwWMiik5UOd5CBYV22uQ,99
6
+ cql2/__init__.pyi,sha256=xiMQxCZwV4DxR444cnWcVlYjgygamQtpcjmZnOKVd50,4260
7
+ cql2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ cql2/cql2.cp312-win32.pyd,sha256=GVTgBjT9iWM2ge_A1BG0gpFMiGh6SPcs-z31k2x5ZKg,5020160
9
+ cql2-0.3.4.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- cql2-0.3.3a1.dist-info/METADATA,sha256=1TzIb54fF03Bu_44Kzh0TpWkTMQHs59Sog3PodErjrM,1776
2
- cql2-0.3.3a1.dist-info/WHEEL,sha256=mKSvIR2c1kCpUi-F32oZPRi3BB-MEi-lwsYYpA42yCM,92
3
- cql2-0.3.3a1.dist-info/entry_points.txt,sha256=71myRgqcjlXJ5L8YfBsyaQS-Ef8mXeSlOCDwf1rrURo,33
4
- cql2-0.3.3a1.dist-info/licenses/LICENSE,sha256=GBDoMt4G_b08P_Dn5o-j2fL9cj5uoWTbLO90rtO2edE,1071
5
- cql2/__init__.py,sha256=lQIzMwXTmBW1tLuKrIKf3_nxwWMiik5UOd5CBYV22uQ,99
6
- cql2/__init__.pyi,sha256=HXRUqsxIG1zGfasDxucaHmumh6gmc4NzesroTZwt7YA,3770
7
- cql2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- cql2/cql2.cp312-win32.pyd,sha256=-OQ-0PLpeHot7qMxx9pxSDJlsto1I5ppX01R-qSh3pY,4995072
9
- cql2-0.3.3a1.dist-info/RECORD,,
File without changes