How to use external configuration file in Python
While developing applications, the code might be uses confidential data like login credentials. Its not a secure way to save
Read MoreFor Techs.... Techniques.... Technologies....
While developing applications, the code might be uses confidential data like login credentials. Its not a secure way to save
Read MoreAnsible is an open-source automation engine that automates software provisioning, configuration management, and application deployment. Playbooks are Ansible’s configuration, deployment,
Read MoreSometimes we will get the following error while installation Python modules using pip. Ignoring ensurepip failure: pip 8.1.1 requires SSL/TLS
Read MoreThe Raspberry Pi is a tiny and affordable computer that you can use to learn programming through fun, practical projects.
Read MoreWe can split the line to list using split function in Python. line="This is test" line.split() The output be like
Read MorePIL is the Python image library. Its is a free library for the Python programming language that adds support for
Read MoreLogging is a good practice while configuring scripts. This will helps to troubleshoot the issues and setup the modifications. This
Read MoreDjango is a free and open-source web framework, written in Python, which follows the model-view-template architectural pattern. This article explains
Read MoreError “ 'dict' object has no attribute 'iteritems' ” This is the error getting on using the iteritems function in
Read MoreWe can use the Ansible shell module to run Linux commands. Let us see the sample yaml code to run
Read MoreThis can be achieved by configuring rules in htaccess. RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/ RewriteRule ^index\.php$ http://domain/$1 [R=301,L] Where 'domain'
Read More