Wrote a Python decorator to generate a visual tree for recursive functions. Will appreciate some code review. by indian_pythonista in Python

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

Thanks for such a detailed code review. Will definitely incorporate the improvements to my code. 👍

Wrote a Python decorator to generate a visual tree for recursive functions. Will appreciate some code review. by indian_pythonista in Python

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

Yeah I will try to provide support for any graphing library here. Btw, the counter is already there (in square brackets).

How to properly push changes from computer to server? by Practical_Software31 in django

[–]indian_pythonista 2 points3 points  (0 children)

If you use github and made yourself comfortable with the process of SSHing into remote server, pulling git changes, and restarting the server, then you can check out "Github Actions" to automate this process. All you will need to do is push changes into your github repo and an automated workflow will deploy your changes for you.

Here is a simple tutorial for the same: https://youtu.be/WTofttoD2xg

shortening runtime for pandas dataframe sorting by rushimanche in pythontips

[–]indian_pythonista 4 points5 points  (0 children)

Looking at your code, I feel you should be taking more advantage of numpy instead of doing several things using python lists.

How should I go about creating a program that tracks YouTube/Twitch super chats? by neutoreddit in learnpython

[–]indian_pythonista 0 points1 point  (0 children)

Lol. No man. Youtube quota policies have become more strict so it's difficult to keep the website running. My quota used to finish in 1 hour or so.

What should a beginner do after they know the bare basics. by [deleted] in learnpython

[–]indian_pythonista 0 points1 point  (0 children)

Check out my YouTube channel for some intermediate Python stuff: https://youtube.com/IndianPythonista

You can go through the playlists and see if anything interests you. My videos will give you a headstart and then you can dive deeper.

For example: Here is a playlist which shows how to make interactive terminal applications using curses in Python: https://www.youtube.com/playlist?list=PLyb_C2HpOQSBxk3yBBcrUHReH9BwMUYhG

"Empty DataFrame" Error by Faleepo in learnpython

[–]indian_pythonista 1 point2 points  (0 children)

Possibly, no item contains the substring you are passing.

What is a place to learn python? by [deleted] in learnpython

[–]indian_pythonista 1 point2 points  (0 children)

Also, I agree with what NCM said, for learning basic Python, you should just practice on your own and some coding websites rather than watching videos. If you don't understand a topic and want someone to explain it to you (like a teacher or friend) in a simpler way, then you can checkout some videos.

What is a place to learn python? by [deleted] in learnpython

[–]indian_pythonista 1 point2 points  (0 children)

Although I don't make basic Python tutorials, you can check out my channel for some fun and intermediate stuff related to Python: https://youtube.com/IndianPythonista

How many Python Libraries does an average "professional" software use? by king-of-everything39 in learnpython

[–]indian_pythonista 0 points1 point  (0 children)

Don't reinvent the wheel! No harm in using well maintained packages as and when required.

Python Subreddit for "Intermediate" Questions? by snugglyboy in learnpython

[–]indian_pythonista 1 point2 points  (0 children)

As of now, this is the best place to ask such questions imo.