KeePass X import [see MrC's KeePassX Converter for 1Password 4]
I have problem with import from KeePass X file (.kdb). When I click in File Menu in 1PW then i choose Import I can choose only 3 options of files 1Password interchange format, comma delimited text and LostPass. Is there possibility to import .kdb file?
Comments
-
I believe this is not currently supported but new import options are added from time to time (known issues refers to export/import options being limited to the 1PIF format but in fact the latest versions support the additional formats you mention).
Are you able to export from KeePass in csv format (which is supported by 1P4), by any chance?
Stephen
0 -
Was that feature removed from 1Password 3? Do you guys have an ETA?
I have hundreds of passwords in KeePass X :(
0 -
Hi, @philippelyp.
We currently don't have an ETA to announce for this, generally for reasons like @Megan mentioned:
We try not to comment much on unreleased features or product changes, as there are too many factors that could affect implementation, and we certainly don't want to promise something that we can't deliver on.
0 -
This might not be helpful, but here's a ruby script that will take KeePassX's XML export and convert it to CSV:
require 'csv' require 'crack' xml = Crack::XML.parse File.open(ARGV.first) xml['database']['group'].each_with_index do |group,i| group['entry'].each_with_index do |entry,j| entry.merge! 'group' => group['title'] puts entry.keys.to_csv if i.zero? and j.zero? puts entry.values.to_csv end rescue next end
You run it like this:
$ ruby keepass_to_csv.rb keepass.xml > keepass.csv
0 -
Hi Kyle,
Thanks so much for passing that script along! For anyone exporting from Keepass, or any other password manager, it is important to note that 1Password import does expect the CSV file to be in a certain order: "title" first, "location" second, "username" third, "password" fourth, and the "notes" fifth. Any further fields will be added to 1Password as custom fields.
I hope this helps :)
0 -
In addition to the CSV input fields/order that @Megan mentioned for importing Login items, this guide also has them for importing Credit Card, Software, and Secure Note items:
0 -
For future reference: http://discussions.agilebits.com/discussion/24381/keepassx-converter-for-1password-4
0