Real Python: Building Serverless Python Apps Using AWS Chalice
Link: https://realpython.com/aws-chalice-serverless-python/
Shipping a web application usually involves having your code up and running on single or multiple servers. In this model, you end up setting up processes for monitoring, provisioning, and scaling your
Link: https://realpython.com/aws-chalice-serverless-python/
Shipping a web application usually involves having your code up and running on single or multiple servers. In this model, you end up setting up processes for monitoring, provisioning, and scaling your
Realpython
Building Serverless Python Apps Using AWS Chalice – Real Python
In this Python tutorial, you'll see just how easy it can be to get your serverless apps up and running! Chalice, a Python Serverless Microframework developed by AWS, enables you to quickly spin up and deploy a working serverless app that scales up and down…
Django Weblog: Django bugfix releases: 2.1.4 and 1.11.17
Link: https://www.djangoproject.com/weblog/2018/dec/03/bugfix-releases/
Today we've issued the 2.1.4 and 1.11.17 bugfix releases.
The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used for th
Link: https://www.djangoproject.com/weblog/2018/dec/03/bugfix-releases/
Today we've issued the 2.1.4 and 1.11.17 bugfix releases.
The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used for th
Stack Abuse: Seaborn Library for Data Visualization in Python: Part 1
Link: https://stackabuse.com/seaborn-library-for-data-visualization-in-python-part-1/
Introduction
In the previous article, we looked at how Python's Matplotlib library can be used for data visualization. In this article we will look at Seaborn which is another extremely useful library
Link: https://stackabuse.com/seaborn-library-for-data-visualization-in-python-part-1/
Introduction
In the previous article, we looked at how Python's Matplotlib library can be used for data visualization. In this article we will look at Seaborn which is another extremely useful library
Stack Abuse
Seaborn Library for Data Visualization in Python: Part 1
In the previous article, we looked at how Python's Matplotlib library can be used for data visualization. In this article we will look at Seaborn which is anot...
Continuum Analytics Blog: Python Data Visualization 2018: Moving Toward Convergence
Link: https://www.anaconda.com/blog/developer-blog/python-data-visualization-moving-toward-convergence/
By James A. Bednar This post is the second in a three-part series on the current state of Python data visualization and the trends that emerged from SciPy 2018. In my previous post, I provided an over
Link: https://www.anaconda.com/blog/developer-blog/python-data-visualization-moving-toward-convergence/
By James A. Bednar This post is the second in a three-part series on the current state of Python data visualization and the trends that emerged from SciPy 2018. In my previous post, I provided an over
Anaconda
Python Data Visualization 2018: Moving Toward Convergence - Anaconda
By James A. Bednar This post is the second in a three-part series on the current state of Python data visualization and the trends that emerged from SciPy 2018. In my previous post, I provided an overview of the myriad Python data visualization tools currently…
Python Software Foundation: November 2018 board meeting summary
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/z69UmaLym5A/november-2018-board-meeting-summary.html
On November 12th and 13th, ten of the thirteen PSF board members convened in Chicago, IL. Those who could not make it to the in-person meeting, joined via phone conferencing when possible.
In attenda
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/z69UmaLym5A/november-2018-board-meeting-summary.html
On November 12th and 13th, ten of the thirteen PSF board members convened in Chicago, IL. Those who could not make it to the in-person meeting, joined via phone conferencing when possible.
In attenda
Blogspot
November 2018 board meeting summary
On November 12th and 13th, ten of the thirteen PSF board members convened in Chicago, IL. Those who could not make it to the in-person meeti...
Reinout van Rees: Write drunk, test automated: documentation quality assurance - Sven Strack
Link: http://reinout.vanrees.org/weblog/2018/12/03/write-the-docs.html
This is my summary of the write the docs meetup in
Amsterdam at the Adyen office, november 2018.
Sven's experience is mostly in open source projects (mainly Plone, a python
CMS). He's also involved i
Link: http://reinout.vanrees.org/weblog/2018/12/03/write-the-docs.html
This is my summary of the write the docs meetup in
Amsterdam at the Adyen office, november 2018.
Sven's experience is mostly in open source projects (mainly Plone, a python
CMS). He's also involved i
Techiediaries - Django: Django TemplateView Example — URLs, GET and as_view
Link: https://www.techiediaries.com/django-templateview/
Django Templates are used to create HTML interfaces that get rendered with a Django view.
A TemplateView is a generic class-based view that helps developers create a view for a specific template with
Link: https://www.techiediaries.com/django-templateview/
Django Templates are used to create HTML interfaces that get rendered with a Django view.
A TemplateView is a generic class-based view that helps developers create a view for a specific template with
Techiediaries
Django TemplateView GET|POST Example — URLs, as_view and get_context_data | Techiediaries
Throughout this tutorial, we'll learn about TemplateView in Django
gamingdirectional: Create enemy missiles within the Enemy object
Link: http://gamingdirectional.com/blog/2018/12/04/python-5/
In this article we are going to edit a few game’s classes that we have created earlier, our main objective here is to detach the enemy missiles from the enemy missile manager, which means instead of p
Link: http://gamingdirectional.com/blog/2018/12/04/python-5/
In this article we are going to edit a few game’s classes that we have created earlier, our main objective here is to detach the enemy missiles from the enemy missile manager, which means instead of p
Gaming Directional
Create enemy missiles within the Enemy object
Create enemy missiles within the enemy object in this pygame project
Ned Batchelder: Quick hack CSV review tool
Link: https://nedbatchelder.com//blog/201812/quick_hack_csv_review_tool.html
Let’s say you are running a conference,
and let’s say your Call for Proposals
is open, and is saving people’s talk ideas into a spreadsheet.
I am in this situation. Reviewing those proposals
Link: https://nedbatchelder.com//blog/201812/quick_hack_csv_review_tool.html
Let’s say you are running a conference,
and let’s say your Call for Proposals
is open, and is saving people’s talk ideas into a spreadsheet.
I am in this situation. Reviewing those proposals
codingdirectional: List out all the files within a folder with python
Link: http://codingdirectional.info/2018/12/04/list-out-all-the-files-within-a-folder-with-python/
In this article we will continue with our windows application development using tkinter, in the previous article we have created a button which when we click on it we can select a file from a folder a
Link: http://codingdirectional.info/2018/12/04/list-out-all-the-files-within-a-folder-with-python/
In this article we will continue with our windows application development using tkinter, in the previous article we have created a button which when we click on it we can select a file from a folder a
Eli Bendersky: Type erasure and reification
Link: https://eli.thegreenplace.net/2018/type-erasure-and-reification/
In this post I'd like to discuss the concepts of type erasure and
reification in programming languages. I don't intend to dive very deeply into
the specific rules of any particular language; rather, t
Link: https://eli.thegreenplace.net/2018/type-erasure-and-reification/
In this post I'd like to discuss the concepts of type erasure and
reification in programming languages. I don't intend to dive very deeply into
the specific rules of any particular language; rather, t
Codementor: How to Create and Deploy a Telegram Bot using Python
Link: https://www.codementor.io/djangostars/how-to-create-and-deploy-a-telegram-bot-using-python-px07qk6x8
Bots are everywhere. It seems that only yesterday we did not even know about their existence; now we can barely imagine our life without them. They’ve become widely popular among numerous active...
Link: https://www.codementor.io/djangostars/how-to-create-and-deploy-a-telegram-bot-using-python-px07qk6x8
Bots are everywhere. It seems that only yesterday we did not even know about their existence; now we can barely imagine our life without them. They’ve become widely popular among numerous active...
www.codementor.io
How to Create and Deploy a Telegram Bot using Python | Codementor
Bots are everywhere. It seems that only yesterday we did not even know about their existence; now we can barely imagine our life without them. They’ve become widely popular among numerous active...
Mike Driscoll: Python 101: Episode #36 – Creating Modules and Packages
Link: http://www.blog.pythonlibrary.org/2018/12/04/python-101-episode-36-creating-modules-and-packages/
In this screencast, we will learn the basics of how to create our own module or package.
You can also read the chapter this video is based on here or get the book on Leanpub
Previous Episodes
Pyth
Link: http://www.blog.pythonlibrary.org/2018/12/04/python-101-episode-36-creating-modules-and-packages/
In this screencast, we will learn the basics of how to create our own module or package.
You can also read the chapter this video is based on here or get the book on Leanpub
Previous Episodes
Pyth
Kushal Das: Using hexchat on Flatpak on Qubes OS AppVM
Link: https://kushaldas.in/posts/using-hexchat-on-flatpak-on-qubes-os-appvm.html
Flatpak is a system for building, distributing, and running sandboxed desktop applications on Linux.
It uses BubbleWrap in the low level to do the actual sandboxing. In simple terms,
you can think Fl
Link: https://kushaldas.in/posts/using-hexchat-on-flatpak-on-qubes-os-appvm.html
Flatpak is a system for building, distributing, and running sandboxed desktop applications on Linux.
It uses BubbleWrap in the low level to do the actual sandboxing. In simple terms,
you can think Fl
PyCon: Python Education Summit - in its 7th year in 2019
Link: https://pycon.blogspot.com/2018/12/python-education-summit-in-its-7th-year.html
Teachers, educators, and Pythonistas: come and share your projects, experiences, and tools of the trade in teaching coding and Python to your students. The Annual Python Education Summit is held at Py
Link: https://pycon.blogspot.com/2018/12/python-education-summit-in-its-7th-year.html
Teachers, educators, and Pythonistas: come and share your projects, experiences, and tools of the trade in teaching coding and Python to your students. The Annual Python Education Summit is held at Py
Blogspot
Python Education Summit - in its 7th year in 2019
Teachers, educators, and Pythonistas: come and share your projects, experiences, and tools of the trade in teaching coding and Python to you...
PyCoder’s Weekly: Issue #345 (Dec. 4, 2018)
Link: https://pycoders.com/issues/345
#345 – DECEMBER 4, 2018 View in Browser » What Is a Data Frame? (In Python, R, and SQL) Great little post that introduces the concepts behind Data Frames, and then shows how they work by solving
Link: https://pycoders.com/issues/345
#345 – DECEMBER 4, 2018 View in Browser » What Is a Data Frame? (In Python, R, and SQL) Great little post that introduces the concepts behind Data Frames, and then shows how they work by solving
Pycoders
PyCoder’s Weekly | Issue #345
Issue #345 of the PyCoder’s Weekly newsletter, published Dec. 4, 2018.
Continuum Analytics Blog: Using Pip in a Conda Environment
Link: https://www.anaconda.com/blog/developer-blog/using-pip-in-a-conda-environment/
Unfortunately, issues can arise when conda and pip are used together to create an environment, especially when the tools are used back-to-back multiple times, establishing a state that can be hard to
Link: https://www.anaconda.com/blog/developer-blog/using-pip-in-a-conda-environment/
Unfortunately, issues can arise when conda and pip are used together to create an environment, especially when the tools are used back-to-back multiple times, establishing a state that can be hard to
Anaconda
Using Pip in a Conda Environment - Anaconda
Unfortunately, issues can arise when conda and pip are used together to create an environment, especially when the tools are used back-to-back multiple times, establishing a state that can be hard to reproduce. Most of these issues stem from that fact that…
Philip Semanchuk: Happy Birthday, sysv_ipc
Link: http://blog.pyspoken.com/2018/12/04/happy-birthday-sysv_ipc/
Ten years ago today, I released the first version of sysv_ipc (a Python wrapper around System V IPC primitives). Happy 10th birthday!
You can find it on GitHub and PyPI.
Link: http://blog.pyspoken.com/2018/12/04/happy-birthday-sysv_ipc/
Ten years ago today, I released the first version of sysv_ipc (a Python wrapper around System V IPC primitives). Happy 10th birthday!
You can find it on GitHub and PyPI.
Techiediaries - Django: Django Form Example—Bootstrap 4 UI via django-crispy-forms
Link: https://www.techiediaries.com/django-form-bootstrap/
In this practical tutorial, you will build a simple example Django application with a form styled with Bootstrap 4.
In this tutorial, you'll be using django-crispy-forms, a popular package that makes
Link: https://www.techiediaries.com/django-form-bootstrap/
In this practical tutorial, you will build a simple example Django application with a form styled with Bootstrap 4.
In this tutorial, you'll be using django-crispy-forms, a popular package that makes
Techiediaries
Django Form Example—Bootstrap 4 UI via django-crispy-forms | Techiediaries
Throughout this tutorial, we'll learn about TemplateView in Django
codingdirectional: Search for any duplicate file with python
Link: http://codingdirectional.info/2018/12/05/search-for-any-duplicate-file-with-python/
Welcome to the new chapter of this remove duplicate file project. After creating a thread class, open a file and open a folder in the previous few chapters, we can now start to move toward our main ob
Link: http://codingdirectional.info/2018/12/05/search-for-any-duplicate-file-with-python/
Welcome to the new chapter of this remove duplicate file project. After creating a thread class, open a file and open a folder in the previous few chapters, we can now start to move toward our main ob