Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Doing Math with Python: Doing Math with Python in Python Humble Bundle

Link: http://doingmathwithpython.github.io/humble-bundle-python.html

"Doing Math with Python" is part of No Starch Press's Python Humble Bundle.
Of course, you get No Starch Press's other excellent Python books as part of the bundle. It's still on for the next 10 days
PSF GSoC students blogs: Coding week #11

Link: https://blogs.python-gsoc.org/en/mehaksachdevas-blog/coding-week-11/

What did I do this week?
This week I attempted to understand and code the out of sample predictions for the MGWR model which is the third part of my proposal. After a discussion with the mentors I rea
PSF GSoC students blogs: Coding week #12

Link: https://blogs.python-gsoc.org/en/mehaksachdevas-blog/coding-week-12/

What did I do this week?
This week I compiled all the code and experimentation notebooks into a Github web page to be submitted as a part of the final work product for GSoC. The cover page includes a
Janusworx: List Expressions, A Story in 3 Pictures

Link: https://janusworx.com/list-expressions-a-story-in-3-pictures/

1. You take, this here list.


2. Chew on it.


3. And spit it out, just like a cow.
Janusworx: List Comprehensions, A Story in 3 Pictures

Link: https://janusworx.com/list-comprehensions-a-story-in-3-pictures/

1. You take, this here list.


2. Chew on it.


3. And spit it out, just like a cow.


I reposted this, because I called comprehensions, expressions in the older post. Sorry!
Kushal Das: A new tool to render my blog

Link: https://kushaldas.in/posts/a-new-tool-to-render-my-blog.html



Back in 2013, I wrote Shonku in
golang. It helped me in two important things:

Having a static blogging tool which works (worked for the last 5 years).
To help me to learn basics on golang.

Now, I
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
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
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
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
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
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
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("
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
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