وب سایت تخصصی شرکت فرین
دسته بندی دوره ها

Master Python and GitHub with Real World Projects

سرفصل های دوره

Create a Portfolio of 10 Python Projects on GitHub


1 - Introduction
  • 1 - Promo
  • 2 - Course Resources.html
  • 2 - MASTER-PYTHON-GITHUB.zip
  • 3 - Anaconda and Conda
  • 4 - Anaconda Installation Windows Mac
  • 5 - Anaconda Installation Ubuntu Linux

  • 2 - Jupyter Pip and Virtual Environments
  • 6 - Pip and Conda Windows Mac
  • 7 - Virtual Environments Windows Mac
  • 8 - Running Jupyter Windows Mac
  • 9 - Pip and Conda Ubuntu Linux
  • 10 - Virtual Environments Ubuntu Linux
  • 11 - Running Jupyter Ubuntu Linux
  • 12 - Jupyter Notebook Overview
  • 13 - Jupyter Lab Overview

  • 3 - Git and Github
  • 14 - Section Overview
  • 15 - Git Installation
  • 16 - Git Commands
  • 17 - Github and SSH Key
  • 18 - Git Push and Pull
  • 19 - Git Ignore
  • 20 - Multiple SSH Keys Optional
  • 21 - Git Branch and Merge
  • 22 - Merge Conflict Local Part 1
  • 23 - Merge Conflict Remote Part 2
  • 24 - Git Clone and Forking

  • 4 - PreProject for GitHub
  • 25 - PreProject Overview
  • 26 - Creating a READMEmd Profile Part 1
  • 26 - PROFILE-README.txt
  • 27 - Creating a READMEmd Profile Part 2
  • 28 - Creating a READMEmd Project

  • 5 - Fundamentals
  • 29 - Section Overview
  • 30 - Variables and Operators
  • 31 - Strings and Formatting
  • 32 - Indexing

  • 6 - Data Structures
  • 33 - Section Overview
  • 34 - Lists
  • 35 - Dictionaries
  • 36 - Tuples
  • 37 - Sets
  • 38 - Builtin Functions

  • 7 - Control Flow and Loops
  • 39 - Section Overview
  • 40 - Conditionals If Elif Else
  • 41 - For Loops
  • 42 - While Loops
  • 43 - Break Pass Continue

  • 8 - Project Guessing Game
  • 44 - Project Overview
  • 45 - Guessing Number
  • 46 - HOMEWORK.html

  • 9 - Comprehension
  • 47 - Section Overview
  • 48 - List Comprehension
  • 49 - Dictionary Comprehension

  • 10 - Import Modules
  • 50 - Section Overview
  • 51 - Random
  • 52 - Context Manager Files
  • 53 - OS
  • 54 - Datetime
  • 55 - CSV Data
  • 56 - Pickle and JSON Data

  • 11 - Project Calculate Languages
  • 57 - Project Overview
  • 58 - Calculating Language Percentages
  • 59 - Data Visualization of Languages
  • 60 - HOMEWORK.html

  • 12 - Functions
  • 7 - Functions Quiz.html
  • 61 - Section Overview
  • 62 - Functions
  • 63 - Scope
  • 64 - Lambda Expressions
  • 65 - Args and Kwargs

  • 13 - Tkinter GUI apps
  • 8 - Tkinter GUI Quiz Part 1.html
  • 66 - Section Overview
  • 67 - Basics of Tkinter
  • 68 - Inputs of Tkinter
  • 69 - Managing Multiple Windows
  • 70 - Handling Events with Bind
  • 71 - Handling Images and Links
  • 72 - Tabs and Frames
  • 73 - Uploading Files List and Scrollbar

  • 14 - Project GUI Python Editor app
  • 74 - Project Overview
  • 75 - Adding Navbar and Buttons
  • 76 - Adding Text Areas
  • 77 - Updating Edit Functions
  • 78 - Adding Scroll bars
  • 79 - Opening Python files
  • 80 - Running Python files
  • 81 - Saving Python files
  • 82 - Find and Replace Text
  • 83 - Package GUI app optional
  • 84 - HOMEWORK.html

  • 15 - Modules and Packages Creating Modules
  • 11 - Tkinter GUI Quiz Part 2.html
  • 85 - Section Overview
  • 86 - Modules Part 1 name
  • 87 - Modules Part 2 initpy
  • 88 - Modules Part 3 package
  • 89 - Modules Part 4 all

  • 16 - Advanced Functions
  • 90 - Section Overview
  • 91 - Type Hinting
  • 92 - Decorator Fundamentals
  • 93 - Decorator Practical
  • 94 - Generators

  • 17 - CLI Apps
  • 1 - CLI Test.html
  • 95 - Section Overview
  • 96 - CLI Part 1
  • 97 - CLI Part 2

  • 18 - CLI Encryption App
  • 98 - Project Overview
  • 99 - Creating ZipFiles
  • 100 - Encrypting Zipfiles
  • 101 - Decrypting ZipFiles
  • 102 - Converting to a CLI app
  • 103 - Password for EncryptDecrypt
  • 104 - HOMEWORK.html

  • 19 - Handle Errors
  • 105 - Section Overview
  • 106 - Try Except and Finally

  • 20 - SQLite for Beginners
  • 107 - Section Overview
  • 108 - SQLite Installation Article.html
  • 109 - Creating Database and Tables
  • 110 - Inserting Invalid Data
  • 111 - Inserting Data with Table Constraints
  • 112 - CRUD Operations
  • 113 - Joining Tables
  • 114 - SQLite Queries
  • 115 - Advanced SQLite Queries
  • 116 - SQLite Cases
  • 117 - Alter Add Rename and Drop
  • 118 - SQLite Datetime Part 1
  • 119 - SQLite Datetime Part 2
  • 120 - Handling SQL Errors

  • 21 - Project Basic ETL Extract Transform and Load with SQLite3
  • 121 - Project Overview
  • 122 - Create Authors Table
  • 123 - Extracting Data
  • 124 - Transforming Data
  • 125 - Loading Data
  • 126 - HOMEWORK.html

  • 22 - Project Speech to Text App
  • 127 - Project Overview
  • 128 - Text to Speech
  • 129 - Speech Recognition
  • 130 - Comprehension for Calculating Total
  • 131 - Saving Calculated Total
  • 132 - Converting to Python Script
  • 133 - HOMEWORK.html

  • 23 - OOP Object Orientated Programming
  • 134 - Section Overview
  • 135 - Classes and init
  • 136 - Inheritance
  • 137 - Composition
  • 138 - Special Methods
  • 139 - Encapsulation

  • 24 - Project Local Anagram Module
  • 140 - Project Overview
  • 141 - Anagram Logic
  • 142 - Creating Anagram Class
  • 143 - Creating a Local Module
  • 144 - HOMEWORK.html

  • 25 - Project PyPi
  • 145 - Project Overview
  • 146 - PyPI Set up Package Part 1
  • 147 - PyPI Create Package Part 2
  • 148 - HOMEWORK.html

  • 26 - Project Advanced ETL Extract Load and Transform with SQLite3
  • 149 - Project Overview
  • 150 - Extracting Movie Data with Kaggle
  • 151 - Columns with List Comprehension
  • 152 - Loading Movie Data
  • 153 - Transforming Movie Data
  • 154 - ELT with OOP
  • 155 - HOMEWORK.html

  • 27 - Web Scraping
  • 156 - Section Overview
  • 157 - Web Scraping Locally

  • 28 - Project Web Scraping UK National Lotto
  • 158 - Project Overview
  • 159 - Web Scraping Data Part 1
  • 160 - Web Scraping Data Part 2
  • 161 - Web Scraping Data Part 3
  • 162 - HOMEWORK.html
  • 139,000 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    افزودن به سبد خرید
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    شناسه: 20924
    حجم: 9529 مگابایت
    مدت زمان: 1401 دقیقه
    تاریخ انتشار: ۷ آبان ۱۴۰۲
    طراحی سایت و خدمات سئو

    139,000 تومان
    افزودن به سبد خرید