pytest
fastapi
pytest | fastapi | |
---|---|---|
39 | 557 | |
12,865 | 87,210 | |
0.9% | 2.5% | |
9.8 | 9.8 | |
4 days ago | 4 days ago | |
Python | Python | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
pytest
-
Most Effective Approaches for Debugging Applications
Large-scale changes to fix a bug often introduce unintended side effects, making incremental fixes a safer approach. Robbin Schuchmann, Co-Founder of EOR Overview, advises, “Applying fixes incrementally is the most reliable way to correct bugs in applications.” By adjusting one variable or function at a time and validating each change with tools like pytest or Mocha, developers ensure fixes are effective without destabilizing the system. This aligns with test-driven development (TDD), which a 2022 IEEE study found reduces defect rates by 15%. Incremental fixes also simplify rollbacks, preserving stability.
-
10 Useful Tools and Libraries for Python Developers
5. Pytest - Simple Yet Powerful Testing
-
How to Run Tests in Visual Studio Code: A Complete Guide
Python: pytest
- Testando código que chama serviços da AWS
- Ruby "Thread Contention" Is Simply GVL Queuing
-
staging and QA will not save your systems
Unit Testing: JUnit, Mocha, PyTest
-
How ReportPortal "Made" Pytest Run Twice
Quotation marks in pytest command collects duplicate tests #7012
-
The Top 9️⃣ Repositories to learn Python programming + Resources (Extra) 🤯
⭐️ Pytest on GitHub.
- Local Variables as Accidental Breadcrumbs for Faster Debugging
-
Integrating Lab Equipment into pytest-Based Tests
In this blog post I want to demonstrate how my lab equipment such as a lab power supply or a digital multimeter (DMM) have been integrated into some pytest-based tests. Would love to get your feedback and thoughts! 🚀
fastapi
-
Reflections on OpenAI
Doesn't it bother anybody that their product heavily relies on FastAPI according to this post yet they haven't donated to the project or aren't listed as sponsors?
https://github.com/sponsors/tiangolo#sponsors
https://github.com/fastapi/fastapi?tab=readme-ov-file#sponso...
-
Building MIA: A WhatsApp AI Assistant to Escape Subscription Hell
Resources mentioned: FastAPI Documentation, Pydantic AI GitHub, WhatsApp Business API, OpenAI API Documentation
-
Python's FastAPI and How It Compares to Express
FastAPI is a high-performance framework enhancing Python development with type-hinting and asynchronous processing. FastAPI provides a high-performing, reliable solution developers seeking concurrency. An additional useful resource is the FastAPI documentation: https://fastapi.tiangolo.com/.
-
Top 7 Open-Source Projects to Contribute to in 2025
🔗 https://github.com/fastapi/fastapi
-
Type safe web stack with Rust and TypeScript
> Ideally I'd like to be able to write types in typescript, and write python types, then verify that the types are compatible (not identical)
Have a look at https://fastapi.tiangolo.com/
FastAPI allows you to define your types in Python using Pydantic for stronger type guarantees. FastAPI also generates an OpenAPI.json file for your backend and then you can feed this OpenAPI.json document into https://github.com/OpenAPITools/openapi-generator to generate a typescript library that contains all the types. Then you don't need to verify your types, because the typescript types will be directly generated from your Python types. The generated typescript library also contains methods for each of your REST endpoints, so that you don't have to think about network requests.
-
FastAPI vs Nexios: A Comprehensive Comparison of Modern Python Web Frameworks
Official Documentation
-
FastAPI: A Python Web Framework for NodeJS Developers
FastAPI's docs are a goldmine: https://fastapi.tiangolo.com/
- 🚗👁️ Segmentation d'Images pour pour le système embarqué d’une voiture autonome
-
Getting Started with FastAPI: A Beginner’s Guide Using Python 🐍
Official FastAPI Docs
-
How to build image search with semantic understanding
FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.7+ based on standard Python type hints. We use it to build the web API for the image search.
What are some alternatives?
Slash - The Slash testing infrastructure
Tornado - Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
Robot Framework - Generic automation framework for acceptance testing and RPA
AIOHTTP - Asynchronous HTTP client/server framework for asyncio and Python
nose2 - The successor to nose, based on unittest2
Flask - The Python micro framework for building web applications.