No pre-commit by Yelp videos yet. You could help us improve this page by suggesting one.
Python Poetry might be a bit more popular than pre-commit by Yelp. We know about 164 links to it since March 2021 and only 153 links to pre-commit by Yelp. We are tracking product recommendations and mentions on various public social media platforms and blogs. They can help you identify which product is more popular and what people think of it.
At the moment the script is triggered by a local pre-commit hook which also Installs the Python dependencies in a separate environment:. - Source: dev.to / 1 day ago
The time he hardcoded a token into the repo? → That’s when we finally added Git hooks and implemented secret scanning. - Source: dev.to / about 1 month ago
Pre-commit: A framework for automatically running predefined checks (hooks) before Git commits (official website). pre-commit itself is also installed as a development dependency with uv pip install -e ".[dev,test]". To start using it, run pre-commit install once in the repository root. This sets up the Git hooks, and checks will run automatically on subsequent commits. - Source: dev.to / about 1 month ago
Pre-commit is a framework for managing and maintaining multi-language pre-commit hooks, ensuring consistency and quality in your codebase by running checks before a commit is finalized. - Source: dev.to / 5 months ago
Just give you an idea of how to implement a template for serverless in your organization; you can create multiple cases and embed the practice of your organization to the template like pre-commit, cicd, lambda-layer-secret, lambda-layer-powertools and more. - Source: dev.to / 6 months ago
To simplify the discussion we will talk about software packages: components in a packaged form produced by third parties. This includes not only components used by package managers like NPM or Poetry, but also operating system components including libraries and executable binaries, container images, and virtual machines, or tool extensions for development, build, and deployment tools. - Source: dev.to / 2 days ago
However, one problem appeared and was bothering me too much. I need to use Poetry for some projects at work, and everything Worked great while I was using it in bash, whoever, when I made the switch to Fish, all of the sudden poetry stopped working for me. - Source: dev.to / 9 days ago
If you’ve been managing Python projects long enough, you’ve probably dealt with a mess of tools: pip, pip-tools, poetry, virtualenv, conda, maybe even pdm. - Source: dev.to / 2 months ago
First, there was pip. Combined with a requirements.txt, it seemed like a great idea – a straightforward method to declare dependencies explicitly. Luckily, we quickly realized this method tends to spiral into chaos, particularly when developers use "tricks" like pip freeze to lock dependencies rigidly. Fortunately, the Python ecosystem has evolved, introducing modern solutions like Poetry and now uv, offering... - Source: dev.to / 3 months ago
Anyway, enough reminiscing about the past, this is not intended to be the ultimate guide on asynchronous programming, but a more pragmatic quick-start guide I wish I had back then. Assuming we are in a properly managed project (either through tools like poetry or uv), let’s start with a new module telegram.py for our telegram bot. Remember to add python-telegram-bot dependency to the project. - Source: dev.to / 4 months ago
EditorConfig - EditorConfig is a file format and collection of text editor plugins for maintaining consistent coding styles between different editors and IDEs.
Conda - Binary package manager with support for environments.
mypy - Mypy is an experimental optional static type checker for Python that aims to combine the benefits of dynamic (or "duck") typing and static typing.
pip - The PyPA recommended tool for installing Python packages.
flake8 - A wrapper around Python tools to check the style and quality of Python code.
pipenv - Python Development Workflow for Humans. Contribute to pypa/pipenv development by creating an account on GitHub.