sandptel / captcha_iitkgp

This repository aims to provide a deployable model to solve the captchas given in the erp website.
MIT License
9 stars 4 forks source link

Restructure files and folders names #15

Closed CaiqueCoelho closed 1 year ago

CaiqueCoelho commented 1 year ago

PR for issue #12

In Python, there are conventions for naming files, directories (folders), and attributes. These conventions are part of the PEP 8 style guide, which provides coding standards for Python code. Here are some of the conventions related to naming:

Module Names (files):

Package Names (directories/folders for modules):

Also it's advisable to use model_training over training_model as it follows a more logical structure: subject (model) followed by action (training). This naming convention is intuitive and aligns with common practices, making it easier for others to understand the purpose of the file at a glance.