JC

Results 91 comments of JC

It is astonishing to me that someone hasn't completed a full update to get Python 3 version of pattern working. I guess I will fork pattern3 and try to finish...

never mind. too many recursion errors, encoding errors, etc. someone who knows the actual codebase should really update it.

I would add this to the readme as an example for how to get it working in CPU mode to avoid this error.

@y-arjun-y thank you for this, here is the top of my css I have in the extended section. ``` @import 'https://fonts.googleapis.com/css?family=Rubik+Mono+One'; @import 'https://fonts.googleapis.com/css?family=Muli&display=swap'; ``` I tried with `url('https://fonts.googleapis.com/css?family=Rubik+Mono+One');` etc

@y-arjun-y thanks for confirming I am not crazy haha. I can't overwrite because I want to use some of the base styling and not recreate the wheel. If I have...

@HermanMartinus that makes a lot of sense! Or maybe add a prepend css in addition to extend to keep it generic and not just for fonts for things that you...

You can get away with a pseudo css class, example: ``` body:has(main):has(content):has(ul.blog-posts) { background-color: black; } ``` but that seems really hacky and limited.

I updated my [findpi](https://github.com/jamesacampbell/findpi) package to use this and I didn't want to have it hang, so I implemented this: ``` def ThreadId(ipaddress, macaddress): macaddress = get_mac_address(ip=ipaddress) if macaddress: if...

Can this issue be closed now? Python 3 usage is widespread and there is no reason to maintain a version for 2.x. IMO.

@niwics That depends on what assumptions the package should have re: IPTC data present in images it is scanning. I feel like if force=True, it should just change it to...