Python Engineering at Microsoft: Announcing Playwright for Python: Reliable end-to-end testing for the web
Link: https://devblogs.microsoft.com/python/announcing-playwright-for-python-reliable-end-to-end-testing-for-the-web/
Automated end-to-end tests are a powerful tool for your team to ship faster and with more confidence. End-to-end tests automate UI interactions and can validate the functionality of your applications.
Link: https://devblogs.microsoft.com/python/announcing-playwright-for-python-reliable-end-to-end-testing-for-the-web/
Automated end-to-end tests are a powerful tool for your team to ship faster and with more confidence. End-to-end tests automate UI interactions and can validate the functionality of your applications.
Microsoft News
Announcing Playwright for Python: Reliable end-to-end testing for the web
Automated end-to-end tests are a powerful tool for your team to ship faster and with more confidence. End-to-end tests automate UI interactions and can validate the functionality of your apps. To this end, we are announcing Playwright for Python in preview…
Matt Layman: Check Web App Security With Bandit - Building SaaS #74
Link: https://www.mattlayman.com/building-saas/check-web-app-security-with-bandit/
In this episode, I integrated the bandit static analysis tool to do automated security checking of my code before each commit. We talked about pre-commit and how to add in a new hook. After finishing
Link: https://www.mattlayman.com/building-saas/check-web-app-security-with-bandit/
In this episode, I integrated the bandit static analysis tool to do automated security checking of my code before each commit. We talked about pre-commit and how to add in a new hook. After finishing
Matt Layman
Check Web App Security With Bandit - Building SaaS #74
In this episode, I integrated the bandit static analysis tool to do automated security checking of my code before each commit. We talked about pre-commit and how to add in a new hook. After finishing that tool addition, we got deep into Django while removing…
Wing Tips: Multiple Selections in Wing Python IDE
Link: https://wingware.com/blog/multiselection
In this issue of Wing Tips we revisit how to use multiple concurrent
selections in Wing's editor. These can be used to replace all occurrences of some text or
to apply the same edits to any number of
Link: https://wingware.com/blog/multiselection
In this issue of Wing Tips we revisit how to use multiple concurrent
selections in Wing's editor. These can be used to replace all occurrences of some text or
to apply the same edits to any number of
Wingware
Wing Tips: Multiple Selections in Wing Python IDE - Wing Python IDE
Use multiple concurrent selections in Wing Python IDE to apply a single edit
to several parts of your code at once.
to several parts of your code at once.
Andrew Dalke: Simple BitBound ChEMBL similarity search
Link: http://www.dalkescientific.com/writings/diary/archive/2020/10/01/simple_bitbound_search.html
In yesterday's
essay I changed the scan-based
Tanimoto search to an in-memory search and showed that after a
start-up cost of about 5 seconds I was able to do about 2 searches per
second of the 1.9
Link: http://www.dalkescientific.com/writings/diary/archive/2020/10/01/simple_bitbound_search.html
In yesterday's
essay I changed the scan-based
Tanimoto search to an in-memory search and showed that after a
start-up cost of about 5 seconds I was able to do about 2 searches per
second of the 1.9
Dan Stromberg: Fast-paced, seven part intro to python for developers on youtube
Link: http://strombrg.blogspot.com/2020/10/fast-paced-seven-part-intro-to-python.html
Hi folks. I've uploaded a fast-paced, seven part intro to python for developers who already know at least one other turing complete, imperative programming language, to youtube. I hope people find i
Link: http://strombrg.blogspot.com/2020/10/fast-paced-seven-part-intro-to-python.html
Hi folks. I've uploaded a fast-paced, seven part intro to python for developers who already know at least one other turing complete, imperative programming language, to youtube. I hope people find i
Blogspot
Fast-paced, seven part intro to python for developers on youtube
Hi folks. I've uploaded a fast-paced, seven part intro to python for developers who already know at least one other turing complete, imper...
Codementor: How and why I built Web Application for Closed-monitoring patients
Link: https://www.codementor.io/ankit.priyarup/how-and-why-i-built-web-application-for-closed-monitoring-patients-1auyzv40yf
About me
My passion for technology has always been a driving force in learning new things and apply the same in expanding my knowledge in the field. Later, I developed my passion more deeply...
Link: https://www.codementor.io/ankit.priyarup/how-and-why-i-built-web-application-for-closed-monitoring-patients-1auyzv40yf
About me
My passion for technology has always been a driving force in learning new things and apply the same in expanding my knowledge in the field. Later, I developed my passion more deeply...
www.codementor.io
How and why I built Web Application for Closed-monitoring patients | Codementor
About me
My passion for technology has always been a driving force in learning new things and apply the same in expanding my knowledge in the field. Later, I developed my passion more deeply...
My passion for technology has always been a driving force in learning new things and apply the same in expanding my knowledge in the field. Later, I developed my passion more deeply...
Real Python: The Real Python Podcast – Episode #29: Resolving Package Dependencies With the New Version of Pip
Link: https://realpython.com/podcasts/rpp/29/
If you use Python, then you probably have used pip to install additional packages from the Python package index. Part of the magic behind pip is the dependency resolver, and there is a new version of
Link: https://realpython.com/podcasts/rpp/29/
If you use Python, then you probably have used pip to install additional packages from the Python package index. Part of the magic behind pip is the dependency resolver, and there is a new version of
Realpython
Episode #29: Resolving Package Dependencies With the New Version of Pip – The Real Python Podcast
If you use Python, then you probably have used pip to install additional packages from the Python package index. Part of the magic behind pip is the dependency resolver, and there is a new version of it in the latest version of pip. This week on the show…
Python Software Foundation: Join the Python Developers Survey 2020: Share and learn about the community
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/4l7Ayj1RE2Q/join-python-developers-survey-2020.html
This year we are conducting the fourth iteration of the official Python Developers Survey. The goal is to capture the current state of the language and the ecosystem around it. By comparing the resul
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/4l7Ayj1RE2Q/join-python-developers-survey-2020.html
This year we are conducting the fourth iteration of the official Python Developers Survey. The goal is to capture the current state of the language and the ecosystem around it. By comparing the resul
Blogspot
Join the Python Developers Survey 2020: Share and learn about the community
This year we are conducting the fourth iteration of the official Python Developers Survey. The goal is to capture the current state of the ...
Andrew Dalke: Using RDKit BulkTanimotoSimilarity
Link: http://www.dalkescientific.com/writings/diary/archive/2020/10/02/using_rdkit_bulktanimotosimilarity.html
In the first
essay of this series I developed a program to do a Tanimoto
similarity search of chembl_27.fps. I evaluated three different data
types: an RDKit ExplicitBitVect, a GMP mpz integer, and
Link: http://www.dalkescientific.com/writings/diary/archive/2020/10/02/using_rdkit_bulktanimotosimilarity.html
In the first
essay of this series I developed a program to do a Tanimoto
similarity search of chembl_27.fps. I evaluated three different data
types: an RDKit ExplicitBitVect, a GMP mpz integer, and
Python Insider: Python 3.5 is no longer supported
Link: http://feedproxy.google.com/~r/PythonInsider/~3/9YDLIBncL3E/python-35-is-no-longer-supported.html
Python 3.5 is no longer supported. There will be no more bug fixes or security patches for the 3.5 series, and Python 3.5.10 is the last release. The Python core development community recommends tha
Link: http://feedproxy.google.com/~r/PythonInsider/~3/9YDLIBncL3E/python-35-is-no-longer-supported.html
Python 3.5 is no longer supported. There will be no more bug fixes or security patches for the 3.5 series, and Python 3.5.10 is the last release. The Python core development community recommends tha
Blogspot
Python Insider: Python 3.5 is no longer supported
Django Weblog: Django Technical Board Election Results 2020
Link: https://www.djangoproject.com/weblog/2020/oct/01/django-technical-board-election-results-2020/
Greetings!
The winners of the first Django Technical Board Election after the adoption of DEP-10 are:
Andrew Godwin
Adam Johnson
Markus Holtermann
Tom Forbes
James Bennett
The break down of voting w
Link: https://www.djangoproject.com/weblog/2020/oct/01/django-technical-board-election-results-2020/
Greetings!
The winners of the first Django Technical Board Election after the adoption of DEP-10 are:
Andrew Godwin
Adam Johnson
Markus Holtermann
Tom Forbes
James Bennett
The break down of voting w
Python Bytes: #201 Understand git by rebuilding it in Python
Link: https://pythonbytes.fm/episodes/show/201/understand-git-by-rebuilding-it-in-python
<p>Sponsored by us! Support our work through:</p>
<ul>
<li>Our <a href="https://training.talkpython.fm/"><strong>courses at Talk Python Training</strong></a></li>
<li><a href="https://pragprog.com/ti
Link: https://pythonbytes.fm/episodes/show/201/understand-git-by-rebuilding-it-in-python
<p>Sponsored by us! Support our work through:</p>
<ul>
<li>Our <a href="https://training.talkpython.fm/"><strong>courses at Talk Python Training</strong></a></li>
<li><a href="https://pragprog.com/ti
pythonbytes.fm
Understand git by rebuilding it in Python
News and announcements from the Python community for the week of Oct 2nd, 2020
Weekly Python StackOverflow Report: (ccxliv) stackoverflow python report
Link: http://python-weekly.blogspot.com/2020/10/ccxliv-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2020-10-03 15:40:56 GMTChecking dict keys to ensure a required key alwa
Link: http://python-weekly.blogspot.com/2020/10/ccxliv-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2020-10-03 15:40:56 GMTChecking dict keys to ensure a required key alwa
Blogspot
(ccxliv) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2020...
"Morphex's Blogologue": Adding some reporting functionality
Link: http://blogologue.com/blog_entry?id=1601753430X39
I just added some code to the surveil app, the beginnings of what will be a reporting feature.https://github.com/morphex/surveil(report.sh, report.py)I found that the surveil app uses quite a bit of b
Link: http://blogologue.com/blog_entry?id=1601753430X39
I just added some code to the surveil app, the beginnings of what will be a reporting feature.https://github.com/morphex/surveil(report.sh, report.py)I found that the surveil app uses quite a bit of b
Brett Cannon: Unravelling rich comparison operators
Link: https://snarky.ca/unravelling-rich-comparison-operators/
For the next part of my blog series on pulling apart Python's syntactic sugar, I'm going to be tackling rich comparison operators: ==, !=, >, <, >=, <=.For this post I am going to be picking apart the
Link: https://snarky.ca/unravelling-rich-comparison-operators/
For the next part of my blog series on pulling apart Python's syntactic sugar, I'm going to be tackling rich comparison operators: ==, !=, >, <, >=, <=.For this post I am going to be picking apart the
Tall, Snarky Canadian
Unravelling rich comparison operators
For the next part of my blog series on pulling apart Python's syntactic sugar
[https://snarky.ca/tag/syntactic-sugar/], I'm going to be tackling rich comparison
operators: ==, !=, >, <, >=, <=.
For this post I am going to be picking apart the example of…
[https://snarky.ca/tag/syntactic-sugar/], I'm going to be tackling rich comparison
operators: ==, !=, >, <, >=, <=.
For this post I am going to be picking apart the example of…
Talk Python to Me: #284 Modern and fast APIs with FastAPI
Link: https://talkpython.fm/episodes/show/284/modern-and-fast-apis-with-fastapi
As Python 3 has eclipsed the old constrains of Python 2 and web frameworks that adopted them, we have seen a big jump in new frameworks appearing on the scene taking full advantage of things like type
Link: https://talkpython.fm/episodes/show/284/modern-and-fast-apis-with-fastapi
As Python 3 has eclipsed the old constrains of Python 2 and web frameworks that adopted them, we have seen a big jump in new frameworks appearing on the scene taking full advantage of things like type
talkpython.fm
Modern and fast APIs with FastAPI
As Python 3 has eclipsed the old constrains of Python 2 and web frameworks that adopted them, we have seen a big jump in new frameworks appearing on the scene taking full advantage of things like type hints, async and await, and more.
Laurent Luce: Python deque implementation
Link: http://www.laurentluce.com/posts/python-deque-implementation/
Python deque is a double-ended queue. You can append to both ends and pop from both ends. The complexity of those operations amortizes to constant time.We are going to look at the Python 3 internal
Link: http://www.laurentluce.com/posts/python-deque-implementation/
Python deque is a double-ended queue. You can append to both ends and pop from both ends. The complexity of those operations amortizes to constant time.We are going to look at the Python 3 internal
TestDriven.io: Django Stripe Subscriptions
Link: https://testdriven.io/blog/django-stripe-subscriptions/
This tutorial looks at how to handle subscription payments with Django and Stripe.
Link: https://testdriven.io/blog/django-stripe-subscriptions/
This tutorial looks at how to handle subscription payments with Django and Stripe.
testdriven.io
Django Stripe Subscriptions
This tutorial looks at how to handle subscription payments with Django and Stripe.
Mike Driscoll: PyDev of the Week: Frank Valcarcel
Link: https://www.blog.pythonlibrary.org/2020/10/05/pydev-of-the-week-frank-valcarcel/
This week we welcome Frank Valcarcel (@fmdfrank) as our PyDev of the Week! He is the cofounder of Cuttlesoft. If you’d like to see what projects Frank is working on, head on over to Github.
Let’s take
Link: https://www.blog.pythonlibrary.org/2020/10/05/pydev-of-the-week-frank-valcarcel/
This week we welcome Frank Valcarcel (@fmdfrank) as our PyDev of the Week! He is the cofounder of Cuttlesoft. If you’d like to see what projects Frank is working on, head on over to Github.
Let’s take
The Mouse Vs. The Python
PyDev of the Week: Frank Valcarcel - The Mouse Vs. The Python
This week we welcome Frank Valcarcel (@fmdfrank) as our PyDev of the Week! He is the cofounder of Cuttlesoft. If you’d like to see what projects Frank is working on, head on over to Github. Let’s take some time to learn more about Frank! Can you tell us a…
PyCharm: Early Access PyCharm Podcast — Episode 3: The One where Kirill talks about Version Control
Link: http://feedproxy.google.com/~r/Pycharm/~3/VguqZ2JjL9w/
Welcome to Early Access PyCharm, a brand-new podcast that goes behind the scenes of how the PyCharm IDE is made and all the thinking that goes into it. In the upcoming episodes, you will hear from the
Link: http://feedproxy.google.com/~r/Pycharm/~3/VguqZ2JjL9w/
Welcome to Early Access PyCharm, a brand-new podcast that goes behind the scenes of how the PyCharm IDE is made and all the thinking that goes into it. In the upcoming episodes, you will hear from the
JetBrains Blog
Early Access PyCharm Podcast — Episode 3: The One where Kirill talks about Version Control – PyCharm Blog | JetBrains
Welcome to Early Access PyCharm, a brand-new podcast that goes behind the scenes of how the PyCharm IDE is made and all the thinking that goes into it. In the upcoming episodes, you will hear from the