Paul Sanders

Results 144 comments of Paul Sanders

> Hi @ElamC, Thank you so much for taking care of this ❤️. I prefer the second option also can't we use [this library](https://pypi.org/project/camel-converter/) as it has been implemented [here?](https://github.com/sanders41/meilisearch-python-async/blob/main/meilisearch_python_async/models/task.py)...

How would the Typescript interface be used? The scraper is written in Python so I don't see where the Typescript interface would get used.

@bidoubiwa I'm curious to hear also. If it turns out it won't work but it is something you want dataclasses, attrs, and Pydantic are Python options to do the same...

@ThomasLaPiana i think your initial thought is correct. She needed `wheel` so pip could build a package that didn’t already have a version built for M1. What is weird is...

If fidesops isn't really needed as a dependency and this is only to check compatibility of packages we should be able to add a CI check for it instead. I...

In your docker run do you have `-v config.json:/docs-scraper/config.json`? if yes try `-v /path/to/config.json:/docs-scraper/config.json` instead. If that works you will probably get the error: `raise SelectorSyntaxError(cssselect.parser.SelectorSyntaxError: Expected ']', got `....

I haven’t had a chance to look closely at the parser error yet, but I think it does not allow pseudo elements. Here are the [docs](https://cssselect.readthedocs.io/en/latest/#cssselect.GenericTranslator.css_to_xpath) for what I think...

> when you say pseudo elements I presume you're referring to the wildcard character and not the standard syntax for an attribute selector? Correct, this what I am thinking. When...

With the value error what does your docker run look like. You will see the value error with `docker run -v config.json:docs-scraper/config.json` (I excluded all arguments but the -v), but...

I think it is your volume path. If you change the volume from `./scraper:/data.ms` to `./docs_scraper/config.json:/docs-scraper/config.json` does it make a difference?