Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 850 Bytes

File metadata and controls

22 lines (16 loc) · 850 Bytes

Enterprise Software Development in Python

Overview

This project includes examples used for the summer course Enterprise Software Development in Python by CompatibL.

Large scale, enterprise quality Python software cannot be built by throwing together scripts and Jupyter notebooks. This four lecture course covers design patterns and best practices for building high quality professional software packages in Python.

Course material includes:

  • Best practices in using classes and inheritance
  • Best practices in testing and unit test frameworks - unittest, pytest
  • Best practices for working with complex data – dataclass, attrs, pydantic
  • Working with SQL databases - sqlalchemy
  • Working with document databases - MongoEngine
  • Designing and responsibly versioning microservices - FastAPI
  • Building web apps - Flask and Bottle