I know that naming a Python module starting with a number is a bad idea, as stated in this other question, but I'm wondering if is it legal to do so in a Python package, not module (aka file).
For example. I want to integrate a Django website with some external APIs and I wanted to create a "third party" package, containing a file for each provider, and I don't know if calling it 3rd_party
will become a headache or I should name it third_party
instead, to avoid problems.
Note: I don't know if it matters, but I'm using Python 2.7