cql2 0.3.3a1__cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl → 0.3.4__cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.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
 
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=C-4_A2cXV_Zum1nx-6DQYtgthi2M0DWZqttMMe4v0ak,1732
2
+ cql2-0.3.4.dist-info/WHEEL,sha256=o3qHnKTDYOxY-_T-W3qhtj7hyhgDxUbh-OlzdgpCgos,127
3
+ cql2-0.3.4.dist-info/entry_points.txt,sha256=71myRgqcjlXJ5L8YfBsyaQS-Ef8mXeSlOCDwf1rrURo,33
4
+ cql2-0.3.4.dist-info/licenses/LICENSE,sha256=t0LRkl7HEgDhGmOHdjpbyyLoAOmMcNfXAunBk1N18S4,1064
5
+ cql2/__init__.py,sha256=lQIzMwXTmBW1tLuKrIKf3_nxwWMiik5UOd5CBYV22uQ,99
6
+ cql2/__init__.pyi,sha256=QjebHHFDPv1Zi3jKBA2YD3Ww024yusA2i2m3HuaUE0s,4110
7
+ cql2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ cql2/cql2.cpython-313-s390x-linux-gnu.so,sha256=d07371sV7SAwrG8tqppCR3LKoiy-rSkb_RE--ic_8l8,8850144
9
+ cql2-0.3.4.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- cql2-0.3.3a1.dist-info/METADATA,sha256=mfmnSo9q5b2RPI-JBopRM7jVN_AzxUvqSQ153MtQZJc,1734
2
- cql2-0.3.3a1.dist-info/WHEEL,sha256=o3qHnKTDYOxY-_T-W3qhtj7hyhgDxUbh-OlzdgpCgos,127
3
- cql2-0.3.3a1.dist-info/entry_points.txt,sha256=71myRgqcjlXJ5L8YfBsyaQS-Ef8mXeSlOCDwf1rrURo,33
4
- cql2-0.3.3a1.dist-info/licenses/LICENSE,sha256=t0LRkl7HEgDhGmOHdjpbyyLoAOmMcNfXAunBk1N18S4,1064
5
- cql2/__init__.py,sha256=lQIzMwXTmBW1tLuKrIKf3_nxwWMiik5UOd5CBYV22uQ,99
6
- cql2/__init__.pyi,sha256=yjYetIiD6n7uJCoAQt09izRJ7kuLOy76mqTY68iWA9w,3636
7
- cql2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- cql2/cql2.cpython-313-s390x-linux-gnu.so,sha256=i4eIKM-5As_LWDY9ywWd67BhmXGQ12tq5jFYYOvXSiU,8925320
9
- cql2-0.3.3a1.dist-info/RECORD,,
File without changes