Skip to content
  • Home
  • About Us
  • Blog
    • Fashion
    • Interviews
    • Lifestyle
    • Short Story
    • Technology
  • Entertainment
  • Poem
  • Reflection
  • Real Stories
  • Services

Flyhiee.com

  • Home
  • About Us
  • Blog
    • Fashion
    • Interviews
    • Lifestyle
    • Short Story
    • Technology
  • Entertainment
  • Poem
  • Reflection
  • Real Stories
  • Services

Flash News

Corruption; Lets face it

learn sql quickly: Data and Tables

Come Join The Community Of Great Writers Today @ST

THE BEAUTY OF KARMA;

THE LEGACY;

INFORMATION;

WALLS;

GENDER BASED VIOLENCE-G.B.V(The Store up),

THE COMMAND CONTROL;

THE LOST HOPE;

Thursday, January 28, 2021

Tag: #python

Blog Technology Uncategorized

How to add sitemap to your website using Django and Python

admin April 13, 2020

What is a sitemap?  Django comes with a sitemap framework, which allows you to generate sitemaps for your site dynamically. A sitemap is an XML file that tells search engines … Read More

#django#python#site#sitemap#website Comment on How to add sitemap to your website using Django and Python
Technology

How to reset Django admin password?

admin October 4, 2019

Open console using. python manage.py shell then use following script in shell from django.contrib.auth.models import User User.objects.filter(is_superuser=True) will list you all super users on the system. if you recognise your … Read More

#django#djangoadmin#python#superuser Comment on How to reset Django admin password?
Technology Uncategorized

How to download Files from the Web with the requests Module

admin August 13, 2019

The requests module lets you easily download files from the Web without having to worry about complicated issues such as network errors, connection problems, and data compression. The requests module … Read More

#programming#python#python3#pythontutorialwithworking_with_file Comment on How to download Files from the Web with the requests Module
Technology

Python Programming/Strings Tutorial

admin July 10, 2019

String There are three ways you can declare a string in Python: single quotes (‘), double quotes (“), and triple quotes (“””). You can use quotation marks within strings by … Read More

#python#python3#pythonstring#pythontutorial#string Comment on Python Programming/Strings Tutorial
Blog Technology Uncategorized

Errors and Exceptions in python

admin July 6, 2019

Catching exceptions Whenever a runtime error occurs, it creates an exception object. The program stops running at this point and Python prints out the traceback, which ends with a message … Read More

#developer#errors#exceptions#finally#python#python3#try Comment on Errors and Exceptions in python
Technology

Working with files in Python

admin June 23, 2019

Files Note: Take care of Indentation in codes. While a program is running, its data is stored in random access memory (RAM). RAM is fast and inexpensive, but it is … Read More

#files#filestutorial#python#pythontutorial Comment on Working with files in Python
Technology

Introduction to NumPy

admin June 23, 2019

Numpy NumPy is the fundamental package for scientific computing with Python. It contains among other things: a powerful N-dimensional array object sophisticated (broadcasting) functions tools for integrating C/C++ and Fortran … Read More

#numpy#python#python3 Comment on Introduction to NumPy
Blog Information Technology

How to counts the number of decimal digits in a positive integer in Python

admin May 8, 2019

The following snippet counts the number of decimal digits in a positive integer: n = 40265 count = 0 while n != 0: count = count + 1 n = … Read More

#countingdigit#programming#python#pythonlove#pythontutorial Comment on How to counts the number of decimal digits in a positive integer in Python
Technology

Creating an administration site for your models in Django

admin April 26, 2019

Django comes with a built-in administration interface that is very useful for editing content. The Django admin site is built dynamically by reading your model metadata and providing a production-ready … Read More

#django#djangoadmin#djangositeadmin#python#technology Comment on Creating an administration site for your models in Django
Knowledge Technology

Creating an application in Django

admin April 25, 2019

Let’s create your first Django application. I am going to show you how to create a blog App. From your project’s root directory, run the following command: python3 manage.py startapp … Read More

#blogapplication#djnago#python#webdevelopment Comment on Creating an application in Django

Posts navigation

1 2 Next

Submit your story to get featured.

Follow the link below.

Submit Your Story

Subscribe to Blog via Email

Enter your email address to subscribe to Flyhiee.com and receive notifications of new posts by email.

Join 3,626 other subscribers

Proudly powered by WordPress | Theme: TimesNews | By ThemeSpiral.com.