Skip to content
View datttrian's full-sized avatar

Block or report datttrian

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
datttrian/README.md

Centennial College IU-VNU LinkedIn Learning DataCamp LeetCode CS50X CS50P CS50AI Codecademy

import requests

def get_random_quote():
    response = requests.get("https://api.quotable.io/random")
    if response.status_code == 200:
        data = response.json()
        return f"{data['content']} - {data['author']}"
    else:
        return "Failed to fetch a quote."

print(get_random_quote())
## May all beings have happy minds. - The Buddha

Popular repositories Loading

  1. datacamp datacamp Public

    DataCamp

    Python 21 6

  2. codecademy codecademy Public

    Codecademy

    JavaScript 10 2

  3. datttrian datttrian Public

    Shell 7

  4. leetcode leetcode Public

    LeetCode

    Python 3

  5. blockchain-book blockchain-book Public

    Python 2 2

  6. to-do-list to-do-list Public

    A functional iPhone to-do app with Google Firebase authentication and CRUD operations

    Swift 2