William Stam
William Stam
got to love sqlalchemy 10) df = polars.read_database(query, connection=session.connection()) print(df) ``` the type for connection shows as wrong (it did the same with just session. but was happy with engine)...
such a pity :(
right now if you have routes with multiple tags then it ends up "duplicating" the route into each tag accordion. slightly irritating with a largeish api. resorted to finding all...
> What is a nested Tag? Is that in the spec? https://github.com/swagger-api/swagger-ui/issues/5969 not in the spec. but it does fall part of the display side which is what rapidoc does.
came across a use case that i need to set the `outputtypehandler` this works ``` def output_type_handler(cursor, name, default_type, size, precision, scale): .... oracle_pool = await cx_Oracle_async.create_pool(...) async with oracle_pool.acquire()...
i need to wrap all my db objects so that they maintain the same interfaces ie `db.exec("select...")`. it seems to work just doing something like: ``` connection = await cx_Oracle_async.create_pool(...
i have no clue why pycharm changed any of the other lines :( only things i added in are ``` @property def description(self): return self._cursor.description ``` and ``` async def...
im currently looking into how to do this as well. after much searching i found this: https://questionary.readthedocs.io/en/stable/pages/advanced.html#themes-styling specificaly this part ``` import questionary from questionary import Choice, Style custom_style_fancy =...
well.. it works.. wow - and im totaly dumb for not having realized what im reading over and over again. ``` # setup the "token" styles custom_style_fancy = questionary.Style([ ("bullet",...
just to add. if you right click on the toolbar and select customize toolbar the icons appear correctly in the list  then simply clicking "ok" seems to reset the...