Felipe Faria

Results 25 comments of Felipe Faria

@dmontagu Any chance you could take a look at this?

Generated README also needs to be updated. `async` methods are documented as: ```python from _client.async_api.my_tag import get_my_data_model ... get_my_data_model.asyncio(...) ``` Where it should (likely be, for the example): ```python from...

I've noticed that [actions/upload-artifact](https://github.com/actions/upload-artifact) can be used with `@vX` numbering at its end, like so: ```yaml - name: Uploads the PDF build documentation uses: actions/upload-artifact@v2 with: path: docs/build/latex/toolbox.pdf ``` By...

Right. New release, perhaps?

> any news on this? In my last few projects I've resorted to using my own branch. Unfortunately there seems to be preference of maintaining the older version (and therefore...

My solution was to move my `app.add_middleware(CORSMiddleware, allow_origins=["*"])` to the bottom of all previous `app.` configuration. I'm using `fastapi_versioning`, and it seems to break middleware when placed _after_ the `CORSMiddleware`...

You need to install the `feature/asyncio` branch. You got two choices. If you use [virtual environments](https://docs.python.org/3/tutorial/venv.html) create a new environment and install the branch directly: ```bash pip install https://github.com/sammchardy/python-binance/archive/feature/asyncio.zip ```...

You are probably forgetting to run the Tailwind server. https://django-tailwind.readthedocs.io/en/latest/usage.html

@libesz @atmoz Any plans on adding this? Currently trying to find a way to add users on runtime. Edit: Switched over to [`drakkan/sftpgo`](https://github.com/drakkan/sftpgo).

Roger that. No stress at all, got it all figured out with another project. :)