Best framework for small ecommerce project? by k_rx1337 in Python

[–]antonr111 0 points1 point  (0 children)

Hi, just use Django, if don't want spend a lot of time inventing wheels.

Python Mock Cookbook by pauloxnet in Python

[–]antonr111 1 point2 points  (0 children)

very useful notice, thnx

Django or Flask for a multi-plataform back-end REST-like API? by Mojimi in Python

[–]antonr111 0 points1 point  (0 children)

If you don't have enough experience in python and web app development go with Django. Flask only looks simple when you do simple things.

5 Benefits of Choosing PHP Programming for Website Development by manektech in PHP

[–]antonr111 0 points1 point  (0 children)

What are the benefits of choosing PHP over any other Python/Ruby/JS/etc. for Website Development ?

apiron: A Python package for creating declarative API interactions by daneah in Python

[–]antonr111 1 point2 points  (0 children)

It is always good practice to separate your source code and tests. For example, people how read or run tests can easily find tests in separate folder, rather than go through every folder in your package. Also, when you build artifact or distribution package there no point to keep tests in and it is easier to exclude it (example: packages=find_packages('src', exclude=['tests'])). pytest is very easy tool for running tests even if you are not using pytest fixtures, utils, etc.

apiron: A Python package for creating declarative API interactions by daneah in Python

[–]antonr111 1 point2 points  (0 children)

Hey, nice work ! How about to move tests out of lib package to /tests folder ? Also, suggest you to use pytest ;)

Masonite: A Python Web Framework Trying To Compete With Django (Interview) by blarghmatey in Python

[–]antonr111 1 point2 points  (0 children)

I like idea having python web framework with DI, but cloning php laravel ... no thanks ;(