A simple interface to enable/disable your NS
Project description
Here a simple script to enable/disable your NS. This is the equiv of toggling the “Disable Alarms for Today” in the app.
import os
import json
from ns_parental_controls import ParentalControl
def save(**k):
with open('test.json', 'wt') as file:
file.write(json.dumps(k, indent=2))
def load(**k):
if not os.path.isfile('test.json'):
return k
try:
with open('test.json', 'rt') as file:
return json.load(file)
except Exception as e:
print(e)
return k
pc = ParentalControl(
save_state_callback=save,
load_state_callback=load,
callback_kwargs={'random': 'kwargs'}
)
if not pc.access_token:
if not pc.session_token:
print(pc.get_auth_url())
pc.process_auth_link(input('copy paste the button link "select this account" here:\n'))
else:
pc.get_new_access_token()
# True means disable the NS
# False means enable the NS
pc.lock_device('My NS', False)
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
File details
Details for the file ns_parental_controls-1.1.0.tar.gz.
File metadata
- Download URL: ns_parental_controls-1.1.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c16b70d94eab48ace1d43720c4e6e09543ee564f2d78f4833369ff44fcf06693
|
|
| MD5 |
f522a3afc84a994fd48dcd1dc5143b27
|
|
| BLAKE2b-256 |
5a267c03d798daec084c015de6ba55633661473b4b167e7184587bdc5dd3f26b
|