Flavio Curella

Results 58 comments of Flavio Curella

I've created https://github.com/joke2k/faker/issues/1636 to keep track of the efforts re: pakaging

Could it possibly be an issue o Python 38 that got fixed in 3.9? Either way, I'm not sure what we could do to fix this. I'm open to any...

Sounds like a good idea. Do you have time to prepare a Pull Request?

The dynamic `zip_safe` was introduced in https://github.com/joke2k/faker/pull/212, and I believe it may affect "frozen" installations, such as `PyInstaller` or `cx_freeze` (see https://github.com/joke2k/faker/pull/927)

IMHO, if `positive` is specified, `0` should _never_ be returned, since `0` is neither positive or negative: `0` is just zero. That means that when `positive` is `True`, the lower...

@Tayum Thanks, I wasn't aware of `Decimal.next_plus()`. @jhbuhrman I agree with everything you said. `pydecimal` needs be locale-aware, which means we'll need an additional `python` provider for `nl_BE` and `fr_BE`,...

@tplessas thank you so much for volounteering! Go for it!

@AABur we want to move away from `setuptools` and to pep517. Switching to `poetry` (or any other non-`setup.py` based system) is part of the plan.

Thank you for your interest @e-panourgia ! Unfortunately, I don't think sports is a case common enough to be included in the main `Faker` distribution. If you want to implement...

Since the provider is localized, wouldn't all cities belong to the same country? For example: ```python from faker import Faker en_us_faker = Faker() # Defaults to `en_US` it_it_fake = Faker('it_IT')...