TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Escher.py - Key/value db with its data

52 pointsby jordeover 12 years ago

5 comments

Loicover 12 years ago
For the old people, before we had MySQL, this is how we used to have "guest book" on websites. With auto-updating Perl CGI scripts.
评论 #4920123 未加载
anthonybover 12 years ago
Even as a toy, that's hideous Python code.
评论 #4920269 未加载
songgaoover 12 years ago
Cool. Might be useful for configuration files. It can be executed so it's possible to make it able to list all parameters, descriptions, default values, etc. Since it's valid python, it can be read by a python script. People can also open the file and modify the configuration themselves.
loegover 12 years ago
<p><pre><code> "data = " + str(data), </code></pre> should probably be<p><pre><code> "data = " + repr(data),</code></pre>
cardamomoover 12 years ago
Cute.