PyBites: Code Challenge 55 - #100DaysOfCode Curriculum Generator
Link: https://pybit.es/codechallenge55.html
There is an immense amount to be learned simply by tinkering with things. - Henry Ford
Hey Pythonistas,
It's time for another code challenge! This week we're asking you to create your own #100DaysOf
Link: https://pybit.es/codechallenge55.html
There is an immense amount to be learned simply by tinkering with things. - Henry Ford
Hey Pythonistas,
It's time for another code challenge! This week we're asking you to create your own #100DaysOf
PyBites
Code Challenge 55 - #100DaysOfCode Curriculum Generator
Hi Pythonistas, Welcome to Pybites Code Challenge 55! In this challenge we're asking that you create your own #100DaysOfCode Curriculum Generator.
Codementor: Celery Task Routing: The Basics
Link: https://www.codementor.io/bjoernstiel/celery-task-routing-the-basics-odic41hoy
Link: https://www.codementor.io/bjoernstiel/celery-task-routing-the-basics-odic41hoy
www.codementor.io
Celery Task Routing: The Basics | Codementor
Stack Abuse: A Brief Introduction to matplotlib for Data Visualization
Link: https://stackabuse.com/a-brief-introduction-to-matplotlib-for-data-visualization/
Introduction
Python has a wide variety of useful packages for machine learning and statistical analysis such as TensorFlow, NumPy, scikit-learn, Pandas, and more. One package that is essential to most
Link: https://stackabuse.com/a-brief-introduction-to-matplotlib-for-data-visualization/
Introduction
Python has a wide variety of useful packages for machine learning and statistical analysis such as TensorFlow, NumPy, scikit-learn, Pandas, and more. One package that is essential to most
Stack Abuse
A Brief Introduction to matplotlib for Data Visualization
Introduction Python has a wide variety of useful packages for machine learning and statistical analysis such as TensorFlow, NumPy, scikit-learn, Pandas, and more. One package that is essential to most data science projects is matplotlib. Available for any…
Randy Zwitch: Using pandas and pymapd for ETL into OmniSci
Link: http://randyzwitch.com/omnisci-pymapd-etl/
I’ve got PyData NYC 2018 in two days and rather finishing up my talk, I just realized that my source data has a silent corruption due to non-standard timestamps. Here’s how I fixed this using pandas a
Link: http://randyzwitch.com/omnisci-pymapd-etl/
I’ve got PyData NYC 2018 in two days and rather finishing up my talk, I just realized that my source data has a silent corruption due to non-standard timestamps. Here’s how I fixed this using pandas a
Randyzwitch
randyzwitch.com | Using pandas and pymapd for ETL into OmniSci
The world would be a much saner place if everyone used ISO-8601 formatted timestamps. But since we all don't, here's how to cleanup a CSV using pandas, then loading the pandas dataframe directly into OmniSci.
A. Jesse Jiryu Davis: Recap: PyGotham 2018 Speaker Coaching
Link: https://emptysqua.re/blog/recap-coaching-for-pygotham-speakers-2018/
With your help, we raised money for twelve PyGotham speakers to receive free training from opera singer and speaking coach Melissa Collom. Most of the speakers were new to the conference scene; Meliss
Link: https://emptysqua.re/blog/recap-coaching-for-pygotham-speakers-2018/
With your help, we raised money for twelve PyGotham speakers to receive free training from opera singer and speaking coach Melissa Collom. Most of the speakers were new to the conference scene; Meliss
emptysqua.re
Recap: PyGotham 2018 Speaker Coaching
With your help, we raised money for PyGotham speakers to receive free training from opera singer and speaking coach Melissa Collom.
Python Bytes: #99 parse - the regex antidote in Python
Link: https://pythonbytes.fm/episodes/show/99/parse-the-regex-antidote-in-python
Link: https://pythonbytes.fm/episodes/show/99/parse-the-regex-antidote-in-python
pythonbytes.fm
parse - the regex antidote in Python
News and announcements from the Python community for the week of Oct 16th, 2018
Andrea Grandi: Using ipdb with Python 3.7.x breakpoint
Link: https://www.andreagrandi.it/2018/10/16/using-ipdb-with-python-37-breakpoint/
Python 3.7.x introduced a new method to insert a breakpoint in the code.
Before Python 3.7.x to insert a debugging point we had to write import pdb; pdb.set_trace() which honestly I could never rememb
Link: https://www.andreagrandi.it/2018/10/16/using-ipdb-with-python-37-breakpoint/
Python 3.7.x introduced a new method to insert a breakpoint in the code.
Before Python 3.7.x to insert a debugging point we had to write import pdb; pdb.set_trace() which honestly I could never rememb
Andrea Grandi
Using ipdb with Python 3.7.x breakpoint
Python 3.7.x introduced a new method to insert a breakpoint in the code. Before Python 3.7.x to insert a debugging point we had to write import pdb; pdb.set_trace() which honestly I could never remember (and I also created a snippet on VS Code to auto complete…
Vasudev Ram: The 2018 Python Developer Survey
Link: http://jugad2.blogspot.com/2018/10/the-2018-python-developer-survey.html
By Vasudev RamReposting a PSF-Community email as a PSA:Participate in the 2018 Python Developer Survey.Excerpt from an email to the psf-community@python.org and psf-members-announce@python.org mailing
Link: http://jugad2.blogspot.com/2018/10/the-2018-python-developer-survey.html
By Vasudev RamReposting a PSF-Community email as a PSA:Participate in the 2018 Python Developer Survey.Excerpt from an email to the psf-community@python.org and psf-members-announce@python.org mailing
Blogspot
The 2018 Python Developer Survey
Vasudev Ram's blog on software innovation, open-source and proprietary, worldwide. Python, D, Go, FreePascal, Unix, databases, open source.
Mike Driscoll: Jupyter Notebook Debugging
Link: http://www.blog.pythonlibrary.org/2018/10/17/jupyter-notebook-debugging/
Debugging is an important concept. The concept of debugging is trying to figure out what is wrong with your code or just trying to understand the code. There are many times where I will come to unfami
Link: http://www.blog.pythonlibrary.org/2018/10/17/jupyter-notebook-debugging/
Debugging is an important concept. The concept of debugging is trying to figure out what is wrong with your code or just trying to understand the code. There are many times where I will come to unfami
Eli Bendersky: Covariance and contravariance in subtyping
Link: https://eli.thegreenplace.net/2018/covariance-and-contravariance-in-subtyping/
Many programming languages support subtyping, a kind of polymorphism that lets
us define hierarchical relations on types, with specific types being subtypes of
more generic types. For example, a Cat c
Link: https://eli.thegreenplace.net/2018/covariance-and-contravariance-in-subtyping/
Many programming languages support subtyping, a kind of polymorphism that lets
us define hierarchical relations on types, with specific types being subtypes of
more generic types. For example, a Cat c
Stack Abuse: Creating a Neural Network from Scratch in Python: Multi-class Classification
Link: https://stackabuse.com/creating-a-neural-network-from-scratch-in-python-multi-class-classification/
This is the third article in the series of articles on "Creating a Neural Network From Scratch in Python".
Creating a Neural Network from Scratch in Python
Creating a Neural Network from Scratch in P
Link: https://stackabuse.com/creating-a-neural-network-from-scratch-in-python-multi-class-classification/
This is the third article in the series of articles on "Creating a Neural Network From Scratch in Python".
Creating a Neural Network from Scratch in Python
Creating a Neural Network from Scratch in P
Stack Abuse
Creating a Neural Network from Scratch in Python: Multi-class Classification
This is the third article in the series of articles on "Creating a Neural Network From Scratch in Python". Creating a Neural Network from Scratch in...
PyCon: PyCon 2019 Launches Financial Aid
Link: https://pycon.blogspot.com/2018/10/pycon-2019-launches-financial-aid.html
The PyCon conference prides itself on being affordable. However, registration is only one of several expenses an attendee must incur, and it’s likely the smallest one. Flying, whether halfway around t
Link: https://pycon.blogspot.com/2018/10/pycon-2019-launches-financial-aid.html
The PyCon conference prides itself on being affordable. However, registration is only one of several expenses an attendee must incur, and it’s likely the smallest one. Flying, whether halfway around t
Blogspot
PyCon 2019 Launches Financial Aid
The PyCon conference prides itself on being affordable. However, registration is only one of several expenses an attendee must incur, and i...
Real Python: Python, Boto3, and AWS S3: Demystified
Link: https://realpython.com/python-boto3-aws-s3/
Amazon Web Services (AWS) has become a leader in cloud computing. One of its core components is S3, the object storage service offered by AWS. With its impressive availability and durability, it has b
Link: https://realpython.com/python-boto3-aws-s3/
Amazon Web Services (AWS) has become a leader in cloud computing. One of its core components is S3, the object storage service offered by AWS. With its impressive availability and durability, it has b
Realpython
Python, Boto3, and AWS S3: Demystified – Real Python
Get started working with Python, Boto3, and AWS S3. Learn how to create objects, upload them to S3, download their contents, and change their attributes directly from your script, all while avoiding common pitfalls.
Stack Abuse: Python Dictionary Tutorial
Link: https://stackabuse.com/python-dictionary-tutorial/
Introduction
Creating a Dictionary
Accessing Elements
Adding Elements
Updating Elements
Removing Elements
Other Common Methods
Conclusion
Introduction
Python comes with a variety of built-in data st
Link: https://stackabuse.com/python-dictionary-tutorial/
Introduction
Creating a Dictionary
Accessing Elements
Adding Elements
Updating Elements
Removing Elements
Other Common Methods
Conclusion
Introduction
Python comes with a variety of built-in data st
Stack Abuse
Guide to Dictionaries in Python
Python comes with a variety of built-in data structures, capable of storing different types of data. A Python dictionary is one such data structure that can st...
The No Title® Tech Blog: Haiku R1/beta1 review - revisiting BeOS, 18 years after its latest official release
Link: https://no-title.victordomingos.com/articles/2018/haiku_r1_beta1_review_revisiting_beos
Having experimented and used BeOS R5 Pro back in the early 2000’s, when the company that created it was just going down, I have been following with some interest the development of Haiku during all th
Link: https://no-title.victordomingos.com/articles/2018/haiku_r1_beta1_review_revisiting_beos
Having experimented and used BeOS R5 Pro back in the early 2000’s, when the company that created it was just going down, I have been following with some interest the development of Haiku during all th
The No Title® Tech Blog
Haiku R1/beta1 review - revisiting BeOS, 18 years after its latest official release
Having experimented and used BeOS R5 Pro back in the early 2000’s, when the company that created it was just going down, I have been following with some interest the development of Haiku during all these years. While one can argue that both the old BeOS and…
Talk Python to Me: #182 Picture Python at Shutterfly
Link: https://talkpython.fm/episodes/show/182/picture-python-at-shutterfly
Join me and Doug Farrell as we discuss his career and what he's up to at Shutterfly. You'll learn about the Python stack he's using to work with, not just with bits and bytes, but physical devices on
Link: https://talkpython.fm/episodes/show/182/picture-python-at-shutterfly
Join me and Doug Farrell as we discuss his career and what he's up to at Shutterfly. You'll learn about the Python stack he's using to work with, not just with bits and bytes, but physical devices on
talkpython.fm
Picture Python at Shutterfly
Join me and Doug Farrell as we discuss his career and what he's up to at Shutterfly. You'll learn about the Python stack he's using to work with, not just with bits and bytes, but physical devices on a production line for creating all sorts of picturesque…
Davy Wybiral: LoRa IoT Network Programming | RYLR896
Link: http://davywybiral.blogspot.com/2018/10/lora-iot-network-programming.html
Hey everyone, so I just got some LoRa modules from REYAX to experiment with long range network applications and these things are so cool! So far I've made a long range security alarm, a button to wate
Link: http://davywybiral.blogspot.com/2018/10/lora-iot-network-programming.html
Hey everyone, so I just got some LoRa modules from REYAX to experiment with long range network applications and these things are so cool! So far I've made a long range security alarm, a button to wate
Blogspot
LoRa IoT Network Programming
Hey everyone, so I just got some LoRa modules from REYAX to experiment with long range network applications and these things are so cool! So...
Mike Driscoll: Python 101: Episode #29 – Installing Packages
Link: http://www.blog.pythonlibrary.org/2018/10/18/python-101-episode-29-installing-packages/
In this screencast we will learn how to install 3rd party modules and packages using easy_install, pip and from source.
You can also read the chapter this video is based on here or get the book on Le
Link: http://www.blog.pythonlibrary.org/2018/10/18/python-101-episode-29-installing-packages/
In this screencast we will learn how to install 3rd party modules and packages using easy_install, pip and from source.
You can also read the chapter this video is based on here or get the book on Le
PyBites: Data Analysis of Pybites Community Branch Activity
Link: https://pybit.es/guest-challenge-repo-data-analysis.html
/*!
*
* IPython notebook
*
*/
/* CSS font colors for translated ANSI colors. */
.ansibold {
font-weight: bold;
}
/* use dark versions for foreground, to improve visibility */
.ansiblack {
color: b
Link: https://pybit.es/guest-challenge-repo-data-analysis.html
/*!
*
* IPython notebook
*
*/
/* CSS font colors for translated ANSI colors. */
.ansibold {
font-weight: bold;
}
/* use dark versions for foreground, to improve visibility */
.ansiblack {
color: b
PyBites
Data Analysis of Pybites Community Branch Activity
I wanted to play around with a dataset and see what I could find out about it. I decided on analyzing the little bit of data that I could collect from Github without having to use an OAuth key, which limits it to just 300 events. If you want to follow along…
PyCharm: PyCharm 2018.3 EAP 7
Link: http://feedproxy.google.com/~r/Pycharm/~3/G0y9BlhtlTk/
PyCharm 2018.3 EAP 7 is out! Get it now from the JetBrains website.
In this EAP we introduced a host of new features as well as fixed bugs in various subsystems.
Read the Release Notes
New in This Ver
Link: http://feedproxy.google.com/~r/Pycharm/~3/G0y9BlhtlTk/
PyCharm 2018.3 EAP 7 is out! Get it now from the JetBrains website.
In this EAP we introduced a host of new features as well as fixed bugs in various subsystems.
Read the Release Notes
New in This Ver
PyCharm Blog
PyCharm 2018.3 EAP 7
PyCharm 2018.3 EAP 7 is out! Get it now from the JetBrains website. In this EAP we introduced a host of new features as well as fixed bugs in various subsystems. Read the Release Notes New in This …
Stack Abuse: Getting User Input in Python
Link: https://stackabuse.com/getting-user-input-in-python/
Introduction
The way in which information is obtained and handled is one of the most important aspects in the ethos of any programming language, more so for the information supplied and obtained from
Link: https://stackabuse.com/getting-user-input-in-python/
Introduction
The way in which information is obtained and handled is one of the most important aspects in the ethos of any programming language, more so for the information supplied and obtained from
Stack Abuse
Getting User Input in Python
In this tutorial, we'll take a brief look at how to obtain information from the user through the input() function in Python.