Hradec

Results 37 comments of Hradec

> You get bearer token, use it to edit card: https://wekan.github.io/api/v2.71/?python#edit_card So, I did a test using ``` r = requests.put('/api/boards/{board}/lists/{list}/cards/{card}', params={ "color" : "magenta" }, headers = headers) ```...

> To use API with Docker, you need WITH_API=true https://github.com/wekan/wekan/blob/devel/docker-compose.yml#L223 Yep... I'm running with that... but `params=` still doesn't work. Any idea why or how can I debug it?

I was able to fix this exact problem by following https://github.com/hukenovs/easyportrait/issues/22

## Thank you Thank you Thank you!!! A couple more tips for others: --- ### Tips3: if you see this error: ``` File "./pipelines/demo/image_demo.py", line 40, in main get_palette(args.palette), File...

I'm trying to run `python -m pip install -r pelines/requirements.txt`, but pip is not happy with the specified versions. It seems there's a problem with numpy version with some of...

try to add the `pipelines` folder to the top of your PYTHONPATH: ``` export PYTHONPATH=./pipelines/:$PYTHONPATH ``` and run again. This depot has a copy of the mmseg module in the...

actually, I was able to run it now following the tips from https://github.com/hukenovs/easyportrait/issues/22!!