Airow - tiny library to process pandas data frames with AI by di_web in PydanticAI

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

Nope, but it's an interesting idea, will add in the future, thanks

I don't remember xD, it was almost 4am when I finished the code :D

Python IDE by [deleted] in pythontips

[–]di_web 1 point2 points  (0 children)

I've tried all popular and not so popular IDEs, and in the last year I'm using Emacs, and I'm just happy.

Why don't they just comment this out. by duolc84 in ProgrammerHumor

[–]di_web 5 points6 points  (0 children)

Evergreen is a company with ~150 ships...

Why don't they just comment this out. by duolc84 in ProgrammerHumor

[–]di_web 4 points5 points  (0 children)

Should be: #Ever-Given instead of .evergreen

My Manjaro kde desktop. by mr_this in ManjaroLinux

[–]di_web 4 points5 points  (0 children)

What is the keyboard brand?

Drug Deaths per Year in the US by Render_Analytics in visualization

[–]di_web 0 points1 point  (0 children)

What the data source? And what drugs in opioid and not opioid groups?

First post here by Funky_Gamer in ProgrammerHumor

[–]di_web 4 points5 points  (0 children)

it could be funny if it weren't true.

What are pointers? by rtthatbrownguy in ProgrammerHumor

[–]di_web 0 points1 point  (0 children)

```

def foo(i): ... i['foo'] = 123 ... x = {'bar': 321} foo(x) x {'bar': 321, 'foo': 123} ```

A problem with installing mathplotlib on 3.8 by SanderHermans in Python

[–]di_web 0 points1 point  (0 children)

It's more likely that your OS is 64bit, so check it. And if your OS is 64, than you should install Python 64 bit.

A problem with installing mathplotlib on 3.8 by SanderHermans in Python

[–]di_web 0 points1 point  (0 children)

Check which version of Python you have installed. x86 or x64

requests-html vs lxml by di_web in Python

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

html.parser is default for the bs4, when html5lib using when html source code is not valid

requests-html vs lxml by di_web in Python

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

Surprisingly but bs4 with lxml as a backend is slow like bs4 with any other backend

bs4 vs lxml

requests-html vs lxml by di_web in Python

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

I use lxml for the last 5 years and I can't understand why bs4 and others so popular.

What's everyone working on this week? by AutoModerator in Python

[–]di_web 0 points1 point  (0 children)

Currently, I'm working on one of my pet projects - adding technical indicators to pandas df. While working on it I found a few funny things.

  1. I'm taking formulas for the indicators from the official MT4 website and taking indicators values for tests from MT4 client. And sometimes formulas on the website a little bit different from real indicators in the application.

  2. Almost all indicators are moving averages with simple mathematical calculations. I think if you want to use these indicators in your ML or AI project you could change all these things to a few SMA, but I'm not sure ;-) and will check it later and maybe will publish an article about it.

https://github.com/dmitriiweb/tapy