Python package for preventing use of variables from global scope.
Project description
safescope
safescope is a small python package useful for development in jupyter notebooks.
The goal is to prevent functions from using global variables and instead raise a NameError
.
This is achieved by mimicking a module, and define all functions in that module (named side_scope
).
Example
The main part of safescope is the decorator @safescope
. This mimics writing the function in a file side_scope.py
and importing this function to the notebook. Hence, functions decorated with @safescope
will not have access to variables declared in the notebook environment.
In the example below, only foo(1)
will execute, as bar(1)
returns a NameError
.
from safescope import safescope
x = 9
def foo(y):
return x + y
@safescope
def bar(y):
return x + y
foo(1) # Returns 10
bar(1) # Raise "NameError: name 'x' is not defined"
By using Imports
, the imports are added to both the main scope and the side_scope
, making them available for the functions decorated with @safescope
.
from safescope import safescope, Imports
with Imports():
import numpy as np
@safescope
def arange(n):
return np.arange(n)
arange(4) # Returns array([0, 1, 2, 3])
Installation
safescope can either be installed from pypi with pip/pip3:
pip install safescope
or from github with:
pip install git+git://github.com/havakv/safescope.git
or from source by cloning the repo:
git clone https://github.com/havakv/safescope.git
cd safescope
python setup.py install
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file safescope-0.2.6.tar.gz
.
File metadata
- Download URL: safescope-0.2.6.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55e09e7068182746e3de4f127ea6bf25bd1205ff8db0baaafe0d9bb17b6d3e3c |
|
MD5 | 8c738b307442f104d595faa661414bca |
|
BLAKE2b-256 | e2b284cb268f62e8c9a04d060bc0ec51178e131245ebc2d37658fb8078b8bfaf |
File details
Details for the file safescope-0.2.6-py2.py3-none-any.whl
.
File metadata
- Download URL: safescope-0.2.6-py2.py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3726599d268e9f9cbc48ca31fd35a0b73fe26598e2cc93347fe221f67f9c3669 |
|
MD5 | d3736566e4e719e7b5c027a617198f2f |
|
BLAKE2b-256 | 0457bf87f8204a4b21b79e8cfc7c7bb7eedbc475d2c5d4937102dd3519ebf734 |