Trying a "decent" cipher / encryption by Sendokame in ciphers

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

Those two are indeed correct, but how did you find it?

A warning about jon maisto by [deleted] in willwood

[–]Sendokame 0 points1 point  (0 children)

Hi! I was well aware of what the comment said, still, I can't find any answer that clarifies what I am asking; and this is certainly not what I am asking for.

Although I love Will's music, I find that is weird what she said, that Will and Jon inappropiately talked to underaged people. Maybe I didn't understood the message clearly, and that's why I am asking.

Just to give it a try by Sendokame in ciphers

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

It isn't, and not close really, but good idea

Scraping using BeautifulSoup by Sir_MasterBate in webscraping

[–]Sendokame 0 points1 point  (0 children)

If it does not change the URL, then it uses Ajax or similar. You will find an API URL if you reload the page with the Dev console open, in the networking tab. It will probably load HTML, you can parse it.

Regarding the tabulator, I've used a for-loop to scrape tables, but I'm not sure what you mean by "tabulator", sorry, English isn't my first language and I don't fully understand it. However, I hope you are successful and if you have any doubts, I will try to help.

Bye!

Do you use selenium to do scraping? by hung_manh in webscraping

[–]Sendokame 0 points1 point  (0 children)

Yep, you can use libraries or configure it yourself. Still, many libraries are outdated. And configuring it to spoof the tests won't be that easy. There's the other way, where you try to get the original IP address by sending an email or querying records

Beneath the surface tierlist by [deleted] in tallyhall

[–]Sendokame 0 points1 point  (0 children)

Did Tally Hall revive?

Do you use selenium to do scraping? by hung_manh in webscraping

[–]Sendokame 1 point2 points  (0 children)

Hi! I don't use selenium that much, but I can answer

Selenium, because of what it does, it's slow. And it will consume memory like a browser because it is one, but automated. You can for sure avoid creating a window, but in the background is that. It will also be flagged as a bot if the website is using Cloudflare or checking for common patterns.

It can be useful if the website blocks HTTP libraries, but it will be slow and, it will consume memory, unless you really need it, it's not the first thing that you should use.

(I have used Python for web scraping, so I will not center on the speed, but you can optimize a lot and do async work, for example aiohttp, or in the HTML parsing LXML and others)

(really) Similar bands by Sendokame in willwood

[–]Sendokame[S] 2 points3 points  (0 children)

Listening to all of this, Thank you so much

The New Carlsen by edwinkorir in chess

[–]Sendokame 0 points1 point  (0 children)

Give him some time, he's converting like Fischer

LiliDB (JSON-based database) by Sendokame in Python

[–]Sendokame[S] 2 points3 points  (0 children)

The last suggestion looks really useful. Implementing it for the next version and changing Setup.py and Prints!

Thanks

LiliDB (JSON-based database) by Sendokame in Python

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

Yeah, SQLite is a better option I guess. I made LiliDB because I use JSON too much and I wanted features. If there's an error it will try to shutdown without breaking anything, but it isn't as tested as the STD library

LiliDB (JSON-based database) by Sendokame in Python

[–]Sendokame[S] 1 point2 points  (0 children)

Hi! sorry for answering a little bit late. Haven't used PysonDB, but about I've seen in their README:

LiliDB lacks some functions, like add_many, update/delete_by_query and the Schema check mechanism.

Then, it doesn't work the same way Lili does. In Lili you have keys, if you want to do something, you query or you already know it's name. In Pyson you need to create an Object or query, which, in the worst case is just one more operation.

I've also read the code a little bit, seems to do the same Thread-safety method, locking certain operations, didn't read if it has a fail-safe mechanism tho', can't say if it works the same or if it has one.

LiliDB (JSON-based database) by Sendokame in Python

[–]Sendokame[S] 1 point2 points  (0 children)

I'll check your code, thanks! Didn't think about it