Django Weblog: 2023 DSF Board Nominations
Link: https://www.djangoproject.com/weblog/2022/oct/16/2023-dsf-board-nomination-announcement/
It is that time of year again to think about next year’s Django Software Foundation’s Board of Directors!
As you know, the Board guides the direction of the marketing, governance and outreach activ
Link: https://www.djangoproject.com/weblog/2022/oct/16/2023-dsf-board-nomination-announcement/
It is that time of year again to think about next year’s Django Software Foundation’s Board of Directors!
As you know, the Board guides the direction of the marketing, governance and outreach activ
Podcast.__init__: Take Control Of Your Electrical Systems With The Open Source FlexMeasures Energy Management System
Link: https://www.pythonpodcast.com/flexmeasures-energy-management-system-episode-381/
The generation, distribution, and consumption of energy is one of the most critical pieces of infrastructure for the modern world. With the rise of renewable energy there is an accompanying need for s
Link: https://www.pythonpodcast.com/flexmeasures-energy-management-system-episode-381/
The generation, distribution, and consumption of energy is one of the most critical pieces of infrastructure for the modern world. With the rise of renewable energy there is an accompanying need for s
The Python Podcast.__init__
The Python Podcast.__init__: Take Control Of Your Electrical Systems With The Open Source FlexMeasures Energy Management System
An interview with Nicolas Höning about the open source FlexMeasures project for building real-time and adaptable energy management systems
IslandT: Tkinter and wxPython tutorial — Create a simple Tkinter and wxPython GUI
Link: https://islandtropicaman.com/wp/2022/10/17/tkinter-and-wxpython-tutorial-create-a-simple-tkinter-and-wxpython-gui/
Tkinter and wxPythn are two of the most famous Python GUIs that have been used by the worldwide python developers to create GUIs for their python applications!
This first chapter of the Tkinter and wx
Link: https://islandtropicaman.com/wp/2022/10/17/tkinter-and-wxpython-tutorial-create-a-simple-tkinter-and-wxpython-gui/
Tkinter and wxPythn are two of the most famous Python GUIs that have been used by the worldwide python developers to create GUIs for their python applications!
This first chapter of the Tkinter and wx
IslandT: Tkinter Tutorial — Create an action button which will change the text in that button
Link: https://islandtropicaman.com/wp/2022/10/17/tkinter-tutorial-create-an-action-button-which-will-change-the-text-in-that-button/
In this Tkinter tutorial let us create a button with Tkinter and then create a function that will change the text of the button once it has been called after the user clicks on that button.
First of a
Link: https://islandtropicaman.com/wp/2022/10/17/tkinter-tutorial-create-an-action-button-which-will-change-the-text-in-that-button/
In this Tkinter tutorial let us create a button with Tkinter and then create a function that will change the text of the button once it has been called after the user clicks on that button.
First of a
Mike Driscoll: PyDev of the Week: Matthäus Chajdas
Link: https://www.blog.pythonlibrary.org/2022/10/17/pydev-of-the-week-matthaus-chajdas/
This week we welcome Matthäus Chajdas (@NIV_Anteru) as our PyDev of the week! Matthäus is a core developer of Pygments, a generic syntax highlighter that is used in many websites, wikis, and more! Mat
Link: https://www.blog.pythonlibrary.org/2022/10/17/pydev-of-the-week-matthaus-chajdas/
This week we welcome Matthäus Chajdas (@NIV_Anteru) as our PyDev of the week! Matthäus is a core developer of Pygments, a generic syntax highlighter that is used in many websites, wikis, and more! Mat
Mouse Vs Python
PyDev of the Week: Matthäus Chajdas - Mouse Vs Python
This week we welcome Matthäus Chajdas (@NIV_Anteru) as our PyDev of the week! Matthäus is a core developer of Pygments, a generic syntax highlighter that
Real Python: A Practical Introduction to Web Scraping in Python
Link: https://realpython.com/python-web-scraping-practical-introduction/
Web scraping is the process of collecting and parsing raw data from the Web, and the Python community has come up with some pretty powerful web scraping tools.
The Internet hosts perhaps the greatest
Link: https://realpython.com/python-web-scraping-practical-introduction/
Web scraping is the process of collecting and parsing raw data from the Web, and the Python community has come up with some pretty powerful web scraping tools.
The Internet hosts perhaps the greatest
Realpython
A Practical Introduction to Web Scraping in Python – Real Python
In this tutorial, you'll learn all about web scraping in Python. You'll see how to parse data from websites and interact with HTML forms using tools such as Beautiful Soup and MechanicalSoup.
Python Morsels: What does // mean in Python?
Link: https://www.pythonmorsels.com/integer-division/
Python's // operator performs "floor division" (a.k.a. "integer division"). It always rounds down the result to the nearest integer while dividing.
Table of contents
The / operator
The // operator
Link: https://www.pythonmorsels.com/integer-division/
Python's // operator performs "floor division" (a.k.a. "integer division"). It always rounds down the result to the nearest integer while dividing.
Table of contents
The / operator
The // operator
Pythonmorsels
What does // mean in Python?
Python's // operator performs "floor division" (a.k.a. "integer division"). It always rounds down the result to the nearest integer while dividing.
Matthew Wright: Finding and analyzing free stock index data with Python and EDGAR
Link: https://www.wrighters.io/finding-and-analyzing-free-stock-index-data-with-python-and-edgar/
A stock index is just a list of stocks. But an index is a special list because investors use it to make investing decisions. An index is constructed via rules about stocks to include, how much to incl
Link: https://www.wrighters.io/finding-and-analyzing-free-stock-index-data-with-python-and-edgar/
A stock index is just a list of stocks. But an index is a special list because investors use it to make investing decisions. An index is constructed via rules about stocks to include, how much to incl
wrighters.io
Finding and analyzing free stock index data with Python and EDGAR - wrighters.io
Historical stock index data can be hard to find for free, but when we use the SEC's EDGAR system and Python, we can extract it quite easily.
PyBites: Technology and Mindset with new PDM Coach Hugh Tipping
Link: https://pybit.es/articles/technology-and-mindset-with-new-pdm-coach-hugh-tipping/
Listen now:
This week we welcome Hugh Tipping, our newest Pybites Developer Mindset (PDM) Coach, to the podcast!
These 34 minutes are packed full of inspiration and insight into Hugh’s motivations as
Link: https://pybit.es/articles/technology-and-mindset-with-new-pdm-coach-hugh-tipping/
Listen now:
This week we welcome Hugh Tipping, our newest Pybites Developer Mindset (PDM) Coach, to the podcast!
These 34 minutes are packed full of inspiration and insight into Hugh’s motivations as
PyBites
Technology And Mindset With New PDM Coach Hugh Tipping - PyBites
This week we welcome Hugh Tipping, our newest Pybites Developer Mindset (PDM) Coach, to the podcast!
IslandT: Tkinter Tutorial — Changes the text in a label
Link: https://islandtropicaman.com/wp/2022/10/18/tkinter-tutorial-changes-the-text-in-a-label/
If you have followed my previous Tkinter tutorial which is to change the text within a Button once the user has clicked on it then in this tutorial I will create a label widget on the right side of th
Link: https://islandtropicaman.com/wp/2022/10/18/tkinter-tutorial-changes-the-text-in-a-label/
If you have followed my previous Tkinter tutorial which is to change the text within a Button once the user has clicked on it then in this tutorial I will create a label widget on the right side of th
eGenix.com: PyDDF Python Herbst Sprint 2022
Link: https://www.egenix.com/company/news/PyDDF-Herbst-Sprint-2022
The following text is in German, since we're announcing a Python sprint in Düsseldorf, Germany.
Ankündigung
Python Meeting Herbst Sprint 2022 in
Düsseldorf
Samstag, 22.10.2022, 10:00-18:00 Uhr
Sonnt
Link: https://www.egenix.com/company/news/PyDDF-Herbst-Sprint-2022
The following text is in German, since we're announcing a Python sprint in Düsseldorf, Germany.
Ankündigung
Python Meeting Herbst Sprint 2022 in
Düsseldorf
Samstag, 22.10.2022, 10:00-18:00 Uhr
Sonnt
eGenix.com
eGenix.com: PyDDF Python Herbst Sprint 2022
The Python Meeting Düsseldorf team is organizing a Python sprint on October 22./23. in Düsseldorf, Germany.
Real Python: Python Basics: Numbers and Math
Link: https://realpython.com/courses/python-basics-numbers-and-math/
You don’t need to be a math whiz to program well. The truth is, few
programmers need to know more than basic algebra.
Of course, how much math you need to know depends on the
application you’re worki
Link: https://realpython.com/courses/python-basics-numbers-and-math/
You don’t need to be a math whiz to program well. The truth is, few
programmers need to know more than basic algebra.
Of course, how much math you need to know depends on the
application you’re worki
Realpython
Python Basics: Numbers and Math – Real Python
In this video course, you'll learn the math that you'll need for your Python programming journey. This includes integers and floating-point numbers, arithmetic operators, and string formatting for numbers.
Juri Pakaste: Better diff hunk headers with Swift
Link: https://juripakaste.fi/swift-git-attributes/
When you run git diff — or look at diffs in at least Fork — on a modified Swift project you see things like this:
@@ -251,7 +251,7 @@ extension AppUITests {
let container = app.scrollViews["s
Link: https://juripakaste.fi/swift-git-attributes/
When you run git diff — or look at diffs in at least Fork — on a modified Swift project you see things like this:
@@ -251,7 +251,7 @@ extension AppUITests {
let container = app.scrollViews["s
juripakaste.fi
Better diff hunk headers with Swift
Personal blog of Juri Pakaste
Andre Roberge: pandas' SettingWithCopyWarning: did I get it right?
Link: https://aroberge.blogspot.com/2022/10/pandas-settingwithcopywarning-did-i-get.html
I am just beginning to learn pandas and am looking to provide some automated help. From what I read, it appears that SettingWithCopyWarning is something that confuse many people. Is the following cor
Link: https://aroberge.blogspot.com/2022/10/pandas-settingwithcopywarning-did-i-get.html
I am just beginning to learn pandas and am looking to provide some automated help. From what I read, it appears that SettingWithCopyWarning is something that confuse many people. Is the following cor
Blogspot
pandas' SettingWithCopyWarning: did I get it right?
I am just beginning to learn pandas and am looking to provide some automated help. From what I read, it appears that SettingWithCopyWarning...
PyCoder’s Weekly: Issue #547 (Oct. 18, 2022)
Link: https://pycoders.com/issues/547
#547 – OCTOBER 18, 2022 View in Browser » ChatterBot: Build a Chatbot With Python Chatbots can help to provide real-time customer support and are a valuable asset in many industries. When you un
Link: https://pycoders.com/issues/547
#547 – OCTOBER 18, 2022 View in Browser » ChatterBot: Build a Chatbot With Python Chatbots can help to provide real-time customer support and are a valuable asset in many industries. When you un
Pycoders
PyCoder’s Weekly | Issue #547
Issue #547 of the PyCoder’s Weekly newsletter, published Oct. 18, 2022.
PyCon: PyCon US 2023 Launches!
Link: https://pycon.blogspot.com/2022/10/pycon-us-2023-launches.html
Our conference in Salt Lake City was a success, and we’re looking forward to returning in 2023. Planning is already underway, and today we’re excited to announce the launch of our conference website,
Link: https://pycon.blogspot.com/2022/10/pycon-us-2023-launches.html
Our conference in Salt Lake City was a success, and we’re looking forward to returning in 2023. Planning is already underway, and today we’re excited to announce the launch of our conference website,
Blogspot
PyCon US 2023 Launches!
Our conference in Salt Lake City was a success, and we’re looking forward to returning in 2023. Planning is already underway, and today we’r...
Malthe Borch: Mitigating Username-Attacks on Digital Identity Logins
Link: https://maltheborch.com/2022/10/mitigating-username-attacks-on-digital-identity-logins.html
In Denmark, we've had a digital national identity
service in operation since 2010, used for example to get access to
secure e-mail and government
Link: https://maltheborch.com/2022/10/mitigating-username-attacks-on-digital-identity-logins.html
In Denmark, we've had a digital national identity
service in operation since 2010, used for example to get access to
secure e-mail and government
Malthe's Homepage:
Software Engineering and Architecture, Data Processing and Analytics
A Blog About Computer Systems
Software Engineering and Architecture, Data Processing and Analytics
A Blog About Computer Systems
Mitigating Username-Attacks on Digital Identity Logins
IslandT: Tkinter Tutorial — Create Text box Widget
Link: https://islandtropicaman.com/wp/2022/10/19/tkinter-tutorial-create-text-box-widget/
In this article let us continue with the previous example by adding a text box widget with a width of 16 at column 0, row 1 position within the Tkinter window, which simply means the second row. This
Link: https://islandtropicaman.com/wp/2022/10/19/tkinter-tutorial-create-text-box-widget/
In this article let us continue with the previous example by adding a text box widget with a width of 16 at column 0, row 1 position within the Tkinter window, which simply means the second row. This
IslandT: wxPython Tutorial — Create the wxPython child class object
Link: https://islandtropicaman.com/wp/2022/10/19/wxpython-tutorial-create-the-wxpython-child-class-object/
Before I start, if you guys happen to know the creator of wxPython please do ask him this question: Why are you using the term wxPython instead of WxPython? I just feel curious about that!
Alright, a
Link: https://islandtropicaman.com/wp/2022/10/19/wxpython-tutorial-create-the-wxpython-child-class-object/
Before I start, if you guys happen to know the creator of wxPython please do ask him this question: Why are you using the term wxPython instead of WxPython? I just feel curious about that!
Alright, a
Reuven Lerner: How to propose a winning conference talk
Link: https://lerner.co.il/2022/10/19/how-to-propose-a-winning-conference-talk/
[This blog post is taken from my “Trainer Weekly” newsletter, all about the business, logistics, and pedagogy of corporate training. Given that PyCon US 2023 just opened its call for participation, I
Link: https://lerner.co.il/2022/10/19/how-to-propose-a-winning-conference-talk/
[This blog post is taken from my “Trainer Weekly” newsletter, all about the business, logistics, and pedagogy of corporate training. Given that PyCon US 2023 just opened its call for participation, I
Reuven Lerner
How to propose a winning conference talk
[This blog post is taken from my "Trainer Weekly" newsletter, all about the business, logistics, and pedagogy of corporate training. Given that PyCon US 2023 just opened its call for participation, I thought that this
Real Python: Build a Tic-Tac-Toe Game Engine With an AI Player in Python
Link: https://realpython.com/tic-tac-toe-ai-python/
When you’re a child, you learn to play tic-tac-toe, which some people know as naughts and crosses. The game remains fun and challenging until you enter your teenage years. Then, you learn to program a
Link: https://realpython.com/tic-tac-toe-ai-python/
When you’re a child, you learn to play tic-tac-toe, which some people know as naughts and crosses. The game remains fun and challenging until you enter your teenage years. Then, you learn to program a
Realpython
Build a Tic-Tac-Toe Game Engine With an AI Player in Python – Real Python
In this step-by-step tutorial, you'll build a universal game engine in Python with tic-tac-toe rules and two computer players, including an unbeatable AI player using the minimax algorithm. You'll also create a text-based graphical front end for your library…