Amy Troschinetz

Results 84 comments of Amy Troschinetz

Thank you for the detailed issue description and minimal example code. This should be invaluable in investigating a fix for this issue!

_From @mloskot on February 14, 2017 21:40_ Although there seem to be no ODBC idiomatic to avoid `SQLGetData` call, [Get indicator value for unbound columns without calling SQLGetData](http://stackoverflow.com/questions/23063731/get-indicator-value-for-unbound-columns-without-calling-sqlgetdata) gives an...

1. I like the direction of the second proposal! Certainly adding too much memory into state has to be a concern but I think this is a minimal amount to...

Given that Python 3.6 is no longer supported as of asgiref version 3.5.0, is now a good time to revisit this discussion? Sorry, I've just been following along here and...

Sorry, I deleted the fork and am now just a collaborator on the source now. We've also moved away from `requirements.txt` and use `poetry` as well. Not sure why `pytest-cov`...

I am also having this issue. ``` python from active_alchemy import SQLAlchemy from flask import Flask app = Flask(__name__) db = SQLAlchemy('mysql+mysqldb://admin:[email protected]:3306/my_database', app=app) event_participants = db.Table( 'event_participants', db.metadata, db.Column('event_id', db.Integer,...

Aw, that's too bad. I was hoping that https://fusebit.io/blog/discord-rate-limiting/ knew what it was talking about, but apparently it doesn't. Thanks for the heads up. I might as well ask: Do...

Thank you so much, y'all have been super helpful ❤️ 🤔 This seems to work ok: ```python def patch_discord_proxy(PROXY_URL: str): """Patch discord.http to use our Discord API proxy.""" from discord...

Hrm, something didn't work. I am currently getting the dreaded `HTTPException: 429 Too Many Requests (error code: 0): You are being blocked from accessing our API temporarily due to exceeding...

Note that the workaround in this case would be to use `user.game_id = None` instead, but I feel like that's not as nice as being able to use the relationship...