Posts

Showing posts with the label login

Source code for python programs

How to Setup app-ads.txt file in admob

Image
  AdMob provides a personalized code snippet that makes setting up your app-ads.txt file easier. The customized code snippet includes your publisher ID.  Note that your  publisher ID  must be included and formatted correctly for your app-ads.txt file to be verified.  To get your personalized code snippet, which includes your publisher ID: Sign in to your AdMob account at  https://apps.admob.com . Click  Apps  in the sidebar. Click  All apps . Click the  app-ads.txt  tab. Click  How to set up app-ads.txt .  Click next to the code snippet to copy.  Paste the code snippet into your app-ads.txt file. 

Login Python Source code

Hi Guys if you are a beginner in python so that code will improve your programming skill, i will give here simple  login program for python that you can use in your program and add more functionality First import all library   from tkinter import * from PIL import ImageTk,Image from tkinter import messagebox from tkinter import ttk import os import csv     def open_win():     top = Toplevel()   def fun():       with open("username_info.txt","r") as file1:         file_reader = csv.reader(file1)         file1.close()       login_b1 = Button(root, text="Log in", command=log()).pack()   def log(file1):       user = username_verify.get()     pas = password_verify.get()       for row in file1:         if row[0] == user and row[1] == pas:         ...

Popular posts from this blog

Make your own Jarvis in python

Open the Web browser with speech recognition in python program