mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 13:11:15 -07:00
* Bump cherrypy from 18.8.0 to 18.9.0 Bumps [cherrypy](https://github.com/cherrypy/cherrypy) from 18.8.0 to 18.9.0. - [Changelog](https://github.com/cherrypy/cherrypy/blob/main/CHANGES.rst) - [Commits](https://github.com/cherrypy/cherrypy/compare/v18.8.0...v18.9.0) --- updated-dependencies: - dependency-name: cherrypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update cherrypy==18.9.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
import sys
|
|
|
|
import adodbapi
|
|
|
|
try:
|
|
import adodbapi.is64bit as is64bit
|
|
|
|
is64 = is64bit.Python()
|
|
except ImportError:
|
|
is64 = False
|
|
|
|
if is64:
|
|
driver = "Microsoft.ACE.OLEDB.12.0"
|
|
else:
|
|
driver = "Microsoft.Jet.OLEDB.4.0"
|
|
extended = 'Extended Properties="Excel 8.0;HDR=Yes;IMEX=1;"'
|
|
|
|
try: # first command line argument will be xls file name -- default to the one written by xls_write.py
|
|
filename = sys.argv[1]
|
|
except IndexError:
|
|
filename = "xx.xls"
|
|
|
|
constr = "Provider=%s;Data Source=%s;%s" % (driver, filename, extended)
|
|
|
|
conn = adodbapi.connect(constr)
|
|
|
|
try: # second command line argument will be worksheet name -- default to first worksheet
|
|
sheet = sys.argv[2]
|
|
except IndexError:
|
|
# use ADO feature to get the name of the first worksheet
|
|
sheet = conn.get_table_names()[0]
|
|
|
|
print("Shreadsheet=%s Worksheet=%s" % (filename, sheet))
|
|
print("------------------------------------------------------------")
|
|
crsr = conn.cursor()
|
|
sql = "SELECT * from [%s]" % sheet
|
|
crsr.execute(sql)
|
|
for row in crsr.fetchmany(10):
|
|
print(repr(row))
|
|
crsr.close()
|
|
conn.close()
|