SlideShare a Scribd company logo
1 of 70
Download to read offline
Pipenv!
Python Dev Workflow
for Humans
Andreu Vallbona
PyBCN February 2019
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Who am I
Andreu Vallbona @avallbona
Bachelor degree in computer science
Web developer at APSL, Mallorca, Spain
Mainly developing with Python and Django
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
What we do at APSL
Web development
Systems engineering - devops
Data science
Mobile apps
Consulting and formation
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
What it is?
it’s a package and virtualenv
managing system
it’s aimed to replace
the use of pip and virtualenv
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Created by
Kenneth Reitz
Creator of many
useful projects such as:
Requests: HTTP for Humans
Maya: Datetimes for Humans
Records: SQL for Humans
Requests-HTML: HTML Parsing for Humans
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Current state of the art
Before pipenv we used to
create a python environment
with virtualenv
install some packages
freeze the dependencies
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
requirements.txt anatomy
list of dependencies
with pinned versions
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Problems
Problems
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Problems
pip and virtualenv are concepts
difficult to understand for beginners
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Problems
requirements.txt
is difficult to maintain
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Problems
we have to remember
to update the requirements.txt file
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Problems
For different environments
we need to maintain
several requirements.txt files
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Problems
we do not easily know
what python version
the project uses
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Problems
transitive relations
A -> B -> C
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Solutions
Solutions
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
What problems does pipenv solve?
avoid manually maintenance
of the dependencies
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
What problems does pipenv solve?
easy to know which
version of python
the project uses
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
What problems does pipenv solve?
show us the dependencies
in a more concise way
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
What problems does pipenv solve?
update dependencies
securely and automatically
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
What problems does pipenv solve?
allow us to have a
default environment
and a development environment
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Installation
Installation
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Installation
pip install --user pipenv
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Pipfile anatomy
Specify the packages we want
Production and development
sections
Human readable
Toml format
Specify the python version
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Pipfile.lock anatomy
Specify the packages we need
Json format
Machine readable
Easy to parse
Pinned versions
Hashes
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Pipfile.lock anatomy
Specify the packages we need
Json format
Machine readable
Easy to parse
Pinned versions
Hashes
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv install
creates the virtualenv
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv shell
activates the virtualenv
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv install <package-name>
install a package
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv install <package-name> --dev
install a package
in the development environment
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv uninstall <package-name>
uninstall a package
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv clean
uninstall packages
not specified in Pipfile.lock
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv graph
Displays currently installed
dependency graph information
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv run command
runs a command inside
the virtualenv without activating it
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv check
checks for security vulnerabilities
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv lock -r > requirements.txt
generates a requirements.txt file
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
pipenv install -r requirements.txt
imports a requirements.txt file
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
load .env files automatically
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
usage
pipenv install -c .
can discover requirements
from the codebase
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
usage
pipenv check --unused .
show potentially
unused dependencies
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
usage
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Integration
Integration
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Integration with pyenv
pipenv --python 3.4.1 install
integrates well with pyenv
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Integration with pyenv
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Integration with docker
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
Integration with platforms and editors
integrated with
platforms and editors
Heroku (Cloud Hosting)
Platform.sh (Cloud Hosting)
PyUp (Security Notification)
Emacs (Editor Integration)
Fish Shell
(Automatic $ pipenv shell!)
VS Code (Editor Integration)
PyCharm (Editor Integration)
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
utility
Utility
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
utility
Pipenv Pipes
https://github.com/gtalarico/pipenv-pipes
Pipenv Environment Switcher
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
utility
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
caveats
Caveats
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
caveats
It’s slow when locking dependencies
Always tries to update
dependencies by default
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
alternatives
Alternatives
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
alternatives
Poetry
https://poetry.eustace.io/
Hatch
https://github.com/ofek/hatch
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
thanks
Thank you!
Questions?
@avallbona
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
resources of interest
https://www.pythonforbeginners.com/basics/how-to-use-pip-and-pypi
https://realpython.com/pipenv-guide/
https://www.kennethreitz.org/essays/announcing-pipenv
https://nvie.com/posts/better-package-management/
https://nvie.com/posts/pin-your-packages/
https://medium.com/@jimjh/managing-dependencies-in-python-applications-b9c93dda98c2
Pipenv: Python Dev Workflow for Humans
Andreu Vallbona - PyBCN - February 2019
resources of interest
https://www.promptworks.com/blog/pin-all-dependencies
https://www.well-typed.com/blog/2008/04/the-dreaded-diamond-dependency-problem/
https://medium.com/@DJetelina/pipenv-review-after-using-in-production-a05e7176f3f0
https://chriswarrick.com/blog/2018/07/17/pipenv-promises-a-lot-delivers-very-little/
https://np.reddit.com/r/Python/comments/8jd6aq/why_is_pipenv_the_recommended_packaging_tool_by/
http://journal.kennethreitz.org/entry/r-python

More Related Content

Similar to PyBCN - pipenv - python dev workflow for humans

Python In The Browser: Intro to Brython
Python In The Browser: Intro to BrythonPython In The Browser: Intro to Brython
Python In The Browser: Intro to BrythonSusan Tan
 
Intro To JavaScript
Intro To JavaScriptIntro To JavaScript
Intro To JavaScriptIvy Rueb
 
Scientist meets web dev: how Python became the language of data
Scientist meets web dev: how Python became the language of dataScientist meets web dev: how Python became the language of data
Scientist meets web dev: how Python became the language of dataGael Varoquaux
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Ivy Rueb
 
Cloud Foundry for Data Science
Cloud Foundry for Data ScienceCloud Foundry for Data Science
Cloud Foundry for Data ScienceIan Huston
 
Why Python is the Best Coding Language For PWA Development_.ppt
Why Python is the Best Coding Language For PWA Development_.pptWhy Python is the Best Coding Language For PWA Development_.ppt
Why Python is the Best Coding Language For PWA Development_.pptTechinventive Software
 
Automotive Grade Linux on Raspberry Pi: How Does It Work?
Automotive Grade Linux on Raspberry Pi: How Does It Work?Automotive Grade Linux on Raspberry Pi: How Does It Work?
Automotive Grade Linux on Raspberry Pi: How Does It Work?Leon Anavi
 
Building Serverless applications with Python
Building Serverless applications with PythonBuilding Serverless applications with Python
Building Serverless applications with PythonAndrii Soldatenko
 
First python project
First python projectFirst python project
First python projectNeetu Jain
 
Tracing in distributed systems
Tracing in distributed systemsTracing in distributed systems
Tracing in distributed systemsPixel Federation
 
a quick Introduction to PyPy
a quick Introduction to PyPya quick Introduction to PyPy
a quick Introduction to PyPyKai Aras
 
Python 101 For The Net Developer
Python 101 For The Net DeveloperPython 101 For The Net Developer
Python 101 For The Net DeveloperSarah Dutkiewicz
 
Kubernetes_Webinar_Slide_Deck.pdf
Kubernetes_Webinar_Slide_Deck.pdfKubernetes_Webinar_Slide_Deck.pdf
Kubernetes_Webinar_Slide_Deck.pdfAuliaFebrian2
 
CoC23_ Looking at the New Features of Apache NiFi
CoC23_ Looking at the New Features of Apache NiFiCoC23_ Looking at the New Features of Apache NiFi
CoC23_ Looking at the New Features of Apache NiFiTimothy Spann
 
CoC23_ Looking at the New Features of Apache NiFi
CoC23_ Looking at the New Features of Apache NiFiCoC23_ Looking at the New Features of Apache NiFi
CoC23_ Looking at the New Features of Apache NiFissuser73434e
 
A quick overview of why to use and how to set up iPython notebooks for research
A quick overview of why to use and how to set up iPython notebooks for researchA quick overview of why to use and how to set up iPython notebooks for research
A quick overview of why to use and how to set up iPython notebooks for researchAdam Pah
 

Similar to PyBCN - pipenv - python dev workflow for humans (20)

shanghai
shanghaishanghai
shanghai
 
Python In The Browser: Intro to Brython
Python In The Browser: Intro to BrythonPython In The Browser: Intro to Brython
Python In The Browser: Intro to Brython
 
Intro To JavaScript
Intro To JavaScriptIntro To JavaScript
Intro To JavaScript
 
Python in a real life
Python in a real lifePython in a real life
Python in a real life
 
Scientist meets web dev: how Python became the language of data
Scientist meets web dev: how Python became the language of dataScientist meets web dev: how Python became the language of data
Scientist meets web dev: how Python became the language of data
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
 
Cloud Foundry for Data Science
Cloud Foundry for Data ScienceCloud Foundry for Data Science
Cloud Foundry for Data Science
 
Why Python is the Best Coding Language For PWA Development_.ppt
Why Python is the Best Coding Language For PWA Development_.pptWhy Python is the Best Coding Language For PWA Development_.ppt
Why Python is the Best Coding Language For PWA Development_.ppt
 
Automotive Grade Linux on Raspberry Pi: How Does It Work?
Automotive Grade Linux on Raspberry Pi: How Does It Work?Automotive Grade Linux on Raspberry Pi: How Does It Work?
Automotive Grade Linux on Raspberry Pi: How Does It Work?
 
Pyhton-1a-Basics.pdf
Pyhton-1a-Basics.pdfPyhton-1a-Basics.pdf
Pyhton-1a-Basics.pdf
 
Building Serverless applications with Python
Building Serverless applications with PythonBuilding Serverless applications with Python
Building Serverless applications with Python
 
First python project
First python projectFirst python project
First python project
 
Tracing in distributed systems
Tracing in distributed systemsTracing in distributed systems
Tracing in distributed systems
 
a quick Introduction to PyPy
a quick Introduction to PyPya quick Introduction to PyPy
a quick Introduction to PyPy
 
Introduction To Python
Introduction To PythonIntroduction To Python
Introduction To Python
 
Python 101 For The Net Developer
Python 101 For The Net DeveloperPython 101 For The Net Developer
Python 101 For The Net Developer
 
Kubernetes_Webinar_Slide_Deck.pdf
Kubernetes_Webinar_Slide_Deck.pdfKubernetes_Webinar_Slide_Deck.pdf
Kubernetes_Webinar_Slide_Deck.pdf
 
CoC23_ Looking at the New Features of Apache NiFi
CoC23_ Looking at the New Features of Apache NiFiCoC23_ Looking at the New Features of Apache NiFi
CoC23_ Looking at the New Features of Apache NiFi
 
CoC23_ Looking at the New Features of Apache NiFi
CoC23_ Looking at the New Features of Apache NiFiCoC23_ Looking at the New Features of Apache NiFi
CoC23_ Looking at the New Features of Apache NiFi
 
A quick overview of why to use and how to set up iPython notebooks for research
A quick overview of why to use and how to set up iPython notebooks for researchA quick overview of why to use and how to set up iPython notebooks for research
A quick overview of why to use and how to set up iPython notebooks for research
 

More from Andreu Vallbona Plazas

More from Andreu Vallbona Plazas (6)

Localhost to the internet
Localhost to the internetLocalhost to the internet
Localhost to the internet
 
Apsl attrs
Apsl   attrsApsl   attrs
Apsl attrs
 
Apsl pycharm + docker
Apsl   pycharm + dockerApsl   pycharm + docker
Apsl pycharm + docker
 
Apsl testing
Apsl   testingApsl   testing
Apsl testing
 
Apsl translation manager
Apsl   translation managerApsl   translation manager
Apsl translation manager
 
Pytest - testing tips and useful plugins
Pytest - testing tips and useful pluginsPytest - testing tips and useful plugins
Pytest - testing tips and useful plugins
 

Recently uploaded

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 

Recently uploaded (20)

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 

PyBCN - pipenv - python dev workflow for humans

  • 1. Pipenv! Python Dev Workflow for Humans Andreu Vallbona PyBCN February 2019
  • 2. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Who am I Andreu Vallbona @avallbona Bachelor degree in computer science Web developer at APSL, Mallorca, Spain Mainly developing with Python and Django
  • 3. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 What we do at APSL Web development Systems engineering - devops Data science Mobile apps Consulting and formation
  • 4. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 What it is? it’s a package and virtualenv managing system it’s aimed to replace the use of pip and virtualenv
  • 5. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Created by Kenneth Reitz Creator of many useful projects such as: Requests: HTTP for Humans Maya: Datetimes for Humans Records: SQL for Humans Requests-HTML: HTML Parsing for Humans
  • 6. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Current state of the art Before pipenv we used to create a python environment with virtualenv install some packages freeze the dependencies
  • 7. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 requirements.txt anatomy list of dependencies with pinned versions
  • 8. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Problems Problems
  • 9. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Problems pip and virtualenv are concepts difficult to understand for beginners
  • 10. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Problems requirements.txt is difficult to maintain
  • 11. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Problems we have to remember to update the requirements.txt file
  • 12. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Problems For different environments we need to maintain several requirements.txt files
  • 13. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Problems we do not easily know what python version the project uses
  • 14. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Problems transitive relations A -> B -> C
  • 15. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Solutions Solutions
  • 16. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 What problems does pipenv solve? avoid manually maintenance of the dependencies
  • 17. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 What problems does pipenv solve? easy to know which version of python the project uses
  • 18. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 What problems does pipenv solve? show us the dependencies in a more concise way
  • 19. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 What problems does pipenv solve? update dependencies securely and automatically
  • 20. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 What problems does pipenv solve? allow us to have a default environment and a development environment
  • 21. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Installation Installation
  • 22. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Installation pip install --user pipenv
  • 23. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Pipfile anatomy Specify the packages we want Production and development sections Human readable Toml format Specify the python version
  • 24. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Pipfile.lock anatomy Specify the packages we need Json format Machine readable Easy to parse Pinned versions Hashes
  • 25. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Pipfile.lock anatomy Specify the packages we need Json format Machine readable Easy to parse Pinned versions Hashes
  • 26. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage Usage
  • 27. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv install creates the virtualenv
  • 28. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 29. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv shell activates the virtualenv
  • 30. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 31. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv install <package-name> install a package
  • 32. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 33. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv install <package-name> --dev install a package in the development environment
  • 34. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 35. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv uninstall <package-name> uninstall a package
  • 36. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 37. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv clean uninstall packages not specified in Pipfile.lock
  • 38. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 39. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv graph Displays currently installed dependency graph information
  • 40. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 41. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv run command runs a command inside the virtualenv without activating it
  • 42. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 43. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv check checks for security vulnerabilities
  • 44. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 45. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv lock -r > requirements.txt generates a requirements.txt file
  • 46. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 47. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage pipenv install -r requirements.txt imports a requirements.txt file
  • 48. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 49. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 50. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage load .env files automatically
  • 51. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Usage
  • 52. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 usage pipenv install -c . can discover requirements from the codebase
  • 53. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 usage
  • 54. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 usage pipenv check --unused . show potentially unused dependencies
  • 55. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 usage
  • 56. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Integration Integration
  • 57. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Integration with pyenv pipenv --python 3.4.1 install integrates well with pyenv
  • 58. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Integration with pyenv
  • 59. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Integration with docker
  • 60. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 Integration with platforms and editors integrated with platforms and editors Heroku (Cloud Hosting) Platform.sh (Cloud Hosting) PyUp (Security Notification) Emacs (Editor Integration) Fish Shell (Automatic $ pipenv shell!) VS Code (Editor Integration) PyCharm (Editor Integration)
  • 61. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 utility Utility
  • 62. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 utility Pipenv Pipes https://github.com/gtalarico/pipenv-pipes Pipenv Environment Switcher
  • 63. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 utility
  • 64. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 caveats Caveats
  • 65. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 caveats It’s slow when locking dependencies Always tries to update dependencies by default
  • 66. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 alternatives Alternatives
  • 67. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 alternatives Poetry https://poetry.eustace.io/ Hatch https://github.com/ofek/hatch
  • 68. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 thanks Thank you! Questions? @avallbona
  • 69. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 resources of interest https://www.pythonforbeginners.com/basics/how-to-use-pip-and-pypi https://realpython.com/pipenv-guide/ https://www.kennethreitz.org/essays/announcing-pipenv https://nvie.com/posts/better-package-management/ https://nvie.com/posts/pin-your-packages/ https://medium.com/@jimjh/managing-dependencies-in-python-applications-b9c93dda98c2
  • 70. Pipenv: Python Dev Workflow for Humans Andreu Vallbona - PyBCN - February 2019 resources of interest https://www.promptworks.com/blog/pin-all-dependencies https://www.well-typed.com/blog/2008/04/the-dreaded-diamond-dependency-problem/ https://medium.com/@DJetelina/pipenv-review-after-using-in-production-a05e7176f3f0 https://chriswarrick.com/blog/2018/07/17/pipenv-promises-a-lot-delivers-very-little/ https://np.reddit.com/r/Python/comments/8jd6aq/why_is_pipenv_the_recommended_packaging_tool_by/ http://journal.kennethreitz.org/entry/r-python