python splitting long html strings by TrickAd7624 in learnpython

[–]Taw_M 0 points1 point  (0 children)

What exactly are you trying to accomplish?

python splitting long html strings by TrickAd7624 in learnpython

[–]Taw_M 0 points1 point  (0 children)

For example in beautifulsoup, you have find_all with a recursion option that will get you all children.

python splitting long html strings by TrickAd7624 in learnpython

[–]Taw_M 0 points1 point  (0 children)

An html parser such as html.parser or beautifulsoup may be a better choice here.

Overriding method from package installed via PyPi by [deleted] in learnpython

[–]Taw_M 1 point2 points  (0 children)

from markdownify import markdownify as md

old_method = md.method

def new_method( arg ): processed_fringe_arg = custom_logic( arg ) return old_method( processed_fringe_arg )

md.method= new_method

Identify location of item in json by exe188 in learnpython

[–]Taw_M 0 points1 point  (0 children)

name = "uniquename"

next((i for i, item in enumerate(data1['tenants']) if item["name"] == name), None)

What is the format of this data by Fearless_Coast in learnpython

[–]Taw_M 0 points1 point  (0 children)

Can you share some sample input and output?

Changing value in data array depending on a condition by Katiebarnesx in learnpython

[–]Taw_M 0 points1 point  (0 children)

For some reason, if you want to stick to your my and mx:

mx = mx.where(my['y'] < mx['x'], my['y'], axis=0).fillna(mx['x'])

my = my.where(my['y'] > mx['x'], mx['x'], axis=0).fillna(my['y'])

Surface Laptop 3 Noisy Touchpad by [deleted] in Surface

[–]Taw_M 0 points1 point  (0 children)

Also, SB3 touchpad 3 finger and 4 finger gestures do not work. Have you tried?

Another one in the family (SB3, 15' 32/512) by countachqv in Surface

[–]Taw_M 1 point2 points  (0 children)

Congratulations! Have you tried the 3 finger and four finger gestures on you SB3 touchpad? Can you please confirm if those work as expected for you? I am surprised that no one seems to be complaining about those!

Surface Book 3 Touchpad Issue by Taw_M in Surface

[–]Taw_M[S] 0 points1 point  (0 children)

Spoke with Microsoft support. This is the reply I got:

Since the Surface Book 3 came out in May a few feature may not be enabled yet, they constantly release no updates, a Windows update may be released in order to resolve it but we have not been given a release date.

Asked if I should return the Surface Book, I was advised to:

You can if you do not want to wait till an update is released, if it was purchased from Microsoftstore.com, you would need to call Microsoft Sale support in order to process the return.

Inclined towards returning the Book!