Mike C. Fletcher: TTFQuery 2.0.0b1 Up on PyPI
Link: http://blog.vrplumber.com/b/2018/08/10/ttfquery-200b1-pypi/
TTFQuery has a new release up. This release has a bunch of small breaking changes in it, specifically the command line demonstration tools now work differently. It also is now Python 3 ready (i.e. one
Link: http://blog.vrplumber.com/b/2018/08/10/ttfquery-200b1-pypi/
TTFQuery has a new release up. This release has a bunch of small breaking changes in it, specifically the command line demonstration tools now work differently. It also is now Python 3 ready (i.e. one
Vrplumber
Plumbing Life's Depths - TTFQuery 2.0.0b1 Up on PyPI
TTFQuery has a new release up. This release has a bunch of small breaking changes in it, specifically the command line demonstration tools now work differently. It also is now Python 3 ready (i.e. one more package should now be out of the way to get OpenGLContext…
Codementor: Understanding Python Dataclasses — Part 1
Link: https://www.codementor.io/shikharchauhan816/understanding-python-dataclasses-part-1-m2xq1bm2u
Python 3.7 introduces new dataclasses.
In this post i discuss how they work, and how you can suit them to your use case.
Link: https://www.codementor.io/shikharchauhan816/understanding-python-dataclasses-part-1-m2xq1bm2u
Python 3.7 introduces new dataclasses.
In this post i discuss how they work, and how you can suit them to your use case.
www.codementor.io
Understanding Python Dataclasses — Part 1 | Codementor
Python 3.7 introduces new dataclasses.
In this post i discuss how they work, and how you can suit them to your use case.
In this post i discuss how they work, and how you can suit them to your use case.
PyCharm: PyCharm 2018.2.2 RC
Link: http://feedproxy.google.com/~r/Pycharm/~3/MRFOXLtLuw0/
PyCharm 2018.2.2 Release Candidate is now available, with some small improvements. Get it now from our Confluence page
New in This Version
Some improvements to our pipenv support: if the pipfile spec
Link: http://feedproxy.google.com/~r/Pycharm/~3/MRFOXLtLuw0/
PyCharm 2018.2.2 Release Candidate is now available, with some small improvements. Get it now from our Confluence page
New in This Version
Some improvements to our pipenv support: if the pipfile spec
PyCharm Blog
PyCharm 2018.2.2 RC
PyCharm 2018.2.2 Release Candidate is now available, with some small improvements. Get it now from our Confluence page New in This Version Some improvements to our pipenv support: if the pipfile sp…
Artem Golubin: How Python saves memory when storing strings
Link: http://rushter.com/blog/python-strings-and-memory/
Since Python 3, the str type uses Unicode representation. Unicode strings can take up to 4 bytes per character depending on the encoding, which sometimes can be expensive from a memory perspective.
T
Link: http://rushter.com/blog/python-strings-and-memory/
Since Python 3, the str type uses Unicode representation. Unicode strings can take up to 4 bytes per character depending on the encoding, which sometimes can be expensive from a memory perspective.
T
Artem Golubin
How Python saves memory when storing strings | Artem Golubin
Peter Bengtsson: Quick dog-piling (aka stampeding herd) URL stresstest
Link: https://www.peterbe.com/plog/quick-dog-piling-url-stresstest
Whenever you want to quickly bombard a URL with some concurrent traffic, you can use this:
import random
import time
import requests
import concurrent.futures
def _get_size(url):
sleep = rand
Link: https://www.peterbe.com/plog/quick-dog-piling-url-stresstest
Whenever you want to quickly bombard a URL with some concurrent traffic, you can use this:
import random
import time
import requests
import concurrent.futures
def _get_size(url):
sleep = rand
Peterbe
Quick dog-piling (aka stampeding herd) URL stresstest
Stuff in Peter's head
Python Does What?!: python needs a frozenlist
Link: http://www.pythondoeswhat.com/2018/08/python-needs-frozenlist.html
>>> set() == frozenset()True>>> [] == ()False
Link: http://www.pythondoeswhat.com/2018/08/python-needs-frozenlist.html
>>> set() == frozenset()True>>> [] == ()False
Pythondoeswhat
python needs a frozenlist
>>> set() == frozenset() True >>> [] == () False
Kay Hayen: Nuitka this week #3
Link: http://nuitka.net/posts/nuitka-this-week-3.html
Contents
New Series Rationale
Twitter
Goto Generators
Hotfixes
Plans
New Series Rationale
This is working out well so far. I think driving more attention at the things
that are going on can only
Link: http://nuitka.net/posts/nuitka-this-week-3.html
Contents
New Series Rationale
Goto Generators
Hotfixes
Plans
New Series Rationale
This is working out well so far. I think driving more attention at the things
that are going on can only
Nuitka Home
Nuitka this week #3
Contents
New Series Rationale
Twitter
Goto Generators
Hotfixes
Plans
New Series Rationale
This is working out well so far. I think driving more attention at the things
that are going on can only b
New Series Rationale
Goto Generators
Hotfixes
Plans
New Series Rationale
This is working out well so far. I think driving more attention at the things
that are going on can only b
Codementor: Hundred sessions on Codementor and how I feel about it!
Link: https://www.codementor.io/anujmenta/hundred-sessions-on-codementor-and-how-i-feel-about-it-mb73fod79
One hundred sessions on Codementor made me share my experiences so far as a Mentor.
Link: https://www.codementor.io/anujmenta/hundred-sessions-on-codementor-and-how-i-feel-about-it-mb73fod79
One hundred sessions on Codementor made me share my experiences so far as a Mentor.
www.codementor.io
Hundred sessions on Codementor and how I feel about it! | Codementor
One hundred sessions on Codementor made me share my experiences so far as a Mentor.
Weekly Python StackOverflow Report: (cxxxviii) stackoverflow python report
Link: http://python-weekly.blogspot.com/2018/08/cxxxviii-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2018-08-11 16:23:07 GMTIs there a way to "fork" a list in two based on
Link: http://python-weekly.blogspot.com/2018/08/cxxxviii-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2018-08-11 16:23:07 GMTIs there a way to "fork" a list in two based on
Blogspot
(cxxxviii) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2018...
Codementor: Python Environment Management with Conda (Python 2 + 3, Using Multiple Versions of Python)
Link: https://www.codementor.io/mgalarny/python-environment-management-with-conda-python-2-3-using-multiple-versions-of-python-mb8wraoyl
While this section of the post was largely taken and improved from stackoverflow, I feel like it is important to go over how and go over some technical issues people run into. The main idea is to have
Link: https://www.codementor.io/mgalarny/python-environment-management-with-conda-python-2-3-using-multiple-versions-of-python-mb8wraoyl
While this section of the post was largely taken and improved from stackoverflow, I feel like it is important to go over how and go over some technical issues people run into. The main idea is to have
www.codementor.io
Python Environment Management with Conda (Python 2 + 3, Using Multiple Versions of Python) | Codementor
While this section of the post was largely taken and improved from stackoverflow, I feel like it is important to go over how and go over some technical issues people run into. The main idea is to have multiple ipython kernels. The package nb_conda_kernels…
Codementor: Classification of data structure
Link: https://www.codementor.io/sabhiraj4c/classification-of-data-structure-mavby0lof
At the present world everythings are realiable on one another,either it's for surviving or it's for working.One has to take help from another to complete it's task.
As we dicussed about the...
Link: https://www.codementor.io/sabhiraj4c/classification-of-data-structure-mavby0lof
At the present world everythings are realiable on one another,either it's for surviving or it's for working.One has to take help from another to complete it's task.
As we dicussed about the...
www.codementor.io
Classification of data structure | Codementor
At the present world everythings are realiable on one another,either it's for surviving or it's for working.One has to take help from another to complete it's task.
As we dicussed about the...
As we dicussed about the...
Mike C. Fletcher: PyOpenGL 3.1.3b1 up on PyPI
Link: http://blog.vrplumber.com/b/2018/08/12/pyopengl-313b1-pypi/
So there's a beta release of PyOpenGL 3.1.3b1 up on PyPI. It needs testing on Mac and Win64/32 if possible. You should be able to install it with:
pip install "pyopengl==3.1.3b1" "pyopengl-accelerate=
Link: http://blog.vrplumber.com/b/2018/08/12/pyopengl-313b1-pypi/
So there's a beta release of PyOpenGL 3.1.3b1 up on PyPI. It needs testing on Mac and Win64/32 if possible. You should be able to install it with:
pip install "pyopengl==3.1.3b1" "pyopengl-accelerate=
Vrplumber
Plumbing Life's Depths - PyOpenGL 3.1.3b1 up on PyPI
So there's a beta release of PyOpenGL 3.1.3b1 up on PyPI. It needs testing on Mac and Win64/32 if possible. You should be able to install it with: pip install "pyopengl==3.1.3b1" "pyopengl-accelerate==3.1.3b1" The biggest change being that it should work…
Will McGugan: PyFilesystem 2.1.0 adds concurrent uploads / downloads and support for globbing
Link: https://www.willmcgugan.com/blog/tech/post/pyfilesystem-210-adds-concurrent-uploads-downloads-and-support-for-globbing/
I've released PyFilesystem 2.1.0.
This version is the accumulation of many minor revisions, with multiple fixes, enhancements and some interesting new features. We also have nicer doc strings and Mypy
Link: https://www.willmcgugan.com/blog/tech/post/pyfilesystem-210-adds-concurrent-uploads-downloads-and-support-for-globbing/
I've released PyFilesystem 2.1.0.
This version is the accumulation of many minor revisions, with multiple fixes, enhancements and some interesting new features. We also have nicer doc strings and Mypy
Will McGugan Tech
PyFilesystem 2.1.0 adds concurrent uploads / downloads and support for globbing
Stable API and some interesting new features...
Bhishan Bhandari: Brief Introduction to Google APIs(Sheets, Slides, Drive)
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/PwE-_g1Of3s/
The intentions of this post is to familiarize usage of Google APIs with Python. Google services are cool and you can build products and services around it. We will see through examples how you can use
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/PwE-_g1Of3s/
The intentions of this post is to familiarize usage of Google APIs with Python. Google services are cool and you can build products and services around it. We will see through examples how you can use
The Tara Nights
Brief Introduction to Google APIs(Sheets, Slides, Drive)
The intentions of this post is to familiarize usage of Google APIs with Python. Google services are cool and you can build products and services around it. We will see through examples how you can use various google services such as spreadsheet, slides and…
Podcast.__init__: The Masonite Web Framework With Joe Mancuso
Link: https://www.podcastinit.com/masonite-with-joe-mancuso-episode-174/
Masonite is an ambitious new web framework that draws inspiration from many other successful projects in other languages. In this episode Joe Mancuso, the primary author and maintainer, explains his g
Link: https://www.podcastinit.com/masonite-with-joe-mancuso-episode-174/
Masonite is an ambitious new web framework that draws inspiration from many other successful projects in other languages. In this episode Joe Mancuso, the primary author and maintainer, explains his g
Podcast.__init__('Python')
The Masonite Web Framework With Joe Mancuso - Episode 174
Masonite is an ambitious new web framework that draws inspiration from many other successful projects in other languages. In this episode Joe Mancuso, the primary author and maintainer, explains his goal of unseating Django from its position of prominence…
Codementor: Headless Web Scraping in Python with Beautiful Soup 4
Link: https://www.codementor.io/alibabacloud/headless-web-scraping-in-python-with-beautiful-soup-4-mctwzyskk
By Mark Andrews, Alibaba Cloud Tech Share Author. Tech Share is Alibaba Cloud's incentive program to encourage the sharing of technical knowledge and best practices within the cloud...
Link: https://www.codementor.io/alibabacloud/headless-web-scraping-in-python-with-beautiful-soup-4-mctwzyskk
By Mark Andrews, Alibaba Cloud Tech Share Author. Tech Share is Alibaba Cloud's incentive program to encourage the sharing of technical knowledge and best practices within the cloud...
www.codementor.io
Headless Web Scraping in Python with Beautiful Soup 4 | Codementor
By Mark Andrews, Alibaba Cloud Tech Share Author. Tech Share is Alibaba Cloud's incentive program to encourage the sharing of technical knowledge and best practices within the cloud...
Toshio Kuratomi: Voluptuous and Python-3.4 Enums
Link: https://anonbadger.wordpress.com/2018/08/12/voluptuous-and-python-3-4-enums/
Last year I played around with using jsonschema for validating some data that I was reading into my Python programs. The API for the library was straightforward but the schema turned out to be a pret
Link: https://anonbadger.wordpress.com/2018/08/12/voluptuous-and-python-3-4-enums/
Last year I played around with using jsonschema for validating some data that I was reading into my Python programs. The API for the library was straightforward but the schema turned out to be a pret
The Ramblings
Voluptuous and Python-3.4 Enums
Last year I played around with using jsonschema for validating some data that I was reading into my Python programs. The API for the library was straightforward but the schema turned out to be a p…
Mike Driscoll: PyDev of the Week: Lovely ricel Banquil
Link: http://www.blog.pythonlibrary.org/2018/08/13/pydev-of-the-week-lovely-ricel-banquil/
This week we welcome Lovely ricel Banquil (AKA Banx) as our PyDev of the Week. Banx is a tester by trade and recently presented a talk at PyCon Thailand. Let’s spend some time getting to know Lovely b
Link: http://www.blog.pythonlibrary.org/2018/08/13/pydev-of-the-week-lovely-ricel-banquil/
This week we welcome Lovely ricel Banquil (AKA Banx) as our PyDev of the Week. Banx is a tester by trade and recently presented a talk at PyCon Thailand. Let’s spend some time getting to know Lovely b
Red Hat Developers: How to install Python 3 on RHEL
Link: https://developers.redhat.com/blog/2018/08/13/install-python3-rhel/
This article shows how to install Python 3, pip, venv, virtualenv, and pipenv on Red Hat Enterprise Linux 7. After following the steps in this article, you should be in a good position to follow many
Link: https://developers.redhat.com/blog/2018/08/13/install-python3-rhel/
This article shows how to install Python 3, pip, venv, virtualenv, and pipenv on Red Hat Enterprise Linux 7. After following the steps in this article, you should be in a good position to follow many
Red Hat Developer
How to install Python 3 on Red Hat Enterprise Linux | Red Hat Developer
This article shows how to install Python 3, pip, venv, virtualenv, and pipenv on Red Hat Enterprise Linux 7. After following the steps in this article, you
Mike Driscoll: Only 2 Days Left for Jupyter Notebook 101
Link: http://www.blog.pythonlibrary.org/2018/08/13/only-2-days-left-for-jupyter-notebook-101/
There’s only two days left to join the Kickstarter for my latest book, Jupyter Notebook 101. It’s also one of the best times to help out as you get to help shape the book right now. I always take my r
Link: http://www.blog.pythonlibrary.org/2018/08/13/only-2-days-left-for-jupyter-notebook-101/
There’s only two days left to join the Kickstarter for my latest book, Jupyter Notebook 101. It’s also one of the best times to help out as you get to help shape the book right now. I always take my r