The Wayback Machine - https://web.archive.org/web/20200618111214/http://dapythonista.com/
close
March 3, 2020

API? It’s not that scary!

There are way too many services out there that provide a free API which
waits to be adjusted into your favorite language.
Also, API services could be generated from any visible data such as Facebook (which I’ve covered here), Twitter or any public databases.
In this article, we’ll be focusing on Paypal API service.

TwitterLinkedIn
October 24, 2019

Sending Emails in Python – Tutorial with Code Examples

What do you need to send an email with Python? Some basic programming and web knowledge along with the elementary Python skills. We assume you’ve already had a web app built with this language and now you need to extend its functionality with notifications or other emails sending. This tutorial will guide you through the most essential steps of sending emails via an SMTP server.

TwitterLinkedIn
January 14, 2019

How I found my apartment: Python-Style

Written by Ori Roza

So, I was looking for an apartment!
There are too many platforms out there for searching apartments like Zillow, Realtor.com and even groups on Facebook. All this endless data made me so confused so I stopped everything, took a big breath and asked myself could I filter through all the data I had and receive only the relevant one?

The answer? Python. or even more accurate: Selenium.

TwitterLinkedIn
July 25, 2018

How Nike Run Club led me to write my first AI project

Written by Ori Roza

For a long time I have wanted to start learning how to use AI as part of my code flow. Where should I start?

Well, I don’t have B.Sc and definitely don’t have the math fundamentals to understand all the equations and calculations behind it. But then, I have came across this amazing article of Jason Brownlee and I’ve started believing again!

After reading many times this article and understanding it I can finally tell that I’m fluency with KNN algorithm.

TwitterLinkedIn
June 3, 2018

How to use PyCharm to debug your Python code

Written by Ori Roza

Debugging code in any language might be frustrating, but it is especially so in Python where we cannot recognize a bug immediately.

In addition, Python provides us with the PDB library as a tool for debugging, which can also be difficult to handle.

Luckily, we have the PyCharm IDE. It uses PyDev and gives us a new experience of debugging!

In this article, I will go over of the main and most useful debugging features PyCharm has to offer and teach you how to use them efficiently.

TwitterLinkedIn