Python Anywhere: Today's upgrade: improving websites, better security
This morning's system update went smoothly, and we've made a couple of great changes :-)Improved website routingThis one should be pretty much transparent to you, but we've revamped the way we route...
View ArticleEvennia: Season of fixes
The last few months has been dominated by bug-fixing and testing in Evennia-land. A lot more new users appears to be starting to use Evennia, especially from the MUSH world where the Evennia-based Arx,...
View ArticleNikola: Nikola v7.8.1 is out!
On behalf of the Nikola team, I am pleased to announce the immediate availability of Nikola v7.8.1. It fixes some bugs and adds new features.What is Nikola?Nikola is a static site and blog generator,...
View ArticleDjango Weblog: Result of JetBrains/PyCharm Promotion
I'm happy to report that the JetBrains/PyCharm promotion we ran in June and July was a rousing success! The final numbers are in and this raised a total of $50,000.00 USD for the Django Software...
View ArticleFabio Zadrozny: PyDev 5.3.0 (Code completion improvements, Validate code with...
PyDev 5.3.0 is now available for download.The major focus in this release was in the code completion, with a number of enhancements...The main one is that it's now possible to request completions by...
View ArticleAnarcat: Managing good bug reports
Bug reporting is an art form that is too often neglected in software projects. Bug reports allow contributors to participate without deep technical knowledge and at the same time provide a crucial...
View ArticleSemaphore Community: Dockerizing a Python Django Web Application
This article is brought with ❤ to you by Semaphore.IntroductionThis article will cover building a simple 'Hello World'-style web application written in Django and running it in the much talked about...
View ArticleStéphane Wirtel: Frenchify Python ;-)
PyConFR 2016During the PyConFR in Rennes (France), I have started a funny project, try to have a Python in French. Yes, you have well read, in French. And why ? Because we are at PyConFR in France...
View ArticleRobin Parmar: Bootstrap 4 column templates
I am building a new website. Each time I do this, the underlying technologies evolve and I play catch-up.The big problem has always been supporting the variety of software platforms in use. It's a...
View ArticleWeekly Python StackOverflow Report: (xli) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2016-10-15 06:39:58 GMTDictionaries are ordered in Python 3.6 -...
View ArticleYasoob Khalid: Interesting Python Tutorials
Hi there folks! I have read some interesting Python tutorials lately. I would love to share them with you. Without any further ado let me list them over here:1. Composing Music With Recurrent Neural...
View ArticlePodcast.__init__: Episode 79 - K Lars Lohn
SummaryK Lars Lohn has had a long and varied career, spending his most recent years at Mozilla. This week he shares some of his stories about getting involved with Python, his work with Mozilla, and...
View ArticleKrzysztof Żuraw: PyConPL 2016
This weekend I was on PyConPL conference. This is a short relation from this event.Table of Contents:Day 1Day 2Day 3Day 4Day 1I was on a presentation by Marcin Bardź PostgreSQL i SQLAlchemy Duet...
View ArticleTalk Python to Me: #80 TinyDB: A tiny document db written in Python
NoSQL and document dbs like MongoDB have made building fast scalable software that is easy to evolve and maintain much easier for a broad class of applications. Embeddable, file-based databases like...
View ArticleLintel Technologies: How to shuffle lines in the file in linux
We can shuffle lines in the file in linux using following commandsshufsed and sortawkpythonAs an example we will take a file shuffle_mylines.txt having numbers till 10 each digit in a new line.Create a...
View ArticleLintel Technologies: Python virtualenv – Virtual Environments
What is virtualenvA Virtual Environment is a tool for python to keep the dependencies required by different projects isolated in separate places, by creating virtual Python environments.It solves the...
View ArticleLintel Technologies: Python: __new__ magic method explained
Python is Object oriented language, every thing is an object in python. Python is having special type of methods called magic methods named with preceded and trailing double underscores.When we talk...
View ArticleWeekly Python Chat: Class-Based Views in Django
Most Django programmers use function-based views, but some use class-based views. Why? We're going to talk about how class-based views are different.
View ArticleLintel Technologies: How to create read only attributes and restrict setting...
There are different way to prevent setting attributes and make attributes read only on object in python. We can use any one of the following way to make attributes readonlyProperty DescriptorUsing...
View ArticleDaniel Bader: Click & jump to any file or folder from the terminal
Click & jump to any file or folder from the terminaliTerm2 for macOS has a little known feature that lets you open files and folders simply by Cmd+Clicking on them in the terminal. Among other...
View Article