GithubHelp home page GithubHelp logo

journey2dayone's People

Contributors

alxhslm avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

journey2dayone's Issues

Few Tweaks for Error Handling

This is a fantastic script! I did find a few hiccups and my Journey entries are diverse and came across a few things to improve around data error handling.

I am a coder but not into GitHub branches/commits. Plus my tweaks are a few lines you can add easily.

First -
Sometimes an entry may not have a Timezone and if timezone is " " it will fail.
I added this below to 'default' to my current timezone to fill in the gap.

All in the following function.

def journeyjson2dayonejson(journey):
if journey["timezone"] == "":
timez = "America/Chicago"
else:
timez = journey["timezone"]

vvv Modified this line to use the timez var vvv

"creationDate": convert_unixtime(journey["date_journal"], timez),

Second
I found that when I created an entry with iOS voice to text, not sure if that's the reason, I was getting 'charmap' codec can't decode byte 0x9d] errors.

I added on the "open to ignore" errors and it works just fine, I have put hundreds of entries through it. It's not ideal, the violating character , a ' in my case, is converted to a goofy character but is easily manually fixed if needed after DayOne Import.

for f in glob.glob("./journey/*.json"):
with open(f, "r", errors='ignore') as fh:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.