SlideShare a Scribd company logo
Documentation-driven
development for
Python web APIs
โ€ข Jose Haro Peralta
โ€ข Full stack consultant
โ€ข Cofounder of microapis.io
@JoseHaroPeralta
@microapisio
EuroPython 2021
$ whoami
35% discount code: ctweuro21
โ€ข Iโ€™m Jose
โ€ข Independent contractor | London
โ€ข Full stack developer
โ€ข Microservices and APIs
@JoseHaroPeralta
@microapisio
microapis.io
39% discount code: ctwapi21
One-click API mock servers
@JoseHaroPeralta
@microapisio
Connect with Jose
โ€ข Twitter: @JoseHaroPeralta
โ€ข GitHub: @abunuwas
โ€ข Medium: @joseharoperalta /@python-geek
โ€ข LinkedIn: https://www.linkedin.com/in/jose-haro-peralta/
@JoseHaroPeralta
@microapisio
This
presentation
covers
โ€ข Complexity of API integrations
โ€ข What is documentation-driven development and why
it matters?
โ€ข How to you can adopt documentation-driven
development?
โ€ข REST API (OpenAPI)
โ€ข FastAPI
โ€ข Validate server implementation with Dredd and
schemathesis
โ€ข Build API clients with mock servers
โ€ข Continuous Integration and deployment to Heroku
โ€ข API visibitility
โ€ข Code for this presentation:
https://github.com/abunuwas/europython-2021
@JoseHaroPeralta
@microapisio
API integrations are tricky
API server
API client
12/12/2020 vs 12-12-2020
Misunderstandings drive API integration
failures
โ€ข Misunderstanding about data formats
โ€ข "2021-07-29" vs "2021/07/29"
โ€ข "$21" vs 21
โ€ข true vs "True"
Misunderstandings drive API integration
failures
โ€ข Misunderstanding about data types
โ€ข "2021" vs 2021
โ€ข 202.1 vs 202
Misunderstandings drive API integration
failures
โ€ข Misunderstanding about optional fields
vs
Misunderstandings drive API integration
failures
โ€ข Misunderstanding about the usability of the endpoints
How API
integrations
fail
Lack of
documentation
Bad documentation
Lack of design stage
What is API documentation?
REST -> OpenAPI
GraphQL -> Schema Definition
Language
gRPC -> Protobuf
What is
documentation-
driven
development?
โ€ข Also known as design-first, API-first
or contract-first approach
โ€ข Design and produce the API
specification first
โ€ข Build your server and your API
client (if you have one) against the
specification
โ€ข Use the specification to validate
your implementation
Documentation-driven development for Python web APIs
Dredd / schemathesis
Documentation-driven development for Python web APIs
datamodel-code-generator
(https://github.com/koxudaxi/datamodel-code-generator)
Documentation-driven development for Python web APIs
Run Dredd tests with hooks
Run schemathesis tests with stateful links
Running a mock server with prism
Calling a mock server with prism
Running a mock server with microapis.io
Calling a mock server with microapis.io
Configuration for the Travis file
Thanks for listening!
Twitter: @JoseHaroPeralta
GitHub: @abunuwas
Medium: @joseharoperalta /@python-geek
LinkedIn: https://www.linkedin.com/in/jose-haro-peralta/
35% discount code: ctweuro21

More Related Content

What's hot (20)

PPTX
Design and Evolution of APIs in Microservice Architecture
Lohika_Odessa_TechTalks
ย 
PDF
Leaping Forward: Finding The Future of Your API Docs
Pronovix
ย 
PDF
Advancing Your API Strategy in an Infrastructure World
Pronovix
ย 
PDF
API Design Collaboration
Uchit Vyas โ˜
ย 
PDF
apidays LIVE Paris 2021 - Using OpenAPI to configure your API Gateway by Ole ...
apidays
ย 
PDF
apidays LIVE New York 2021 - API tool chain for low budget programs by Paul K...
apidays
ย 
PPTX
Bringing Pull Request to Gerrit
Eryk Szymanski
ย 
PPTX
Chatbots Workshop SF JS Meetup May 2018
Tessa Mero
ย 
PDF
Introduction to the Art of API Practice
Bill Doerrfeld
ย 
PPT
Piwik Presentation
Matthieu Aubry
ย 
PDF
Microservice Stategies - Scaling your API design workflow
Jakub Nesetril
ย 
PDF
Tools for designing and building great APIs
Kong Inc.
ย 
PPTX
Writing Slack Bots in JavaScript
Niklas Heidloff
ย 
PDF
Lessons learned: Choosing your documentation system
Pronovix
ย 
PPTX
A Starters Guide to Building APIs with Javascript
All Things Open
ย 
PPTX
Logic Apps โ€“ Deployments
BizTalk360
ย 
PPTX
APIdays Paris 2014 - Workshop - Craft and Deploy Your API in a Few Clicks Wit...
Restlet
ย 
PDF
API SDK Development โ€“ Lessons Learned
Pronovix
ย 
PDF
{Re}designing a Developer Portal
Pronovix
ย 
PPTX
Serverless Architecture
CodePolitan
ย 
Design and Evolution of APIs in Microservice Architecture
Lohika_Odessa_TechTalks
ย 
Leaping Forward: Finding The Future of Your API Docs
Pronovix
ย 
Advancing Your API Strategy in an Infrastructure World
Pronovix
ย 
API Design Collaboration
Uchit Vyas โ˜
ย 
apidays LIVE Paris 2021 - Using OpenAPI to configure your API Gateway by Ole ...
apidays
ย 
apidays LIVE New York 2021 - API tool chain for low budget programs by Paul K...
apidays
ย 
Bringing Pull Request to Gerrit
Eryk Szymanski
ย 
Chatbots Workshop SF JS Meetup May 2018
Tessa Mero
ย 
Introduction to the Art of API Practice
Bill Doerrfeld
ย 
Piwik Presentation
Matthieu Aubry
ย 
Microservice Stategies - Scaling your API design workflow
Jakub Nesetril
ย 
Tools for designing and building great APIs
Kong Inc.
ย 
Writing Slack Bots in JavaScript
Niklas Heidloff
ย 
Lessons learned: Choosing your documentation system
Pronovix
ย 
A Starters Guide to Building APIs with Javascript
All Things Open
ย 
Logic Apps โ€“ Deployments
BizTalk360
ย 
APIdays Paris 2014 - Workshop - Craft and Deploy Your API in a Few Clicks Wit...
Restlet
ย 
API SDK Development โ€“ Lessons Learned
Pronovix
ย 
{Re}designing a Developer Portal
Pronovix
ย 
Serverless Architecture
CodePolitan
ย 

Similar to Documentation-driven development for Python web APIs (20)

PDF
Dependency Down, Flexibility Up โ€“ The Benefits of API-First Development
Nordic APIs
ย 
PDF
apidays LIVE New York - API Code First vs Design First by Phil Sturgeon
apidays
ย 
PPTX
API workshop: Introduction to APIs (TC Camp)
Tom Johnson
ย 
PDF
What is an API Development- Definition, Types, Specifications, Documentation.pdf
Connect Infosoft Technologies Pvt. Ltd.
ย 
PDF
Design Driven API Development
Sokichi Fujita
ย 
PDF
INTERFACE by apidays 2023 - APIs with bounded contexts, Jose Haro Peralta, mi...
apidays
ย 
PPTX
APIs with Bounded Contexts: Modelling Apis with Domain-Driven Design
Josรฉ Haro Peralta
ย 
PPTX
API Documentation Workshop tcworld India 2015
Tom Johnson
ย 
PPT
apidays LIVE New York 2021 - Docs Driven API Development by Rahul Dighe, Paypal
apidays
ย 
PPTX
API Docs with OpenAPI 3.0
Fabrizio Ferri-Benedetti
ย 
PDF
Annotate, Automate & Educate: Driving generated OpenAPI docs to benefit everyone
Pronovix
ย 
PDF
apidays LIVE LONDON - OpenAPI-driven API development lifecycle at Adyen by Al...
apidays
ย 
PDF
API Description Languages
Akana
ย 
PDF
API Description Languages
Akana
ย 
PDF
High quality ap is with api platform
Nelson Kopliku
ย 
PDF
API Docs Made Right / RAML - Swagger rant
Vladimir Shulyak
ย 
PDF
Api clarity webinar
LibbySchulze
ย 
PDF
A Snapshot of API Design Trends In 2019
Bill Doerrfeld
ย 
PDF
Api Penetration Testing and web app pentesting
<h1> hi</h1>
ย 
PPTX
Documenting an API for the First Time? Quick-Start Tips for Your First API Do...
Petko Mikhailov
ย 
Dependency Down, Flexibility Up โ€“ The Benefits of API-First Development
Nordic APIs
ย 
apidays LIVE New York - API Code First vs Design First by Phil Sturgeon
apidays
ย 
API workshop: Introduction to APIs (TC Camp)
Tom Johnson
ย 
What is an API Development- Definition, Types, Specifications, Documentation.pdf
Connect Infosoft Technologies Pvt. Ltd.
ย 
Design Driven API Development
Sokichi Fujita
ย 
INTERFACE by apidays 2023 - APIs with bounded contexts, Jose Haro Peralta, mi...
apidays
ย 
APIs with Bounded Contexts: Modelling Apis with Domain-Driven Design
Josรฉ Haro Peralta
ย 
API Documentation Workshop tcworld India 2015
Tom Johnson
ย 
apidays LIVE New York 2021 - Docs Driven API Development by Rahul Dighe, Paypal
apidays
ย 
API Docs with OpenAPI 3.0
Fabrizio Ferri-Benedetti
ย 
Annotate, Automate & Educate: Driving generated OpenAPI docs to benefit everyone
Pronovix
ย 
apidays LIVE LONDON - OpenAPI-driven API development lifecycle at Adyen by Al...
apidays
ย 
API Description Languages
Akana
ย 
API Description Languages
Akana
ย 
High quality ap is with api platform
Nelson Kopliku
ย 
API Docs Made Right / RAML - Swagger rant
Vladimir Shulyak
ย 
Api clarity webinar
LibbySchulze
ย 
A Snapshot of API Design Trends In 2019
Bill Doerrfeld
ย 
Api Penetration Testing and web app pentesting
<h1> hi</h1>
ย 
Documenting an API for the First Time? Quick-Start Tips for Your First API Do...
Petko Mikhailov
ย 
Ad

Recently uploaded (20)

PPTX
Iobit Driver Booster Pro 12 Crack Free Download
chaudhryakashoo065
ย 
PPTX
NeuroStrata: Harnessing Neuro-Symbolic Paradigms for Improved Testability and...
Ivan Ruchkin
ย 
PPTX
IDM Crack with Internet Download Manager 6.42 [Latest 2025]
HyperPc soft
ย 
PDF
Telemedicine App Development_ Key Factors to Consider for Your Healthcare Ven...
Mobilityinfotech
ย 
PDF
capitulando la keynote de GrafanaCON 2025 - Madrid
Imma Valls Bernaus
ย 
PDF
What Is an Internal Quality Audit and Why It Matters for Your QMS
BizPortals365
ย 
PPTX
How Can Recruitment Management Software Improve Hiring Efficiency?
HireME
ย 
PDF
Continouous failure - Why do we make our lives hard?
Papp Krisztiรกn
ย 
PDF
Alur Perkembangan Software dan Jaringan Komputer
ssuser754303
ย 
PPTX
EO4EU Ocean Monitoring: Maritime Weather Routing Optimsation Use Case
EO4EU
ย 
PPTX
Automatic_Iperf_Log_Result_Excel_visual_v2.pptx
Chen-Chih Lee
ย 
PPTX
ManageIQ - Sprint 264 Review - Slide Deck
ManageIQ
ย 
PDF
Cloud computing Lec 02 - virtualization.pdf
asokawennawatte
ย 
PPTX
IObit Uninstaller Pro 14.3.1.8 Crack Free Download 2025
sdfger qwerty
ย 
PPTX
For my supp to finally picking supp that work
necas19388
ย 
PPTX
Seamless-Image-Conversion-From-Raster-to-wrt-rtx-rtx.pptx
Quick Conversion Services
ย 
PDF
>Wondershare Filmora Crack Free Download 2025
utfefguu
ย 
PPTX
CV-Project_2024 version 01222222222.pptx
MohammadSiddiqui70
ย 
PDF
LPS25 - Operationalizing MLOps in GEP - Terradue.pdf
terradue
ย 
PPTX
Introduction to web development | MERN Stack
JosephLiyon
ย 
Iobit Driver Booster Pro 12 Crack Free Download
chaudhryakashoo065
ย 
NeuroStrata: Harnessing Neuro-Symbolic Paradigms for Improved Testability and...
Ivan Ruchkin
ย 
IDM Crack with Internet Download Manager 6.42 [Latest 2025]
HyperPc soft
ย 
Telemedicine App Development_ Key Factors to Consider for Your Healthcare Ven...
Mobilityinfotech
ย 
capitulando la keynote de GrafanaCON 2025 - Madrid
Imma Valls Bernaus
ย 
What Is an Internal Quality Audit and Why It Matters for Your QMS
BizPortals365
ย 
How Can Recruitment Management Software Improve Hiring Efficiency?
HireME
ย 
Continouous failure - Why do we make our lives hard?
Papp Krisztiรกn
ย 
Alur Perkembangan Software dan Jaringan Komputer
ssuser754303
ย 
EO4EU Ocean Monitoring: Maritime Weather Routing Optimsation Use Case
EO4EU
ย 
Automatic_Iperf_Log_Result_Excel_visual_v2.pptx
Chen-Chih Lee
ย 
ManageIQ - Sprint 264 Review - Slide Deck
ManageIQ
ย 
Cloud computing Lec 02 - virtualization.pdf
asokawennawatte
ย 
IObit Uninstaller Pro 14.3.1.8 Crack Free Download 2025
sdfger qwerty
ย 
For my supp to finally picking supp that work
necas19388
ย 
Seamless-Image-Conversion-From-Raster-to-wrt-rtx-rtx.pptx
Quick Conversion Services
ย 
>Wondershare Filmora Crack Free Download 2025
utfefguu
ย 
CV-Project_2024 version 01222222222.pptx
MohammadSiddiqui70
ย 
LPS25 - Operationalizing MLOps in GEP - Terradue.pdf
terradue
ย 
Introduction to web development | MERN Stack
JosephLiyon
ย 
Ad

Documentation-driven development for Python web APIs