kristang

Results 11 comments of kristang

Is this an issue that can arise when writing to SQL? I am experiencing and issue with writing datetimeoffsets from a pandas dataframe to an MSSQL table, and I need...

Forgive my ignorance, but is this an issue internally to pyodbc, or the specific ODBC drivers I am using? For example, with pyodbc 4.0.22, I can write datetimeoffsets to SQL...

Yes. This is done through `pandas` with the supplied function: https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.to_sql.html

I think a number of those aliases are very useful and increases the readability of code by magnitudes. `extract`, `use_series` and `inset` are especially expressive in my opinion, and the...

Hello Matt, In my case I can't really replicate the issue. It was in connection to a internet-wide breakdown at Fastly, and I just stumbled across this sub-process issue while...

This was not really a request for specific changes. This was more of a "Hey I noticed this separate thing happened because of another issue" My very narrow understanding would...

Try running `poetry update -vvv` and post the output (remember to redact anything you don't want public - like your feed address) Does `pip install -i https://[REDACTED]/pypi/simple/my-private-package` fail with a...

Only thing I find a little odd is the url returned: `Unauthorized for url: https://[REDACTED]/pypi/download/hello-world/0.1/hello_world-0.1.0-py3-none-any.whl#sha256=[REDACTED]` I don't recall seeing that "/download/" part when I install from a private source. What...

Have you tried other authentication methods? I believe Azure Artifacts supports some kind of API token - last time I checked they had a guide somewhere included on the site...

According to the documentation from Microsoft you can auth with `artifacts-keyring`. You can then install with: ```python pip install --index-url https://pkgs.dev.azure.com///_packaging//pypi/simple ``` https://learn.microsoft.com/en-us/azure/devops/artifacts/quickstarts/python-packages?view=azure-devops#use-artifacts-keyring-to-set-up-authentication This approach worked for me when I...