Going into my first PyCon was pretty daunting. Luckily, the Python community is absolutely incredible so my fears quickly faded. Surprisingly, there was a lot to gain that wasn’t actually technical or code related. Read on for a recap of the experience.
PyCon 2018 – My First PyCon
By Julian Sequeira on 19 May 2018
Twitter Digest 2018 Week 16
By PyBites Team on 29 April 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
Twitter Digest 2018 Week 15
By PyBites Team on 22 April 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
Twitter Digest 2018 Week 14
By PyBites Team on 15 April 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
Code Challenge 50 – Use Celery to Offload an Expensive Task
By PyBites Team on 1 April 2018
Hi Pythonistas, back-to-back with our Planet Python challenge 49 here is our special Easter Challenge #50 where you will use Celery to offload a simplified Easter ecard mailer app.
Code Challenge 49 – Contribute to Open Source: Clean up Planet Python
By PyBites Team on 1 April 2018
Hi Pythonistas, it has been silent on the Community Blog challenges front, but then again we completed the 100 Days of Code in Python course which was a great milestone. Although less frequent, we will keep doing blog challenges though, not to worry! Let’s start with a long pending item: cleaning up Python planets feeds, an interesting and valuable open source contribution.
Twitter Digest 2018 Week 13
By PyBites Team on 1 April 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
CodeChalleng.es Platform Update 26-Mar-2018
By PyBites Team on 26 March 2018
Details of the latest CodeChalleng.es Code Platform updates.
Twitter Digest 2018 Week 12
By PyBites Team on 25 March 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
All You Need to Know to Start Using Fixtures in Your pytest Code
By Bob Belderbos on 15 March 2018
Setting up test cases for code that manage data can be challenging but it’s an important skill to reliably test your code. You might have heard of the setup and teardown methods in unittest. In pytest you use fixtures and as you will discover in this article they are actually not that hard to set up. Fixtures have been labelled pytest’s killer feature so let’s explore them in this article using a practical example.