scylla-cqlsh 6.0.30__cp314-cp314-musllinux_1_2_aarch64.whl

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.
cqlsh/__init__.py ADDED
@@ -0,0 +1 @@
1
+
cqlsh/__main__.py ADDED
@@ -0,0 +1,11 @@
1
+ import os
2
+ import sys
3
+ from cqlsh.cqlsh import main as cqlsh_main
4
+ from cqlsh.cqlsh import read_options
5
+
6
+ def main():
7
+ cqlsh_main(*read_options(sys.argv[1:], os.environ))
8
+
9
+ if __name__ == '__main__':
10
+ sys.exit(main())
11
+