Skip to main content

myopy, run blind python files.

Project description

tests pypi

myopy

Run blind python files.

This single class package, provides python objects to a python file at run time. This is ideal for configuration files where the user does not need to know where an object comes from or how to initialize it. It allows the python file to be blind to the origin of it's objects, removing the need for imports, object initializations or convoluted subclassing.

This is pretty much a standalone clone of the way the amazing qutebrowser handles it's config files.

Feel free to copy paste the PyFile class if you don't want the added dependency.

Installation

pip install myopy

Usage

Say you want to allow the user to change a dict containing some settings for an application in a configuration file called config.py:

In the application you would have something along the lines of:

from myopy import PyFile

user_dict = {'something': 2}

config = PyFile('path/to/config.py')
config.provide('settings', user_dict)  # we provide the config file the user_dict in the settings variable
module = config.run()  # returns a module object
print('after running config: ', user_dict)
print('module: ', module)

And in the user facing config.py, the user_dict object would be provided in the settings variable, and the user can change its values at will:

print('in config: ', settings)
settings['something_else'] = 4
settings['something'] = 3

The output would be:

in config: {'something': 2}
after running config: {'something': 3, 'something_else': 4}
module: <module 'config' from 'path/to/config.py'>

the user_dict is modified in place.

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

myopy-1.0.tar.gz (3.9 kB view details)

Uploaded Source

Built Distribution

myopy-1.0-py3-none-any.whl (4.2 kB view details)

Uploaded Python 3

File details

Details for the file myopy-1.0.tar.gz.

File metadata

  • Download URL: myopy-1.0.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.6.9 Linux/4.15.0-91-generic

File hashes

Hashes for myopy-1.0.tar.gz
Algorithm Hash digest
SHA256 14bd016f74b64a2dbea6544815751682e744cb05de556348eda28be2ac4c4573
MD5 b4827be7e377a42d908e3c74923966d0
BLAKE2b-256 0586200bf80bcfb5c0e3cd544002ced2a49de36f087e92668ff3ba7b471cb633

See more details on using hashes here.

File details

Details for the file myopy-1.0-py3-none-any.whl.

File metadata

  • Download URL: myopy-1.0-py3-none-any.whl
  • Upload date:
  • Size: 4.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.6.9 Linux/4.15.0-91-generic

File hashes

Hashes for myopy-1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bfddd85ae9458829ee70e67ba2358ab8c8ef6fbd4e5503dc4e0500a1777c3f92
MD5 c8d0f32cdfa2b51eefd7b846e8aafeea
BLAKE2b-256 eda748ba9551776d4d07373cfe4b02d0072939715fc55fade568ae0fae71a67e

See more details on using hashes here.

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