Skip to content

Instantly share code, notes, and snippets.

View eduolihez's full-sized avatar
🚀
Building the next big thing with code.

Edu Olivares eduolihez

🚀
Building the next big thing with code.
View GitHub Profile
# Motivational Quotes Generator in Python
import requests
def get_quote():
response = requests.get("https://api.quotable.io/random")
data = response.json()
quote = data["content"]
author = data["author"]
return f"{quote} - {author}"
@eduolihez
eduolihez / Username_finder.py
Created February 28, 2023 20:53
Instagram Find Username with ID
import instaloader
L = instaloader.Instaloader()
profile = instaloader.Profile.from_id(L.context, ID)
print(profile.username)
@eduolihez
eduolihez / id_finder.py
Created February 28, 2023 20:51
Instagram get ID from Username
import instaloader
L = instaloader.Instaloader()
profile = instaloader.Profile.from_username(L.context, 'username')
print(profile.userid)