排序
django-environ with Lists Environment Varibles in .env Files
django-environ with Lists Environment Varibles in .env Files, Issue django-environ is the Python package that allows you to use Twelve-factor methodology to configure your Django a...
Manage environment variables with decouple in Python
Manage environment variables with decouple in Python,In this post we're going to talk about how to set up environment variables for any Python project that we develop. Python-decou...
Difference Between reverse and reverse_lazy and how to use it with get_absolute_url
Difference Between reverse and reverse_lazy and how to use it with get_absolute_url,When working with Django models and views, you often need to generate URLs dynamically. Django p...
Handling Passwords and Secret Keys using Environment Variables
Handling Passwords and Secret Keys using Environment Variables,To save passwords and secret keys in environment variables on Windows, you will need to open Advance System Setting. ...
Conda tip from a `requirements.txt` type of person
Conda tip from a `requirements.txt` type of person,I am a requirements.txt (venv/pipenv) type of person. I have my reasons for that, but I won't mention these reasons here (well, t...
SetUp Python virtual environment
SetUp Python virtual environment, What is virtual environment? A tool to create an isolated environment to run the different projects with their own dependence. For example: If you...
Testing Environment variable in pytest
Testing Environment variable in pytest,Suppose, we have a method that uses environment variables. import os def get_env_vars(): user = os.environ['USER'] token = os.environ['TOKEN'...
Brew Install Java Installing Java on MacOS using Homebrew and JEnv
Brew Install Java Installing Java on MacOS using Homebrew and JEnv,I think its fair to say that going through the process of installing Java on any machine is in of itself a bit co...
Dealing with Environment Variables in Flask
Dealing with Environment Variables in Flask,Welcome to yet another article. Thanks for being a dedicated reader. More knowledge unto you, more skills learnt, and a better you. Befo...
Playing with Python in node
Playing with Python in node,Good days of playing with just to get burned are still alive. Just like playing with python in node and forcing the square in a circle. What an experien...
How to save Environment Variables in Python virtual env
How to save Environment Variables in Python virtual env,Saving environment variables in a Python virtual environment can be a great way to keep your project's dependencies and sett...
Python Virtual Environment Setup
Python Virtual Environment Setup, Python Virtual Environment Setup Post created at 2022-12-12 10:30 Setting your virtual environment with another python version. While I'm writing ...