Flexibly Represented Interactive Data
Project description
FRID: Flexibly Represented Interactive Data
This Python package is a tool for data manipulation.
Supported data types include:
- All JSON types: string, integer, floating point, boolean, null, array (as Python lists), and object (as Python dictionaries).
- Additional data types: binary types (bytes/bytearray/memoryview) and date types (date/time/datetime).
- Base classes are provided for user-extensible data structures, allowing users to convert between any customized data structures and string representations.
Current key features include:
- A data serialization/deserialization tool:
- Data can be dumped into and loaded from a string representation that is more concise than the JSON format.
- The library is capable of encoding data in fully JSON- or JSON5-compatible formats, including escape sequences in strings to support additional data types.
- A number of utilities functions and classes, including some asyncio utilities.
- A key/value store supporting memory, file system, redis, and sqlalchemy as backends.
- Web application support tools, such as:
- Converting data from HTTP request bodies based on content type.
- Converting data types to HTTP requests and setting the correct headers.
- Sending streaming responses if the data of the body comes from an asynchronous iterator.
- A mimimal web server routing framework, supporting both WSGi and ASGi.
- Websocket support for ASGi.
Dependencies:
The package do not have required dependencies, but it needs a few optional dependencies to run some features:
redis
: for Redis support; also a system commandredis-server
to run unit tests.sqlalchemy
: for SQL support, with some additional packages depending on backend; to run async key/value store with Sqlite, one needaiosqlite
andgreenlet
to run the unit tests. For Postgres, the following are needed:psycopg[binary]
for sync Postgres support,asyncpg
for async Postgres support.
- For web servers:
gunicorn
to run WSGi unit tests.uvicorn
to run ASGi unit tests.
- For websocket support (ASGi only):
websockets
withuvicorn
(or installuvicorn[standard]
); it also allows us to run websockets' threading-based sync client for unit tests.websocket-client
to run websocket-client-based unit tests.
Other possibilities that haven't been tested:
- For ASGi:
daphne
andhypercorn
; - For ASGi with
uvicorn
:wsproto
is an alternative towebsockets
.
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
frid-0.5.2.tar.gz
(122.6 kB
view details)
Built Distribution
frid-0.5.2-py3-none-any.whl
(137.6 kB
view details)
File details
Details for the file frid-0.5.2.tar.gz
.
File metadata
- Download URL: frid-0.5.2.tar.gz
- Upload date:
- Size: 122.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 431f911d8eeebb51d171802c14e5a31e41e7651dca63ba4baaead13990d22f04 |
|
MD5 | 1fdf3d4b4532885d2d934a2b1e13403f |
|
BLAKE2b-256 | d142178e73e037ae70f09e4f67578dfd21c6c66bdf1fa1bc2c3e54596df19456 |
File details
Details for the file frid-0.5.2-py3-none-any.whl
.
File metadata
- Download URL: frid-0.5.2-py3-none-any.whl
- Upload date:
- Size: 137.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66745df7387eabc78dda2e3addb9ce22b371ec09cd946c232404d56602a49244 |
|
MD5 | 1da13348d07b7db8b478395d9c64ba4e |
|
BLAKE2b-256 | 78f28448efb0a909947ebc88580fcbcb8b963b1c48787a3d7c2752e1830bb7b9 |