Skip to content
View kashiftriffort's full-sized avatar
Block or Report

Block or report kashiftriffort

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
kashiftriffort/README.md
  • 👋 Hi, I’m @kashiftriffort
  • 👀 I’m interested in ...
  • 🌱 I’m currently learning ...
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...

Pinned

  1. Python BeautifulSoup Scraper that sc... Python BeautifulSoup Scraper that scrapes book covers, titles, descriptions, average rating, rating and authors from www.goodreads.com
    1
    import requests
    2
    from bs4 import BeautifulSoup as bs
    3
    import pandas as pd
    4
    import re
    5
    
    
  2. URLSession swizzling in Swift URLSession swizzling in Swift
    1
    extension URLSessionConfiguration {
    2
      
    3
      @objc
    4
      static func setupSwizzledSessionConfiguration() {
    5
        
  3. Intercept Action Swizzling in Swift Intercept Action Swizzling in Swift
    1
      @objc static func swizzleMethod() {
    2
        
    3
        guard self == UIApplication.self else {
    4
          return
    5
        }
  4. Combine Example in Swift Combine Example in Swift
    1
    enum HTTPError: LocalizedError {
    2
      case statusCode
    3
    }
    4
    
    
    5
    enum RequestError: Error {
  5. API-Generics_Codable API-Generics_Codable Public

    Sample app created in Swift called an API client using Generics, Codable

    Swift

  6. Combine-SwiftUI Combine-SwiftUI Public

    Sample app showing SwiftUI and Combine

    Swift