--> Skip to main content

Posts

Showing posts from May, 2022

Featured

Steps to Create a Project on GitHub

Steps to create a project on GitHub:  1.   Start a repo on GitHub 2.   Make a README.md file 3.   Open vs code – new folder – new terminal – git clone http:…. (from the repo). 4.   In terminal – cd theprojectname   à move into the project file 5.   Ls -la is for showing hidden file à not working for me ???? 6.   Make some changes to README file, in terminal git status à shows all the changes on the file 7.   To add all changes update to the folder à git add . (the dot . means all changes to be added) 8.   Add a new file index.html, in terminal à git commit -m “title of commit” -m “description of commit” 9.   Then git push origin master 10.                 ****Initial a repo in local text editor à git init 11.                 After use git add . etc, when pus...

Python Sqlite3 Module - Create a SQLite Database from a JSON File Using Python

Python Project - Tweepy and Twitter Developer API for Automatically Following The Right Twitter Users

A Quick Guide to Twitter Developer API - Twitter API v2 - Get Tweets Data / Create Tweets with Python Library Tweepy

Get Latitude and Longitude from Google Maps Geocoding API with Python urllib Library

Using Python Send HTTP Requests to Server - Compare Socket with urllib Package and Request Module

Python Networking Socket Programming - Create a Server, Send Quotes to Clients

Port Scan with Python - with Socket Threading and Queue Modules

Sending Emails To Multiple Recipients Using Python SMTP and Email.EmailMessage

Find Most Frequent Words in an Article - Python Web Scraping with NLTK

Python Practice : To Sort a Dictionary by its Values Using String and Random Modules

Scrape Top Box Office Movies Worldwide with Python Requests-html - Data Science Project

Scrape Ted Talks and Videos Dataset from ted.com - A Data Science Project