Posts tagged python

65 posts

LearnDjango | LearnDjango.com

Learn web development with Python and the Django Web Framework. Tutorials on Django REST Framework, Docker, React, and Vue.

Basics - Rye

An Experimental Package Management Solution for Python

NiceGUI

NiceGUI is an easy-to-use, Python-based UI framework, which shows up in your web browser. You can create buttons, dialogs, Markdown, 3D scenes, plots and much more.

Code. Simply. Clearly. Calmly.

Short and simple video lessons that start from scratch. Tools and thoughts that might make your professional life more enjoyable.

Asyncio Patterns in Python

Recently I needed to run millions of API calls to an internal service. API calls are IO blocking. This means that when my service calls the…

Prettymaps

A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries. - GitHub - marceloprates/prettymaps: A small set of Python functions t...

Configuration in Python Applications: No Magic, Just Necessary Practice

During the development of Python applications, I've continually asked myself how and when variables should be passed and initialized for the application's configuration. I want to be able to easily override the configuration for tests, for example, to use a local database for testing. But what exactly is application configuration, and why is it needed? The website a ...

Static Site Generators

A static site generator combines a markup language with a templating engine to produce HTML files. Learn more on Full Stack Python.

The Good Research Code Handbook

This handbook is for grad students, postdocs and PIs who do a lot of programming as part of their research. It will teach you, in a practical manner, how to organize your code so that it is easy to...

SymPy

SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python.

Awesome VS Code Extensions For Python

Welcome back! Python is one of my favorite programming languages of all time, if you’re new to Python, check out the link below to learn…

styleguide

Style guides for Google-originated open-source projects

Preserving global state in a flask application

I am trying to save a cache dictionary in my flask application.

As far as I understand it, the Application Context, in particular the flask.g object should be used for this.
Setup:

import flask ...

neuralchen/SimSwap

The official project of SimSwap (ACM MM 2020). Contribute to neuralchen/SimSwap development by creating an account on GitHub.

What the f*ck, Python!

Wonderful and instructive collection of python snippets for fun and profit.

numpy for Linear Algebra

For robot reasons I have been diving into linear algebra and have done a pretty thorough search of resources for this. This is one of the pretty simple summaries.