HackXIt

Results 39 comments of HackXIt

Just for anyone else stumbling upon this, the import or module errors are actually easily dealt with via the usage of [`mock`](https://pypi.org/project/mock/) ```python import sys if sys.implementation.name == "micropython": #...

Unfortunately this fix is not working for me, I still don't see the newer clients, is there something else I've missed? I checked out the PR, rebuilt the package, installed...

Ok, I managed to fix it. `piserver.cpp` was missing the following for `dnsmasq` to hand out an IP Address: ``` fs

Here you go: https://github.com/HackXIt/minimal-example-pdoc-embedded-image Docs: https://hackxit.github.io/minimal-example-pdoc-embedded-image/src.html Console log from browser ``` GET https://hackxit.github.io/minimal-example-pdoc-embedded-image/assets/software-bug.png [HTTP/2 404 21ms] GET https://hackxit.github.io/minimal-example-pdoc-embedded-image/assets/software-bug.png Status 404 VersionHTTP/2 Übertragen5,97 kB (9,38 kB Größe) Referrer Policystrict-origin-when-cross-origin Anfrage-PrioritätLow DNS-AuflösungSystem...

According to the browser log, the file could not be found (404), but my assumption would have been that `pdoc` handles this embedding appropriately, given that it is run from...

Aah. I see the issue now. After moving the `assets` folder under docs and referencing it via `./assets/...` it finds the images on the main page. So it is a...

So basically the issue is not a bug. It's simply related to the path of the image. It is however a bit tricky for me, since I'm using the README...

Good to know that there is a markdown inclusion, I haven't seen that. In regards to the inclusions in the docstring of functions in source files, is there a way...

Provided files should also modify the behavior of: ```python def log_curl_debug(self, method, url, data=None, headers=None, level=logging.DEBUG): """ :param method: :param url: :param data: :param headers: :param level: :return: """ headers...