Introduction I recently re-engaged with one of my open source projects and it was a rewarding experience. 🎉 It was a Pybites project I had written the core for years ago, but thanks to some amazing Pythonistas in our community it became a way more mature tool so I had to get acquainted again. I… Continue reading Your First Python Open Source Contribution: A Step-By-Step Guide
Articles on resources
PyBites Twitter Digest – Issue 04, 2019
By PyBites Team on 7 April 2019
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
How to Learn Python
By PyBites Team on 16 September 2017
Python is a mature language, easy to learn and here to stay. But where to start? We see a lot of new Pythonistas posting questions like: How to learn Python?, Where do I start?, What approach to take?. We were there once too. Now with 9 months of PyBites and 200 articles under our belt, we share how we learned Python.
First Steps Learning Django: PyPlanet Article Sharer App
By Bob Belderbos on 17 July 2017
In this post I share my first steps exploring Django. I created PyPlanet Article Sharer Django App to make it easier for us to share new Planet Python feed articles. It loads in new articles and generates tweet links. It lets us mark each entry as Shared or Skipped. I am sure this will facilitate our Twitter activity and News Digests. This is our first project of our 100 days of Django and our very first Django app overall!
Twitter digest 2017 week 28
By PyBites Team on 16 July 2017
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
Twitter digest 2017 week 20
By PyBites Team on 21 May 2017
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
How to Parse Common Data Formats in Python
By PyBites Team on 16 May 2017
In this post we demonstrate ways in which you can parse common data formats used in Python.
Learn Python by Coding for Yourself
By Julian Sequeira on 27 April 2017
In this post I discuss (with examples) why it’s important to learn Python by actually coding. It’s not enough to just read!
From beginner to pro: Python books, videos and resources
By PyBites Team on 7 February 2017
A list of useful Python resources to boost up your skills.
Python Iteration
By Julian Sequeira on 19 January 2017
Iteration in Python is incredibly simple compared to C and other languages. It’s easy… maybe a little TOO easy…