About DrinksAPI
Change quotes by choosing a tag or name above.
{
"drfapi":
"1.0.0",
"info":
{
"title":
"Daily Quotes API",
"version":
"1.0.0",
"description":
"This is the public API for Daily Quotes",
},
"servers":
[
{'url': '/api/v1'}
],
"external_docs":
{
"url":
"https://www.dailyquotesapi.paulrblack.com/",
"description":
"Access to interesting, comical and inspirational quotes",
},
"security":
[
"client_id":
"[]"
"client_secret":
"[]"
],
"quotes":
{
"count":
"8",
"next":
"None",
"previous":
"None",
"results":
[
{
"id":
60
"text":
"If your actions inspire others to dream more, learn more, do more, and become more, you are a leader."
"name":
"John Quincy Adams"
},
{
"id":
82
"text":
"Do you want to know who you are? Don't ask. Act! Action will delineate and define you."
"name":
"Thomas Jefferson"
},
{
"id":
134
"text":
"All growth depends upon activity. There is no development physically or intellectually without effort and effort means work."
"name":
"Calvin Coolidge"
},
{
"id":
161
"text":
"In matters of style, swim with the current; in matters of principle, stand like a rock."
"name":
"Thomas Jefferson"
},
{
"id":
299
"text":
"Complaining about a problem without proposing a solution is called whining."
"name":
"Teddy Roosevelt"
},
{
"id":
557
"text":
"Change will not come if we wait for some other person or some other time."
"name":
"Barack Obama"
},
{
"id":
624
"text":
"Do not bite at the bait of pleasure until you know there is no hook beneath it."
"name":
"Thomas Jefferson"
},
{
"id":
670
"text":
"Always bear in mind that your own resolution to succeed is more important than any other."
"name":
"Abraham Lincoln"
},
],
},
}
Wikipedia defines an application programming interface (API) as a way for two or more computer programs or components to communicate with each other. It is a type of software interface, offering a service to other pieces of software.[1] A document or standard that describes how to build or use such a connection or interface is called an API specification. A computer system that meets this standard is said to implement or expose an API. The term API may refer either to the specification or to the implementation. Whereas a system's user interface dictates how its end-users interact with the system in question, its API dictates how to write code that takes advantage of that system's capabilities.
It's an old project that started with the freeCodeCamp frontend quote machine project. After completing that project I did the proejct again in python, this time storing hundreds of quotes in a CVS file. After learning the basics of the Django Rest Framework, I wanted to make the quotes available to anyone that wanted another data set to practice on.
- Python
- Django
- Django Rest Framework
- Javascript
- Postgres
- Digital Ocean