buckket / twtxt

Decentralised, minimalist microblogging service for hackers.
http://twtxt.readthedocs.org/en/stable/
MIT License
1.92k stars 79 forks source link

Use relative imports instead of absolute #62

Closed timofurrer closed 8 years ago

tedder commented 8 years ago

is this common practice?

timofurrer commented 8 years ago

Yes, it is. Check out requests, flask or other well coded python packages ;)

buckket commented 8 years ago

I don’t like (explicit) relative imports, and I don’t see any obvious benefits using them.

timofurrer commented 8 years ago

There is the benefit that you have to type less ... Is there a benefit to use absolute imports for modules in your own package?