NLP - Before the “Interesting Stuff”
(and why it still could matter)

Search for a command to run...
Articles tagged with #python
(and why it still could matter)

Python’s all about clean, readable code, and it’s packed with features that make life easier for developers. One of those features is the @property decorator. It lets you control how attributes are accessed and modified without cluttering your code. ...
In order to make my code more readable and it helping with debugging, I have been more and more implementing type annotations into my code. Type hints were introduced PEP 484 (Python 3.5) to improve code readability, maintainability, and tooling supp...

This is the approach I’ve adopted for implementing Continuous Integration and Continuous Deployment (CI/CD) for a Python project using Behavior-Driven Development (BDD) with behave and Test-Driven Development (TDD) principles (albeit without the stri...