Work with JSON which is stored as a value in a JavaScript file
Project description
python-js-files
This is a collection of Python functions for manipulating JavaScript "data files" -- that is, JavaScript files that define a single variable with a JSON value.
This is an example of a JavaScript data file:
const shape = { "sides": 5, "colour": "red" };
Think of this module as the JSON module, but for JavaScript files.
Usage
- You can read a JavaScript file with
read_js(path, varname)
- You can write a JavaScript file with
write_js(path, value, varname)
- You can append an item to a JavaScript array with
append_to_js_array(path, value)
- You can append a key-value pair to a JavaScript object with
append_to_js_object(path, key, value)
Installation
You have two options:
-
Copy the file
src/javascript
folder into your project. You probably want to copy the tests as well. -
Install the package using pip:
$ pip install alexwlchan-python-js-files
Why not use JSON files?
If you've opening an HTML file from disk, you can load data from a local JavaScript file, for example:
<script src="file://users/alexwlchan/repos/python-js-files/data.js"></script>
This is the only way to load data from an external file from an HTML file you've opened locally -- you can't do this with a JSON file, for example.
I have a lot of HTML files and local sites I build with an HTML viewer and metadata in a JavaScript file. The convenience of this approach outweighs the mild annoyance of having to store data in JavaScript, not JSON.
License
MIT.
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 alexwlchan_python_js_files-1.0.1.tar.gz
.
File metadata
- Download URL: alexwlchan_python_js_files-1.0.1.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8463e71d82d24fee4316423ae362cbcbce38db894c3a5e734cdf22c62240b7e5 |
|
MD5 | d361f3b5ad2366efd44763812c0e958c |
|
BLAKE2b-256 | 08d401af1eb7545240e2b83ea774c0d352b3192459b4e0420760f48abdd9cd09 |
File details
Details for the file alexwlchan_python_js_files-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: alexwlchan_python_js_files-1.0.1-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6dd268ce96d34785579c670c6eeb6ef17a2ec62b0eaf7493febc7b23894967c3 |
|
MD5 | deacee24a66efba221aec27fc98cbffe |
|
BLAKE2b-256 | 2e49184e405f12e46e32fbc9887a9ced72ccde698f6cfeae3459afa12d5c4f48 |