JJJohannes Jarbrattinjohachi.hashnode.dev·Aug 17, 2021 · 10 min readImportant gotchas with BackgroundTasks in FastAPIMy team and I really fell in love with FastAPI when we started using it almost a year and a half ago. It really is a great framework with its great performance, how easy it is to use with async code, its tight integration with Pydantic, and how easy ...00
JJJohannes Jarbrattinjohachi.hashnode.dev·Aug 8, 2021 · 5 min readUpload files to S3 from Remote ServerScope How to send your backend a URL to a file that is then uploaded to S3 without first having to download the whole file to disk or memory. This guide uses Python but the same technique can be used with other languages as well. To keep the guide sh...00
JJJohannes Jarbrattinjohachi.hashnode.dev·Apr 17, 2021 · 4 min readLowercase all values on a key for all documents in MongoDBBackground Imagine the following document: { "first_name": "John", "last_name": "Doe", "username": "doetheman" } Our team a document like this and a problem; our system is case-sensitive for the value of username. We did lowercase the value o...00