PyCharm: PyCharm 2019.2.1
Link: http://feedproxy.google.com/~r/Pycharm/~3/6du8pSD45fM/
PyCharm 2019.2.1 is available now!
New in this Version
PyCharm now recognizes ctypes Arrays so now you won’t get wrong inspection messages when defining or using such arrays.
We had a bug that made T
Link: http://feedproxy.google.com/~r/Pycharm/~3/6du8pSD45fM/
PyCharm 2019.2.1 is available now!
New in this Version
PyCharm now recognizes ctypes Arrays so now you won’t get wrong inspection messages when defining or using such arrays.
We had a bug that made T
PyCharm Blog
PyCharm 2019.2.1
PyCharm 2019.2.1 is available now! New in this Version PyCharm now recognizes ctypes Arrays so now you won’t get wrong inspection messages when defining or using such arrays. We had a bug that made…
Reuven Lerner: Proud to be sponsoring PyCon 2020
Link: https://lerner.co.il/2019/08/23/proud-to-be-sponsoring-pycon-2020/
I’m delighted to announce that Weekly Python Exercise is a gold sponsor of PyCon 2020, to be held in Pittsburgh, Pennsylvania. PyCon is the largest Python conference in the world, and is both fun an
Link: https://lerner.co.il/2019/08/23/proud-to-be-sponsoring-pycon-2020/
I’m delighted to announce that Weekly Python Exercise is a gold sponsor of PyCon 2020, to be held in Pittsburgh, Pennsylvania. PyCon is the largest Python conference in the world, and is both fun an
Reuven Lerner
Proud to be sponsoring PyCon 2020 — Reuven Lerner
I’m delighted to announce that Weekly Python Exercise is a gold sponsor of PyCon 2020, to be held in Pittsburgh, Pennsylvania. PyCon is the largest Python conference in the world, and is both fun and interesting for Python developers of all experience levels…
Brandon Rhodes: Animating Ptolemy’s Equant with Python, SVG, and CSS
Link: http://rhodesmill.org/brandon/2019/animating-the-equant/
You will recall
my previous blog post
that tried to build the necessary scaffolding
for me to finally write up my 2017 PyCon Ireland keynote
on the structure of the Medieval universe.
It ran into seve
Link: http://rhodesmill.org/brandon/2019/animating-the-equant/
You will recall
my previous blog post
that tried to build the necessary scaffolding
for me to finally write up my 2017 PyCon Ireland keynote
on the structure of the Medieval universe.
It ran into seve
Do the work (Janusworx): Au Revoir DTW
Link: https://janusworx.com/au-revoir-dtw/
Decided to pull the plug on the Do the Work blog.
While I wanted to use it for my tiny, crazy, work in progress thoughts, I find that it was increasingly being subsumed by my new shiny Mastodon.
And a
Link: https://janusworx.com/au-revoir-dtw/
Decided to pull the plug on the Do the Work blog.
While I wanted to use it for my tiny, crazy, work in progress thoughts, I find that it was increasingly being subsumed by my new shiny Mastodon.
And a
Janusworx
Au Revoir DTW
Decided to pull the plug on the Do the Work blog.
While I wanted to use it for my tiny, crazy, work in progress thoughts, I find that it was increasingly being subsumed by my new shiny Mastodon.
And a
While I wanted to use it for my tiny, crazy, work in progress thoughts, I find that it was increasingly being subsumed by my new shiny Mastodon.
And a
Python Circle: Python Script 17: Setting bing image of the day as desktop wallpaper
Link: https://www.pythoncircle.com/post/691/python-script-17-setting-bing-image-of-the-day-as-desktop-wallpaper/
Python Script to Set bing image of the day as desktop wallpaper, Automating the desktop wallpaper change to bing image of day using python code, changing desktop wallpaper using python, downloading an
Link: https://www.pythoncircle.com/post/691/python-script-17-setting-bing-image-of-the-day-as-desktop-wallpaper/
Python Script to Set bing image of the day as desktop wallpaper, Automating the desktop wallpaper change to bing image of day using python code, changing desktop wallpaper using python, downloading an
Python Circle
Python Script 17: Setting bing image of the day as desktop wallpaper
Python Script to Set bing image of the day as desktop wallpaper, Automating the desktop wallpaper change to bing image of day using python code, changing desktop wallpaper using python, downloading an image using python code, updating the desktop wallpaper…
ListenData: Python : 10 Ways to Filter Pandas DataFrame
Link: https://www.listendata.com/2019/07/how-to-filter-pandas-dataframe.html
In this article, we will cover various methods to filter pandas dataframe in Python. Data Filtering is one of the most frequent data manipulation operation. It is similar to WHERE clause in SQL or you
Link: https://www.listendata.com/2019/07/how-to-filter-pandas-dataframe.html
In this article, we will cover various methods to filter pandas dataframe in Python. Data Filtering is one of the most frequent data manipulation operation. It is similar to WHERE clause in SQL or you
ListenData
Python : 10 Ways to Filter Pandas DataFrame
Continuum Analytics Blog: How to Build a Custom Anaconda Installer for R
Link: https://www.anaconda.com/how-to-build-custom-installer-for-r/
A frequent question on the Anaconda Community mailing list is how to package R with conda for distribution. Depending on the use case, one option may be to use conda to move environments. This require
Link: https://www.anaconda.com/how-to-build-custom-installer-for-r/
A frequent question on the Anaconda Community mailing list is how to package R with conda for distribution. Depending on the use case, one option may be to use conda to move environments. This require
Anaconda
How to Build a Custom Anaconda Installer for R - Anaconda
A frequent question we get from the Anaconda Community is, "How do you package R with conda for distribution?" There are two ways you can approach this...
PSF GSoC students blogs: Check in: Final
Link: https://blogs.python-gsoc.org/en/epassaros-blog/check-in-final/
1. What did you do this week?
Polished my final evaluation
Started working in how to add Chianti levels and lines to the atomic files (PR #150)
GSoC'19 has ended!
2. What is coming up next?
I'll k
Link: https://blogs.python-gsoc.org/en/epassaros-blog/check-in-final/
1. What did you do this week?
Polished my final evaluation
Started working in how to add Chianti levels and lines to the atomic files (PR #150)
GSoC'19 has ended!
2. What is coming up next?
I'll k
blogs.python-gsoc.org
Python GSoC - Check in: Final - epassaro's Blog
Check in: Final - 9a1cc1e1-fc68-4ec7-acf6-094feca70005 - Python's Google Summer of Code Blogs Page
Peter Bengtsson: Train your own spell corrector with TextBlob
Link: https://www.peterbe.com/plog/train-your-own-spell-corrector-with-textblob
TextBlob is a wonderful Python library it. It wraps nltk with a really pleasant API. Out of the box, you get a spell-corrector. From the tutorial:
>>> from textblob import TextBlob
>>> b = TextBlob("
Link: https://www.peterbe.com/plog/train-your-own-spell-corrector-with-textblob
TextBlob is a wonderful Python library it. It wraps nltk with a really pleasant API. Out of the box, you get a spell-corrector. From the tutorial:
>>> from textblob import TextBlob
>>> b = TextBlob("
Peterbe
Train your own spell corrector with TextBlob - Peterbe.com
Codementor: How To Learn Any Programming Language Online in 2019
Link: https://www.codementor.io/johnselawsky/how-to-learn-any-programming-language-online-in-2019-y4tkiqf8u
The different programming languages, and where to learn
Link: https://www.codementor.io/johnselawsky/how-to-learn-any-programming-language-online-in-2019-y4tkiqf8u
The different programming languages, and where to learn
www.codementor.io
How To Learn Any Programming Language Online in 2019 | Codementor
The different programming languages, and where to learn
Python Bytes: #144 Are you mocking me? It won't work!
Link: https://pythonbytes.fm/episodes/show/144/are-you-mocking-me-it-won-t-work
Link: https://pythonbytes.fm/episodes/show/144/are-you-mocking-me-it-won-t-work
pythonbytes.fm
Are you mocking me? It won't work!
News and announcements from the Python community for the week of Aug 23rd, 2019
Talk Python to Me: #226 Building Flask APIs for data scientists
Link: https://talkpython.fm/episodes/show/226/building-flask-apis-for-data-scientists
If you're a data scientist, how do you deliver your analysis and your models to the people who need them? A really good option is to serve them over Flask as an API. But there are some special conside
Link: https://talkpython.fm/episodes/show/226/building-flask-apis-for-data-scientists
If you're a data scientist, how do you deliver your analysis and your models to the people who need them? A really good option is to serve them over Flask as an API. But there are some special conside
talkpython.fm
Building Flask APIs for data scientists
If you're a data scientist, how do you deliver your analysis and your models to the people who need them? A really good option is to serve them over Flask as an API. But there are some special considerations you might keep in mind. How should you structure…
Do the work (Janusworx): Generating Markdown from HTML
Link: https://janusworx.com/generating-markdown-from-html/
2019-08-21
Started with the problem,
Need to take in an md file and then generate an html file.
Hint given, use a package from PyPI.
Decided to use the Markdown package from PyPI.
Looks good to me
Link: https://janusworx.com/generating-markdown-from-html/
2019-08-21
Started with the problem,
Need to take in an md file and then generate an html file.
Hint given, use a package from PyPI.
Decided to use the Markdown package from PyPI.
Looks good to me
Janusworx
Generating Markdown from HTML
2019-08-21
Started with the problem,
Need to take in an md file and then generate an html file.
Hint given, use a package from PyPI.
Decided to use the Markdown package from PyPI.
Looks good to me
Started with the problem,
Need to take in an md file and then generate an html file.
Hint given, use a package from PyPI.
Decided to use the Markdown package from PyPI.
Looks good to me
PSF GSoC students blogs: Thirteenth week of GSoC: Final Checkin
Link: https://blogs.python-gsoc.org/en/sappelhoffs-blog/thirteenth-week-of-gsoc-final-checkin/
1. What did you do this week?
I have compiled a list for week 13 in my changelog here: https://github.com/sappelhoff/gsoc2019/blob/master/changelog.md#week-13
This was the final week of my GSoC 2019.
Link: https://blogs.python-gsoc.org/en/sappelhoffs-blog/thirteenth-week-of-gsoc-final-checkin/
1. What did you do this week?
I have compiled a list for week 13 in my changelog here: https://github.com/sappelhoff/gsoc2019/blob/master/changelog.md#week-13
This was the final week of my GSoC 2019.
blogs.python-gsoc.org
Python GSoC - Thirteenth week of GSoC: Final Checkin - sappelhoff's Blog
Thirteenth week of GSoC: Final Checkin - 77cac5a5-1782-4292-b314-611adf450553 - Python's Google Summer of Code Blogs Page
Catalin George Festila: Python 3.7.3 : Using the flask - part 015.
Link: http://python-catalin.blogspot.com/2019/08/python-373-using-flask-part-015.html
In this tutorial, I will show you how to migrate using the Database Migrations in flask project.
Because my laptop is gone I use my old Linux.
First you need to install these python modules with --use
Link: http://python-catalin.blogspot.com/2019/08/python-373-using-flask-part-015.html
In this tutorial, I will show you how to migrate using the Database Migrations in flask project.
Because my laptop is gone I use my old Linux.
First you need to install these python modules with --use
Blogspot
Python 3.7.3 : Using the flask - part 015.
News , articles and tutorials about programming with python with source code and examples under Windows and Linux operating systems.
PSF GSoC students blogs: Final Blog Post GSOC19
Link: https://blogs.python-gsoc.org/en/tomasbs-blog/final-blog-post-gsoc19/
Hi everyone!
It’s time for the last GSOC blog. I must say that it has been nice working with all of you. I have learned a lot and faced many professional challenges. In the end it was worth it. I ho
Link: https://blogs.python-gsoc.org/en/tomasbs-blog/final-blog-post-gsoc19/
Hi everyone!
It’s time for the last GSOC blog. I must say that it has been nice working with all of you. I have learned a lot and faced many professional challenges. In the end it was worth it. I ho
blogs.python-gsoc.org
Python GSoC - Final Blog Post GSOC19 - tomasb's Blog
Final Blog Post GSOC19 - 885c4ccc-ba4b-467a-a9d1-1c9aad84bf21 - Python's Google Summer of Code Blogs Page
PSF GSoC students blogs: Multi-touch update
Link: https://blogs.python-gsoc.org/en/treamouss-blog/multi-touch-update/
Alas, time has caught up to me. I will not be able to get the touch trackball controls working in time for the submission deadline. Instead, I need to use this remaining time to package up my work and
Link: https://blogs.python-gsoc.org/en/treamouss-blog/multi-touch-update/
Alas, time has caught up to me. I will not be able to get the touch trackball controls working in time for the submission deadline. Instead, I need to use this remaining time to package up my work and
blogs.python-gsoc.org
Python GSoC - Multi-touch update - treamous's Blog
Multi-touch update - 35599c85-2832-4f44-8c82-014f9d711e14 - Python's Google Summer of Code Blogs Page
Weekly Python StackOverflow Report: (cxci) stackoverflow python report
Link: http://python-weekly.blogspot.com/2019/08/cxci-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-08-24 20:58:57 GMTConcatenation of the result of a function with a
Link: http://python-weekly.blogspot.com/2019/08/cxci-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-08-24 20:58:57 GMTConcatenation of the result of a function with a
Blogspot
(cxci) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2019...
PSF GSoC students blogs: Week #12
Link: https://blogs.python-gsoc.org/en/js94s-blog/week-12/
I unsuccessfully tried to resolve the issue with dimensions in NMF. The main problem that I was facing was with specifying the correct dimensions for matrix operations within NMF algorithm and I have
Link: https://blogs.python-gsoc.org/en/js94s-blog/week-12/
I unsuccessfully tried to resolve the issue with dimensions in NMF. The main problem that I was facing was with specifying the correct dimensions for matrix operations within NMF algorithm and I have
blogs.python-gsoc.org
Python GSoC - Week #12 - js94's Blog
Week #12 - d8326b32-231b-48be-87d1-73d1c442aa9e - Python's Google Summer of Code Blogs Page
PSF GSoC students blogs: GSoC weekly blog
Link: https://blogs.python-gsoc.org/en/kaybs-blog/gsoc-weekly-blog-1/
Hello everyone!
This week is the second last week and next week we will have our final evaluations. This week I just fixed and improved my previous code.
The other student was working on the Icons ch
Link: https://blogs.python-gsoc.org/en/kaybs-blog/gsoc-weekly-blog-1/
Hello everyone!
This week is the second last week and next week we will have our final evaluations. This week I just fixed and improved my previous code.
The other student was working on the Icons ch
blogs.python-gsoc.org
Python GSoC - GSoC weekly blog - kayb's Blog
GSoC weekly blog - 0230731e-2f61-4d52-8666-8d1445043980 - Python's Google Summer of Code Blogs Page