hwsuk / discord-bot

Multi-purpose Discord bot for the HWSUK Discord server
2 stars 1 forks source link

Feat/ebay cog #16

Closed issy closed 3 years ago

issy commented 3 years ago

This is a price checking cog that checks the ebay website for pricing on an item. Command aliases are as follows:

issy commented 3 years ago

some general comments on top: your code could do with some formatting (empty lines to make it easier to read). also, you should not be using camelCase variable names in Python, PEP-8 calls the use of snake_case instead

I'm aware of the PEP-8 naming conventions, and I disagree with them. I purposefully use camelCase for non-global variables and snake_case for functions to distinguish between the two. For me, this is much more readable and this ideology is applied to 90% of the code in this repo.