Codementor: The one where we build a web scrapper and a slackbot - Part 2
Link: https://www.codementor.io/akaniruvictoryvic3king/the-one-where-we-build-a-web-scrapper-and-a-slackbot-part-2-150u8ruoq2
In this article I walk through my process of building a slackbot and sending messages to a channel at intervals
Link: https://www.codementor.io/akaniruvictoryvic3king/the-one-where-we-build-a-web-scrapper-and-a-slackbot-part-2-150u8ruoq2
In this article I walk through my process of building a slackbot and sending messages to a channel at intervals
www.codementor.io
The one where we build a web scrapper and a slackbot - Part 2 | Codementor
In this article I walk through my process of building a slackbot and sending messages to a channel at intervals
Full Stack Python: Exporting pandas DataFrames into SQLite with SQLAlchemy
Link: https://www.fullstackpython.com/blog/export-pandas-dataframes-sqlite-sqlalchemy.html
It is common when performing exploratory data analysis,
for example when examining COVID-19 data with pandas,
to load from files like a CSV, XML, or JSON into a
pandas DataFrame. You may then do some
Link: https://www.fullstackpython.com/blog/export-pandas-dataframes-sqlite-sqlalchemy.html
It is common when performing exploratory data analysis,
for example when examining COVID-19 data with pandas,
to load from files like a CSV, XML, or JSON into a
pandas DataFrame. You may then do some
Fullstackpython
Exporting pandas DataFrames into SQLite with SQLAlchemy
Learn how to export data from pandas DataFrames into SQLite databases using SQLAlchemy. Great post on fullstackpython.com!
BreadcrumbsCollector: How to mock in Python? – (almost) definitive guide
Link: https://breadcrumbscollector.tech/how-to-mock-in-python-almost-definitive-guide/
What is a mock?
Mock is a category of so-called test doubles – objects that mimic the behaviour of other objects. They are meant to be used in tests to replace real implementation that for some reason
Link: https://breadcrumbscollector.tech/how-to-mock-in-python-almost-definitive-guide/
What is a mock?
Mock is a category of so-called test doubles – objects that mimic the behaviour of other objects. They are meant to be used in tests to replace real implementation that for some reason
Breadcrumbs Collector
How to mock in Python? - (almost) definitive guide - Breadcrumbs Collector
What is a mock? Mock is a category of so-called test doubles – objects that mimic the behaviour of other objects. They are meant to be used in tests to replace real implementation that for some reason cannot be used (.e.g because they cause side effects,…
Will McGugan: Rich adds support for Jupyter Notebooks
Link: https://www.willmcgugan.com/blog/tech/post/rich-adds-support-for-jupyter-notebooks/
I recently added experimental support for Jupyter Notebooks to Rich. Here's an example of the kind of output it can generate:
© 2020 Will McGugan
This is the Rich test card you can generate in the t
Link: https://www.willmcgugan.com/blog/tech/post/rich-adds-support-for-jupyter-notebooks/
I recently added experimental support for Jupyter Notebooks to Rich. Here's an example of the kind of output it can generate:
© 2020 Will McGugan
This is the Rich test card you can generate in the t
Will McGugan Tech
Rich adds support for Jupyter Notebooks
I recently added experimental support for Jupyter Notebooks to Rich. Here's an example of the kind of output it can generate: Rich is a library for fancy formatting to the terminal, where-as Jupyter supports HTML natively. So why integrate one with the other?…
Chris Moffitt: Using WSL to Build a Python Development Environment on Windows
Link: https://pbpython.com/wsl-python.html
Introduction
In 2016, Microsoft launched Windows Subsystem for Linux (WSL) which brought robust unix functionality to Windows.
In May 2019, Microsoft announced the release of WSL 2 which includes an
Link: https://pbpython.com/wsl-python.html
Introduction
In 2016, Microsoft launched Windows Subsystem for Linux (WSL) which brought robust unix functionality to Windows.
In May 2019, Microsoft announced the release of WSL 2 which includes an
Pbpython
Using WSL to Build a Python Development Environment on Windows
This article describes how to install and configure WSL2 so you can run Linux apps and do python development on your Windows system.
Real Python: How to Use any() in Python
Link: https://realpython.com/any-python/
As a Python programmer, you’ll frequently deal with Booleans and conditional statements—sometimes very complex ones. In those situations, you may need to rely on tools that can simplify logic and cons
Link: https://realpython.com/any-python/
As a Python programmer, you’ll frequently deal with Booleans and conditional statements—sometimes very complex ones. In those situations, you may need to rely on tools that can simplify logic and cons
Realpython
How to Use any() in Python – Real Python
If you've ever wondered how to simplify complex conditionals by determining if at least one in a series of conditions is true, then look no further. This tutorial will teach you all about how to use any() in Python to do just that.
Real Python: The Real Python Podcast – Episode #2: Learn Python Skills While Creating Games
Link: https://realpython.com/podcasts/rpp/2/
In this episode, Christopher interviews Jon Fincher from the Real Python Team. Jon talks about his recent articles on PyGame and Arcade. They discuss if game programming is a good way to develop your
Link: https://realpython.com/podcasts/rpp/2/
In this episode, Christopher interviews Jon Fincher from the Real Python Team. Jon talks about his recent articles on PyGame and Arcade. They discuss if game programming is a good way to develop your
Realpython
Episode #2: Learn Python Skills While Creating Games – The Real Python Podcast
Is game programming a good way to develop your Python programming skills? This week we have Jon Fincher on the show. Jon is an author on the Real Python team, and we talk about his recent articles on PyGame and Arcade.
Continuum Analytics Blog: Why Understanding CVEs Is Critical for Data Scientists
Link: https://www.anaconda.com/cves-data-science-security/
CVEs are Common Vulnerabilities and Exposures found in software components. Because modern software is complex with its many layers, interdependencies, data input, and libraries, vulnerabilities tend
Link: https://www.anaconda.com/cves-data-science-security/
CVEs are Common Vulnerabilities and Exposures found in software components. Because modern software is complex with its many layers, interdependencies, data input, and libraries, vulnerabilities tend
Wingware: Wing Python IDE 7.2.2 - March 30, 2020
Link: https://wingware.com/news/2020-03-30
Wing 7.2.2 introduces a How-To for using Wing with AWS, adds support for Python 3 enums,
allows constraining Find Uses of imported symbols to only the current file, and makes a number
of usability and
Link: https://wingware.com/news/2020-03-30
Wing 7.2.2 introduces a How-To for using Wing with AWS, adds support for Python 3 enums,
allows constraining Find Uses of imported symbols to only the current file, and makes a number
of usability and
Wingware
Wing Python IDE 7.2.2 - March 30, 2020 - Wing Python IDE
Wing 7.2.2 introduces a How-To for using Wing with AWS, adds support for Python 3
enums, allows constraining Find Uses of imported symbols to only the current file, and makes a
number of usability and stability improvements.
enums, allows constraining Find Uses of imported symbols to only the current file, and makes a
number of usability and stability improvements.
Wesley Chun: Authorized Google API access from Python (part 2 of 2)
Link: http://wescpy.blogspot.com/2014/11/authorized-google-api-access-from-python.html
Listing your files with the Google Drive APINOTE: You can also watch a video walkthrough of the common code covered in this blogpost here. UPDATE (Mar 2020): You can build this application line-by-lin
Link: http://wescpy.blogspot.com/2014/11/authorized-google-api-access-from-python.html
Listing your files with the Google Drive APINOTE: You can also watch a video walkthrough of the common code covered in this blogpost here. UPDATE (Mar 2020): You can build this application line-by-lin
Blogspot
Authorized Google API access from Python (part 2 of 2)
Listing your files with the Google Drive API NOTE: You can also watch a video walkthrough of the common code covered in this blogpost her...
Podcast.__init__: An Open Source Toolchain For Natural Language Processing From Explosion AI
Link: https://www.pythonpodcast.com/explosion-ai-natural-language-processing-episode-256/
The state of the art in natural language processing is a constantly moving target. With the rise of deep learning, previously cutting edge techniques have given way to robust language models. Through
Link: https://www.pythonpodcast.com/explosion-ai-natural-language-processing-episode-256/
The state of the art in natural language processing is a constantly moving target. With the rise of deep learning, previously cutting edge techniques have given way to robust language models. Through
The Python Podcast.__init__
The Python Podcast.__init__: An Open Source Toolchain For Natural Language Processing From Explosion AI
An interview with Explosion AI co-founder about building a business around an open source tool chain for natural language processing
Codementor: How to Install Odoo 13 in Ubuntu 18.04 ?
Link: https://www.codementor.io/pateljainikkumar/how-to-install-odoo-13-in-ubuntu-18-04-151athvq9j
Install Odoo13, Ubuntu 18.04
Link: https://www.codementor.io/pateljainikkumar/how-to-install-odoo-13-in-ubuntu-18-04-151athvq9j
Install Odoo13, Ubuntu 18.04
www.codementor.io
How to Install Odoo 13 in Ubuntu 18.04 ? | Codementor
Install Odoo13, Ubuntu 18.04
IslandT: Lists in python example
Link: https://kibiwebgeek.com/lists-in-python-example/
This is the final chapter of the lists in python topic, in this chapter we will create an example that will remove the duplicate student names within a student list with the help of the python loop.
W
Link: https://kibiwebgeek.com/lists-in-python-example/
This is the final chapter of the lists in python topic, in this chapter we will create an example that will remove the duplicate student names within a student list with the help of the python loop.
W
Kibiwebgeek
Lists in python example
This is the final chapter of the lists in python topic, in this chapter we will create an example that will remove the duplicate student names within a student list with the help of the python...
Mike Driscoll: Python 101 – Learning About Dictionaries
Link: http://www.blog.pythonlibrary.org/2020/03/31/python-101-learning-about-dictionaries/
Dictionaries are another fundamental data type in Python. A dictionary is a key, value pair. Some programming languages refer to them as hash tables. They are described as a mapping object that maps h
Link: http://www.blog.pythonlibrary.org/2020/03/31/python-101-learning-about-dictionaries/
Dictionaries are another fundamental data type in Python. A dictionary is a key, value pair. Some programming languages refer to them as hash tables. They are described as a mapping object that maps h
Programiz: Python main function
Link: https://www.programiz.com/python-programming/main-function
In this tutorial, we will learn how to use a Python program's __name__ attribute to run it dynamically in different contexts.
Link: https://www.programiz.com/python-programming/main-function
In this tutorial, we will learn how to use a Python program's __name__ attribute to run it dynamically in different contexts.
Programiz
Python Main function
In this tutorial, we will learn how to use a Python program's __name__ attribute to run it dynamically in different contexts.
Kushal Das: Introducing ManualBox project
Link: https://kushaldas.in/posts/introducing-manualbox-project.html
One of the major security features of the QubesOS
is the file vaults, where access to specific files can only happen via user
input in the GUI applet. Same goes to the
split-ssh, where the user has t
Link: https://kushaldas.in/posts/introducing-manualbox-project.html
One of the major security features of the QubesOS
is the file vaults, where access to specific files can only happen via user
input in the GUI applet. Same goes to the
split-ssh, where the user has t
Codementor: Michael Kennedy almost learned Python in the 90s... and other things I learned recording his DevJourney
Link: https://www.codementor.io/timothepdotnet/michael-kennedy-almost-learned-python-in-the-90s-and-other-things-i-learned-recording-his-devjourney-15251q3mqd
Michael Kennedy is a podcaster and a trainer. After interviewing him for the DevJourney podcast, here are the key takeways I personally took out of the discussion.
Link: https://www.codementor.io/timothepdotnet/michael-kennedy-almost-learned-python-in-the-90s-and-other-things-i-learned-recording-his-devjourney-15251q3mqd
Michael Kennedy is a podcaster and a trainer. After interviewing him for the DevJourney podcast, here are the key takeways I personally took out of the discussion.
www.codementor.io
Michael Kennedy almost learned Python in the 90s... and other things I learned recording his DevJourney | Codementor
Michael Kennedy is a podcaster and a trainer. After interviewing him for the DevJourney podcast, here are the key takeways I personally took out of the discussion.
Python Software Foundation: PSF's Projected 2020 Financial Outcome
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/ft6nIyIxM-w/psfs-projected-2020-financial-outcome.html
The Python Software Foundation (PSF) is a 501(c)(3) non-profit organization dedicated to the Python community and programming language, as well as running PyCon US. Since PyCon US 2020 was cancelled,
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/ft6nIyIxM-w/psfs-projected-2020-financial-outcome.html
The Python Software Foundation (PSF) is a 501(c)(3) non-profit organization dedicated to the Python community and programming language, as well as running PyCon US. Since PyCon US 2020 was cancelled,
Blogspot
PSF's Projected 2020 Financial Outcome
The Python Software Foundation (PSF) is a 501(c)(3) non-profit organization dedicated to the Python community and programming language,...
EuroPython: EuroPython 2020: Online conference from July 23-26
Link: https://blog.europython.eu/post/614102095419850752
In the last two weeks, we have
discussed and investigated concepts around running this year’s
EuroPython conference as an online conference. We have looked at
conference tools, your feedback, drafted
Link: https://blog.europython.eu/post/614102095419850752
In the last two weeks, we have
discussed and investigated concepts around running this year’s
EuroPython conference as an online conference. We have looked at
conference tools, your feedback, drafted
blog.europython.eu
EuroPython Blog
EuroPython 2020: Online conference from July 23-26 In the last two weeks, we have discussed and investigated concepts around running this year’s EuroPython conference as an online conference. We have...
Real Python: Comparing Python Objects the Right Way: "is" vs "=="
Link: https://realpython.com/courses/python-is-identity-vs-equality/
There’s a subtle difference between the Python identity operator (is) and the equality operator (==). Your code can run fine when you use the Python is operator to compare numbers, until it suddenly d
Link: https://realpython.com/courses/python-is-identity-vs-equality/
There’s a subtle difference between the Python identity operator (is) and the equality operator (==). Your code can run fine when you use the Python is operator to compare numbers, until it suddenly d
Realpython
Comparing Python Objects the Right Way: "is" vs "==" – Real Python
In this quick and practical course, you'll learn when to use the Python is, is not, == and != operators. You'll see what these comparison operators do under the hood, dive into some quirks of object identity and interning, and define a custom class.
Continuum Analytics Blog: Securing Pangeo with Dask Gateway
Link: https://www.anaconda.com/securing-pangeo-with-dask-gateway/
This post is also available on the Pangeo blog. Over the past few weeks, we have made some exciting changes to Pangeo’s cloud deployments. These changes will make using Pangeo’s clusters easier for us
Link: https://www.anaconda.com/securing-pangeo-with-dask-gateway/
This post is also available on the Pangeo blog. Over the past few weeks, we have made some exciting changes to Pangeo’s cloud deployments. These changes will make using Pangeo’s clusters easier for us
Anaconda
Securing Pangeo with Dask Gateway - Anaconda
Over the past few weeks, we have made some exciting changes to Pangeo's cloud deployments with Dask Gateway.