├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── doc ├── RELEASE_NOTES.md ├── code_overview.rst └── writing_codelets.rst ├── examples ├── Water diffusion.ipynb ├── group_data_items.py ├── import_modules.py ├── internal_files.py ├── internal_modules.py ├── plotting.py ├── ref_to_library.py ├── ref_to_simple.py ├── simple.py ├── snapshot.py └── test_internal_files.py ├── lib └── activepapers │ ├── __init__.py │ ├── builtins2.py │ ├── builtins3.py │ ├── cli.py │ ├── contents.py │ ├── execution.py │ ├── exploration.py │ ├── library.py │ ├── standardlib.py │ ├── standardlib2.py │ ├── standardlib3.py │ ├── storage.py │ ├── url.py │ ├── url2.py │ ├── url3.py │ ├── utility.py │ ├── utility2.py │ ├── utility3.py │ └── version.py ├── scripts └── aptool ├── setup.py └── tests ├── foo ├── __init__.py └── bar.py ├── run_all_tests.sh ├── test_basics.py ├── test_exploration.py ├── test_features.py ├── test_library.py ├── test_python_modules.py └── test_references.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/README.md -------------------------------------------------------------------------------- /doc/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/doc/RELEASE_NOTES.md -------------------------------------------------------------------------------- /doc/code_overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/doc/code_overview.rst -------------------------------------------------------------------------------- /doc/writing_codelets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/doc/writing_codelets.rst -------------------------------------------------------------------------------- /examples/Water diffusion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/Water diffusion.ipynb -------------------------------------------------------------------------------- /examples/group_data_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/group_data_items.py -------------------------------------------------------------------------------- /examples/import_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/import_modules.py -------------------------------------------------------------------------------- /examples/internal_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/internal_files.py -------------------------------------------------------------------------------- /examples/internal_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/internal_modules.py -------------------------------------------------------------------------------- /examples/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/plotting.py -------------------------------------------------------------------------------- /examples/ref_to_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/ref_to_library.py -------------------------------------------------------------------------------- /examples/ref_to_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/ref_to_simple.py -------------------------------------------------------------------------------- /examples/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/simple.py -------------------------------------------------------------------------------- /examples/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/snapshot.py -------------------------------------------------------------------------------- /examples/test_internal_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/examples/test_internal_files.py -------------------------------------------------------------------------------- /lib/activepapers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/__init__.py -------------------------------------------------------------------------------- /lib/activepapers/builtins2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/builtins2.py -------------------------------------------------------------------------------- /lib/activepapers/builtins3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/builtins3.py -------------------------------------------------------------------------------- /lib/activepapers/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/cli.py -------------------------------------------------------------------------------- /lib/activepapers/contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/contents.py -------------------------------------------------------------------------------- /lib/activepapers/execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/execution.py -------------------------------------------------------------------------------- /lib/activepapers/exploration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/exploration.py -------------------------------------------------------------------------------- /lib/activepapers/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/library.py -------------------------------------------------------------------------------- /lib/activepapers/standardlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/standardlib.py -------------------------------------------------------------------------------- /lib/activepapers/standardlib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/standardlib2.py -------------------------------------------------------------------------------- /lib/activepapers/standardlib3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/standardlib3.py -------------------------------------------------------------------------------- /lib/activepapers/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/storage.py -------------------------------------------------------------------------------- /lib/activepapers/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/url.py -------------------------------------------------------------------------------- /lib/activepapers/url2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/url2.py -------------------------------------------------------------------------------- /lib/activepapers/url3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/url3.py -------------------------------------------------------------------------------- /lib/activepapers/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/utility.py -------------------------------------------------------------------------------- /lib/activepapers/utility2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/utility2.py -------------------------------------------------------------------------------- /lib/activepapers/utility3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/lib/activepapers/utility3.py -------------------------------------------------------------------------------- /lib/activepapers/version.py: -------------------------------------------------------------------------------- 1 | version = '0.2.2' 2 | -------------------------------------------------------------------------------- /scripts/aptool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/scripts/aptool -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/foo/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = 42 2 | -------------------------------------------------------------------------------- /tests/foo/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/tests/foo/bar.py -------------------------------------------------------------------------------- /tests/run_all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/tests/run_all_tests.sh -------------------------------------------------------------------------------- /tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/tests/test_basics.py -------------------------------------------------------------------------------- /tests/test_exploration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/tests/test_exploration.py -------------------------------------------------------------------------------- /tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/tests/test_features.py -------------------------------------------------------------------------------- /tests/test_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/tests/test_library.py -------------------------------------------------------------------------------- /tests/test_python_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/tests/test_python_modules.py -------------------------------------------------------------------------------- /tests/test_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepapers/activepapers-python/HEAD/tests/test_references.py --------------------------------------------------------------------------------