Skip to content

Releases: Perceptua/indexia

1.0.3

06 Nov 02:10
e178cc6

Choose a tag to compare

What's Changed

Full Changelog: v1.0.2...v1.0.3

1.0.2

17 Nov 00:25
06dd562

Choose a tag to compare

Features:

  • Enable retrieval of being based on values of traits (text attributes).
  • Add sections headers to docs & Custom workflows section to Usage.

1.0.1

16 Nov 04:33

Choose a tag to compare

Relocate usage & applications from README to separate files to avoid broken links & images.

1.0.0

16 Nov 03:47

Choose a tag to compare

First true release of indexia after testing deployments to PYPI & Read the Docs.

0.0.5

16 Nov 02:43

Choose a tag to compare

Updated & reformatted documentation, aligned variable names across classes.

0.0.4

13 Nov 21:45
1c44e99

Choose a tag to compare

Publish documentation to indexia.readthedocs.io.

0.0.3

13 Nov 17:59
b47e1f8

Choose a tag to compare

Bugfixes:

  • Fix README.rst codeblocks & reconfigure pyproject.toml for first PYPI release.

0.0.2

13 Nov 17:07
16057bc

Choose a tag to compare

Features:

  • Added 'zettelkasten' template to indexia.eidola.Templates

Usage:

Create sample objects in a test database:

from indexia.eidola import Templates


db = 'test.db'
templates = Templates(db)
templates.show_templates() # show available templates with table structure
objects = templates.build_template('zettelkasten')

Construct & display a dataframe of all template objects:

from indexia.schemata import Corpus

db = 'test.db'
corpus = Corpus(db, 'scribes', objects['scribes']).assemble()
print(corpus)

0.0.1

13 Nov 02:54

Choose a tag to compare

Templates class added to indexia.eidola module for generating sample data. Initial template 'philosophy' can be built using

from indexia.eidola import Templates

db = 'test.db'
objects = Templates(db).build_template('philosophy')

0.0.0

12 Nov 23:33

Choose a tag to compare

Initial release of indexia. See RELEASES.rst for features.