Quick Way To See If Python and Pip Are Synced
Its important to know if your pip and python are using the same paths. Otherwise you might install a package with pip and it will not be accessible via python. Here isRead More…
Its important to know if your pip and python are using the same paths. Otherwise you might install a package with pip and it will not be accessible via python. Here isRead More…
NOTE: This article presents 3 scripts. Scroll to the section “Full Path Json with Python (Better – version 2)” at the bottom for the best one. See GIST with downloadable script. SometimesRead More…
Wordle is an interesting 5 letter word puzzle game. To learn how to play it just watch the first video link below. To cheat thru it with regex, first, get the allowed_wordsRead More…
Generator functions allow for yielding which is an important skill to have when you are becoming advanced with python. It basically allows creating lists but not caring about the whole list, onlyRead More…
This is a simple python script which uses the WebEx API. WebEx is a chat system created by Cisco. However its alot more then just that, its full on collaboration tool thatRead More…
Github: https://github.com/bhbmaster/rhood <- download location. install & run instructions. Using the robin-stocks python module, I created my own robinhood portfolio analyzer called rhood. It parses all of your Robinhood account information providedRead More…
Sometimes you start coding something and you don’t yet realize if it will be a project worth sharing on github. We don’t always think about this as we begin coding. This isRead More…
I came across this medium article about python and guitar strings and plotting scales. It has an interesting Jupyter notebook to work with, allowing to plot scales for all of the chords.Read More…
# citing: https://www.reddit.com/r/Python/comments/jfx7wy/how_to_quickly_remove_duplicates_from_a_list/ # Let’s make some duplicates (one million numbers between 1 and 100) from random import randrange DUPLICATES = [ randrange(100) for _ in range(1_000_000) ] ### METHOD 1 ###Read More…
A Coronavirus COVID-19 dashboard for the world and each country created by me. There are y-axis-logarithmic plots and y-axis-normal plots. Additionally, there are plots for every state/province/territory for the US and CanadaRead More…