Reuven Lerner: Understanding Python slices
Link: https://blog.lerner.co.il/understanding-python-slices/
Let’s say that you have a Python string, and want to grab a substring from it. The best way to do so is with a “slice”:
>>> s = 'abcdefghij'>>> print(s[3:8])defgh
In the above code, we’ve defined a st
Link: https://blog.lerner.co.il/understanding-python-slices/
Let’s say that you have a Python string, and want to grab a substring from it. The best way to do so is with a “slice”:
>>> s = 'abcdefghij'>>> print(s[3:8])defgh
In the above code, we’ve defined a st
Reuven Lerner's Blog
Understanding Python slices - Reuven Lerner's Blog
Let’s say that you have a Python string, and want to grab a substring from it. The best way to do so is with a “slice”: >>> s = 'abcdefghij'>>> print(s[3:8])defgh In the above code, we’ve defined a string. We’ve then asked for the string to be returned, starting…
Podcast.__init__: How To Include Redis In Your Application Architecture
Link: https://www.pythonpodcast.com/redis-python-application-architecture-episode-201/
The Redis database recently celebrated its 10th birthday. In that time it has earned a well-earned reputation for speed, reliability, and ease of use. Python developers are fortunate to have a well-bu
Link: https://www.pythonpodcast.com/redis-python-application-architecture-episode-201/
The Redis database recently celebrated its 10th birthday. In that time it has earned a well-earned reputation for speed, reliability, and ease of use. Python developers are fortunate to have a well-bu
The Python Podcast.__init__
The Python Podcast.__init__: How To Include Redis In Your Application Architecture
An interview about the ways that Redis is used by Python developers
Wingware News: Wing Python IDE 6.1.5
Link: https://wingware.com/news/2019-03-04
Wing 6.1.5 is now available. It improves code intelligence for extension
modules on remote hosts, adds a debug status icon to the debug process popup menus,
checks for conflicts before introducing na
Link: https://wingware.com/news/2019-03-04
Wing 6.1.5 is now available. It improves code intelligence for extension
modules on remote hosts, adds a debug status icon to the debug process popup menus,
checks for conflicts before introducing na
Wingware
Wing Python IDE 6.1.5 - Wing Python IDE
Wing 6.1.5 is now available. It improves code intelligence for extension
modules on remote hosts, adds a debug status icon to the debug process popup menus,
checks for conflicts before introducing names with refactor operations,
improves support for py.exe…
modules on remote hosts, adds a debug status icon to the debug process popup menus,
checks for conflicts before introducing names with refactor operations,
improves support for py.exe…
Codementor: “Everything is Awesome”: Python Meets Plastic Bricks
Link: https://www.codementor.io/codyjackson891/everything-is-awesome-python-meets-plastic-bricks-sqws5bqnw
Bricks-in-the-Loop is a learning environment that combines LEGO blocks with control system and IoT technologies.
Link: https://www.codementor.io/codyjackson891/everything-is-awesome-python-meets-plastic-bricks-sqws5bqnw
Bricks-in-the-Loop is a learning environment that combines LEGO blocks with control system and IoT technologies.
www.codementor.io
“Everything is Awesome”: Python Meets Plastic Bricks | Codementor
Bricks-in-the-Loop is a learning environment that combines LEGO blocks with control system and IoT technologies.
Ian Ozsvald: Second Successfully Delivering Data Science Projects just over
Link: https://ianozsvald.com/2019/03/04/second-successfully-delivering-data-science-projects-just-over/
I ran the second iteration of my Successfully Delivering Data Science Projects course last Friday to this happy group, we had a lovely day and good conversation has continued in the teaching slack ove
Link: https://ianozsvald.com/2019/03/04/second-successfully-delivering-data-science-projects-just-over/
I ran the second iteration of my Successfully Delivering Data Science Projects course last Friday to this happy group, we had a lovely day and good conversation has continued in the teaching slack ove
Entrepreneurial Geekiness
Second Successfully Delivering Data Science Projects just over
I ran the second iteration of my Successfully Delivering Data Science Projects course last Friday to this happy group, we had a lovely day and good conversation has continued in the teaching slack over the weekend:Topics covered included the design and derisking…
Carl Chenet: You Should Not Ignore the Mastodon Social Network Any More
Link: https://carlchenet.com/do-not-ignore-the-mastodon-social-network/
The Mastodon social network reached 2 million users some days ago, almost doubling its number of users in one year.
The Mastodon Growth
When I joined the Mastodon social network 2 years ago, I was in
Link: https://carlchenet.com/do-not-ignore-the-mastodon-social-network/
The Mastodon social network reached 2 million users some days ago, almost doubling its number of users in one year.
The Mastodon Growth
When I joined the Mastodon social network 2 years ago, I was in
Carl Chenet's Blog
You Should Not Ignore the Mastodon Social Network Any More - Carl Chenet's Blog
PyBites: Building a Python Tips API with Django REST Framework and Deploying it to Digital Ocean
Link: https://pybit.es/django-rest-tips-api-digital-ocean.html
In this article I will show you how to build a simple API for our growing collection of Python tips:
First we make a simple Django app, defining the model.
Next we use Django REST Framework to make a
Link: https://pybit.es/django-rest-tips-api-digital-ocean.html
In this article I will show you how to build a simple API for our growing collection of Python tips:
First we make a simple Django app, defining the model.
Next we use Django REST Framework to make a
PyBites
Building A Python Tips API With Django REST Framework And Deploying It To Digital Ocean - PyBites
In this article I will show you how to build a simple API for our growing collection of Python tips. First we make a simple Django app, defining the model. Next we use Django REST Framework to make an API supporting common CRUD operations. Then we will test…
Codementor: Avoid Django’s GenericForeignKey
Link: https://www.codementor.io/lplant98/avoid-django-s-genericforeignkey-srppxip6i
Why Django's GenericForeignKey is (usually) a bad idea, and, more importantly, the superior alternatives you can use.
Link: https://www.codementor.io/lplant98/avoid-django-s-genericforeignkey-srppxip6i
Why Django's GenericForeignKey is (usually) a bad idea, and, more importantly, the superior alternatives you can use.
www.codementor.io
Avoid Django’s GenericForeignKey | Codementor
Why Django's GenericForeignKey is (usually) a bad idea, and, more importantly, the superior alternatives you can use.
Stack Abuse: Introduction to Python Decorators
Link: https://stackabuse.com/introduction-to-python-decorators/
Introduction
In Python, a decorator is a design pattern that we can use to add new functionality to an already existing object without the need to modify its structure. A decorator should be called di
Link: https://stackabuse.com/introduction-to-python-decorators/
Introduction
In Python, a decorator is a design pattern that we can use to add new functionality to an already existing object without the need to modify its structure. A decorator should be called di
Stack Abuse
Introduction to Python Decorators
In Python, a decorator is a design pattern that we can use to add new functionality to an already existing object without the need to modify its structure. A d...
PyCon: PyCon 2019 Talks, Charlas, Posters, and Education Summit Schedules
Link: https://pycon.blogspot.com/2019/03/pycon-2019-talks-charlas-posters-and.html
With great excitement, we're happy to announce the much anticipated (and admittedly delayed) lineups for PyCon 2019's Talks, Charlas, Posters Session, and Education Summit.2019 Talks and Charlas Sched
Link: https://pycon.blogspot.com/2019/03/pycon-2019-talks-charlas-posters-and.html
With great excitement, we're happy to announce the much anticipated (and admittedly delayed) lineups for PyCon 2019's Talks, Charlas, Posters Session, and Education Summit.2019 Talks and Charlas Sched
Blogspot
PyCon 2019 Talks, Charlas, Posters, and Education Summit Schedules
With great excitement, we're happy to announce the much anticipated (and admittedly delayed) lineups for PyCon 2019's Talks, Charlas, Poster...
Python Bytes: #120 AWS, MongoDB, and the Economic Realities of Open Source and more
Link: https://pythonbytes.fm/episodes/show/120/aws-mongodb-and-the-economic-realities-of-open-source-and-more
Link: https://pythonbytes.fm/episodes/show/120/aws-mongodb-and-the-economic-realities-of-open-source-and-more
pythonbytes.fm
AWS, MongoDB, and the Economic Realities of Open Source and more
News and announcements from the Python community for the week of Mar 5th, 2019
PyCoder’s Weekly: Issue #358 (March 5, 2019)
Link: https://pycoders.com/issues/358
#358 – MARCH 5, 2019 View in Browser » PEP 584: Adding + and - Operators to the Built-In Dict Class This PEP suggests adding merge + and difference - operators to the built-in dict class. The me
Link: https://pycoders.com/issues/358
#358 – MARCH 5, 2019 View in Browser » PEP 584: Adding + and - Operators to the Built-In Dict Class This PEP suggests adding merge + and difference - operators to the built-in dict class. The me
Pycoders
PyCoder’s Weekly | Issue #358
Issue #358 of the PyCoder’s Weekly newsletter, published March 5, 2019.
Anarcat: February 2019 report: LTS, HTML mail, new phone and new job
Link: https://anarc.at/blog/2019-03-05-report/
Debian Long Term Support (LTS)
This is my monthly Debian LTS report.
This is my final LTS report. I have found other work and will
unfortunately not be able to continue working on the LTS project in
Link: https://anarc.at/blog/2019-03-05-report/
Debian Long Term Support (LTS)
This is my monthly Debian LTS report.
This is my final LTS report. I have found other work and will
unfortunately not be able to continue working on the LTS project in
codingdirectional: The final part of the Forex application project
Link: http://codingdirectional.info/2019/03/06/the-final-part-of-the-forex-application-project/
Hello and welcome back, as I have mentioned earlier I would like to create a method which will convert USD/world currency pairs to world currency pair/world currency pair before closing up this Forex
Link: http://codingdirectional.info/2019/03/06/the-final-part-of-the-forex-application-project/
Hello and welcome back, as I have mentioned earlier I would like to create a method which will convert USD/world currency pairs to world currency pair/world currency pair before closing up this Forex
Real Python: Using PyInstaller to Easily Distribute Python Applications
Link: https://realpython.com/pyinstaller-python/
Are you jealous of Go developers building an executable and easily shipping it to users? Wouldn’t it be great if your users could run your application without installing anything? That is the dream, a
Link: https://realpython.com/pyinstaller-python/
Are you jealous of Go developers building an executable and easily shipping it to users? Wouldn’t it be great if your users could run your application without installing anything? That is the dream, a
Realpython
Using PyInstaller to Easily Distribute Python Applications – Real Python
In this step-by-step tutorial, you'll learn how to use PyInstaller to turn your Python application into an executable with no dependencies or installation required. This is great if you want to distribute applications to users who may or may not be Python…
gamingdirectional: Edit the level 2 game map
Link: http://gamingdirectional.com/blog/2019/03/06/edit-the-level-2-game-map/
It has been a day since the last post, I am really busy recently working on the offline business so I really need to divide the time equally for both the online and the offline business. In this chapt
Link: http://gamingdirectional.com/blog/2019/03/06/edit-the-level-2-game-map/
It has been a day since the last post, I am really busy recently working on the offline business so I really need to divide the time equally for both the online and the offline business. In this chapt
Gaming Directional
Edit the level 2 game map
Edit the game map for the pygame project
Stack Abuse: Introduction to Python OS Module
Link: https://stackabuse.com/introduction-to-python-os-module/
In this tutorial, you will learn how to work along with Python's os module.
Table of Contents
Introduction
Basic Functions
List Files / Folders in Current Working Directory
Change working Direc
Link: https://stackabuse.com/introduction-to-python-os-module/
In this tutorial, you will learn how to work along with Python's os module.
Table of Contents
Introduction
Basic Functions
List Files / Folders in Current Working Directory
Change working Direc
Stack Abuse
Introduction to Python OS Module
In this tutorial, you will learn how to work along with Python's os module.
Table of Contents
1. Introduction
2. Basic Functions
3. List Files / Folders in Current Working Directory
4. Change working Directory
5. Create Single and Nested Directory…
Table of Contents
1. Introduction
2. Basic Functions
3. List Files / Folders in Current Working Directory
4. Change working Directory
5. Create Single and Nested Directory…
PyCharm: PyCharm 2019.1 EAP 7
Link: http://feedproxy.google.com/~r/Pycharm/~3/cZtoXkdMvN0/
All-new direct Jupyter Notebook editing and running support, type checking on assignment, a new JavaScript debug console, and more features are already available in this week’s Early Access Program (E
Link: http://feedproxy.google.com/~r/Pycharm/~3/cZtoXkdMvN0/
All-new direct Jupyter Notebook editing and running support, type checking on assignment, a new JavaScript debug console, and more features are already available in this week’s Early Access Program (E
PyCharm Blog
PyCharm 2019.1 EAP 7
All-new direct Jupyter Notebook editing and running support, type checking on assignment, a new JavaScript debug console, and more features are already available in this week’s Early Access P…
Mike Driscoll: Book Review: Serious Python
Link: http://www.blog.pythonlibrary.org/2019/03/06/book-review-serious-python/
No Starch Press asked me to do a technical review of one of their upcoming books, “Serious Python: Black-Belt Advice on Deployment, Scalability, Testing, and More” by Julien Danjou last year. I had ne
Link: http://www.blog.pythonlibrary.org/2019/03/06/book-review-serious-python/
No Starch Press asked me to do a technical review of one of their upcoming books, “Serious Python: Black-Belt Advice on Deployment, Scalability, Testing, and More” by Julien Danjou last year. I had ne
gamingdirectional: The winning scene of the game
Link: http://gamingdirectional.com/blog/2019/03/07/the-winning-scene-of-the-game/
Hello and welcome back, in this article we will create the winning scene for this pygame project. Basically, we have already created those winning scene mechanisms in the last project where the game’s
Link: http://gamingdirectional.com/blog/2019/03/07/the-winning-scene-of-the-game/
Hello and welcome back, in this article we will create the winning scene for this pygame project. Basically, we have already created those winning scene mechanisms in the last project where the game’s
Gaming Directional
The winning scene of the game
Create a winning scene for the pygame project