- Provided sample sqlite3 export script in Python, to serve as a
  starting point for anyone wanting to migrate taskwarrior data into
  a SQL database.  Illustrates JSON parsing and separation of the
  relational data.

Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
Ralph Bean 2012-01-07 12:31:08 -05:00 committed by Paul Beckingham
parent 0215e708ad
commit 36ed70ad93
6 changed files with 244 additions and 43 deletions

View file

@ -76,6 +76,8 @@ unsigned int utf8_codepoint (const std::string& input)
////////////////////////////////////////////////////////////////////////////////
// Iterates along a UTF8 string.
// - argument i counts bytes advanced through the string
// - returns the next character
unsigned int utf8_next_char (const std::string& input, std::string::size_type& i)
{
// How many bytes in the sequence?