Skip to main content

Quick access to code favorites

Project description

ooq

Quick access to code favorites.

We all have our go-to utils and awesome tools. Some of us are annoyed at having to type long dotpaths to the object we want to import. Some of us probably forget where that particular object is in the first place.

This is to mitigate that.

Instead do this:

from ooq.my_medley import that_object

Also have several my_medley sets of favorites, since what you'll need depends on the context.

Word of advice: This tool is meant for the quick-and-dirty development context

Don't use this for production or any long-term code. It's meant for pulling things together quickly. Once the code matures, you should import "normally".

Usage

See what modules are available to import

>>> from ooq import source_module_names
>>> source_module_names
['tw', 'ca']

See what that module is about (if the author cared to say)

>>> from ooq import tw
>>> print(tw.__doc__)

A medley of my most frequently used tools.

Import it (as a module object)

from ooq import tw
# or from ooq import tw as my_own_name

Inject the module's contents in your current namespace (if you're that type)

from ooq.tw import *

Inject everything there is in your namespace (but expect unpredictable name collisions)

from ooq import *

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ooq-0.0.2.tar.gz (1.9 kB view hashes)

Uploaded Source

Built Distribution

ooq-0.0.2-py3-none-any.whl (2.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page