Skip to content

j4rvice/jokes-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

jokes-api

  • This api returns a random jokes each time you call it

  • link to the jokes-api

  • getting the response of the api in shell :

curl https://jokes-api.gamhcrew.repl.co

using the api in python

  • install requests library in python using the command below
pip install requests
  • python code :
import requests
api = 'https://jokes-api.gamhcrew.repl.co'
joke = requests.get(api).text
print(joke)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages