Tools for pickling Python objects in completely different way
Project description
Rickled
....
&((((((((((((((%,
#(*,*((//(((((((((((%.
,((*,&, .,.(#(((#((((%
/((((((/(/////(/###(((((((%
#(((((/(/(((//(/(/(((((((((%
.((((# #/#. %#((((((((%
,(((/ # %((((((((#*
,((((* #(/ &((((((((((%
,((((%(((((/#/((//(#((((#((((##,
((%(@@&///@%/(/@//@@(#(##((((((/
%&@@@@@@@,&,@&@@@@@@@@#&(((((((&
##&&@@@@@@@@@@@&#(##@&#%#((((((#
#(###(#&.(*#*&/#*&%#(%(##(((((((,
%((#(((//(/(/(///((#((((((((((((/
%/#((((//////////(((((((((((((((#
%((((((///////////((((((((((((((@
%((((((//////////(((((((((((((((#
#((((((/(//////(/((((((((#(((((((
#((((((/////(((/((((((((((##/((#(.
%((((((//////(/(((((((((((##/((((.
#((((((//(///((((((((((((##((((((.
#(((((((((//(((((((((((((((((((((
*(((((((///(//(((((((((((((((((((#
(((#(((/////////(((((((((((((((((%
%((((((////////((((((((((((((((((@
*(((((((/////////(((((((((((((((((/
&(((((((/(///(((((#(((((((((((((((
*((((((((/////((((((((((((((((((((&
(((((((((///((/(((((((((((((((((((/
%(((((((#////(/(((((((((((((((((((#.
.#((((((((///((((((((((((((((#((((((
*(/#(((((((/(/((((((((((((((((((((#.
%((/(((((/(/(/(((((((((((((((###((..
#(((((/##((/((((((((((((((((###((..
#(((((((((((((((((((((#(#(((((((,,
.#(((((((((((((((((((((((((###((/.
#((((((((((((((((((((((((((((((
*(((((#(/#(//((((((((((((((((..
&(//##(//(//((//((((((((((#
*///(//////////(((((///#
*#//////////(///(#/
_______ _ __ __ __
|_ __ \ (_) [ | _ [ | | ]
| |__) | __ .---. | | / ] | | .---. .--.| |
| __ / [ | / /'`\] | '' < | |/ /__\\/ /'`\' |
_| | \ \_ | | | \__. | |`\ \ | || \__.,| \__/ |
|____| |___|[___]'.___.'[__| \_][___]'.__.' '.__.;__]
by Zipfian Science
Python tools for creating a different type of pickling by Zipfian Science.
Rickle is a lightweight tool for loading and writing very small Python objects to YAML or JSON representations. This is especially useful for creating YAML config files and serialising them as Python objects. Works great in interactive Python environments like notebooks.
For documentation, see docs.
Source on GitHub.
Install
$ pip install rickled
And use
from rickled import Rickle
Using an example YAML file:
BASIC:
text: test
dictionary:
one: 1
two: 2
number: 2
list:
- one
- two
- four
- name: John
age: 20
USERNAME:
type: env
load: USERNAME
callable_lambda:
type: lambda
load: "lambda: print('hell world!')"
datenow:
type: lambda
import:
- "from datetime import datetime as dd"
load: "lambda: print(dd.utcnow().strftime('%Y-%m-%d'))"
test_function:
type: function
name: test_function
args:
x: 7
y: null
s: hello world
any:
- 1
- hello
import:
- "math"
load: >
def test(x, y, s, any):
print(math.e)
iii = 111
print(iii)
print(x,s)
if y:
print(type(y))
else:
print(y)
for i in any:
print(i)
Then use Rickle:
>> from rickled import Rickle
>> config = Rickle('./config.yaml', deep=True, load_lambda=True)
>> config.BASIC.callable_lambda()
'hell world!'
Release
- Date: 2023-02-15
- Version: 0.2.7
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
rickled-0.2.7.tar.gz
(21.4 kB
view hashes)