Skip to main content

No project description provided

Project description

UserConf

本项目在TinyDB基础上,做了一些调整,具体如下:

  • 修改class JSONStorage(Storage), 取消默认 ASCII 编码
  • 最后重新打包(fhtinydb);

Quick Links


  • Example Code_
  • Supported Python Versions_
  • Documentation <http://tinydb.readthedocs.org/>_
  • Changelog <https://tinydb.readthedocs.io/en/latest/changelog.html>_
  • Extensions <https://tinydb.readthedocs.io/en/latest/extensions.html>_
  • Contributing_

Introduction


TinyDB is a lightweight document oriented database optimized for your happiness :) It's written in pure Python and has no external dependencies. The target are small apps that would be blown away by a SQL-DB or an external database server.

TinyDB is:

  • tiny: The current source code has 1800 lines of code (with about 40% documentation) and 1600 lines tests.

  • document oriented: Like MongoDB_, you can store any document (represented as dict) in TinyDB.

  • optimized for your happiness: TinyDB is designed to be simple and fun to use by providing a simple and clean API.

  • written in pure Python: TinyDB neither needs an external server (as e.g. PyMongo <https://pymongo.readthedocs.io/en/stable/>_) nor any dependencies from PyPI.

  • works on Python 3.8+ and PyPy3: TinyDB works on all modern versions of Python and PyPy.

  • powerfully extensible: You can easily extend TinyDB by writing new storages or modify the behaviour of storages with Middlewares.

  • 100% test coverage: No explanation needed.

To dive straight into all the details, head over to the TinyDB docs <https://tinydb.readthedocs.io/>. You can also discuss everything related to TinyDB like general development, extensions or showcase your TinyDB-based projects on the discussion forum <http://forum.m-siemens.de/.>.

Supported Python Versions


TinyDB has been tested with Python 3.8 - 3.13 and PyPy3.

Project Status


This project is in maintenance mode. It has reached a mature, stable state where significant new features or architectural changes are not planned. That said, there will still be releases for bugfixes or features contributed by the community. Read more about what this means in particular here <https://github.com/msiemens/tinydb/discussions/572>_.

Example Code


.. code-block:: python

>>> from tinydb import TinyDB, Query
>>> db = TinyDB('/path/to/db.json')
>>> db.insert({'int': 1, 'char': 'a'})
>>> db.insert({'int': 1, 'char': 'b'})

Query Language

.. code-block:: python

>>> User = Query()
>>> # Search for a field value
>>> db.search(User.name == 'John')
[{'name': 'John', 'age': 22}, {'name': 'John', 'age': 37}]

>>> # Combine two queries with logical and
>>> db.search((User.name == 'John') & (User.age <= 30))
[{'name': 'John', 'age': 22}]

>>> # Combine two queries with logical or
>>> db.search((User.name == 'John') | (User.name == 'Bob'))
[{'name': 'John', 'age': 22}, {'name': 'John', 'age': 37}, {'name': 'Bob', 'age': 42}]

>>> # Negate a query with logical not
>>> db.search(~(User.name == 'John'))
[{'name': 'Megan', 'age': 27}, {'name': 'Bob', 'age': 42}]

>>> # Apply transformation to field with `map`
>>> db.search((User.age.map(lambda x: x + x) == 44))
>>> [{'name': 'John', 'age': 22}]

>>> # More possible comparisons:  !=  <  >  <=  >=
>>> # More possible checks: where(...).matches(regex), where(...).test(your_test_func)

Tables

.. code-block:: python

>>> table = db.table('name')
>>> table.insert({'value': True})
>>> table.all()
[{'value': True}]

Using Middlewares

.. code-block:: python

>>> from tinydb.storages import JSONStorage
>>> from tinydb.middlewares import CachingMiddleware
>>> db = TinyDB('/path/to/db.json', storage=CachingMiddleware(JSONStorage))

Contributing


Whether reporting bugs, discussing improvements and new ideas or writing extensions: Contributions to TinyDB are welcome! Here's how to get started:

  1. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug
  2. Fork the repository <https://github.com/msiemens/tinydb/>_ on Github, create a new branch off the master branch and start making your changes (known as GitHub Flow <https://guides.github.com/introduction/flow/index.html>_)
  3. Write a test which shows that the bug was fixed or that the feature works as expected
  4. Send a pull request and bug the maintainer until it gets merged and published ☺

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fhtinydb-0.1.0.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fhtinydb-0.1.0-py3-none-any.whl (23.8 kB view details)

Uploaded Python 3

File details

Details for the file fhtinydb-0.1.0.tar.gz.

File metadata

  • Download URL: fhtinydb-0.1.0.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.8.10 Windows/10

File hashes

Hashes for fhtinydb-0.1.0.tar.gz
Algorithm Hash digest
SHA256 3dd966b6d1a0e9993df3d8121007085bad41c2c4f8b930df2e0e3dc550c1f4ff
MD5 fccef33f9c20093fc0d381e252f483f1
BLAKE2b-256 e94b3f9b04cc184b81de7c5eb1f4901de4412503755869aad2a6f0b09aa412f7

See more details on using hashes here.

File details

Details for the file fhtinydb-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: fhtinydb-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 23.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.8.10 Windows/10

File hashes

Hashes for fhtinydb-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 74473b8f399cb344fa94a5216670ebeefc50b165a3c6bb582175513f40835979
MD5 36cf3ba2f439f63feac4726696ac798d
BLAKE2b-256 80b5b678545e2b600e367f9e5ff09ecf736cfdc417d4c6231d12e9b0bbd763a6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page