-
-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chrome Import Issue #42
Comments
Could you provide the header of your csv file? |
Morning, here is the default sqlite3 export header: |
So it seems the CSV format provided by sqlite3 is quite different from the standard one (see the test database in /~https://github.com/roddhjav/pass-import/blob/master/tests/db/chrome.csv). I will investigate on this sqlite3 format and probably add a specific support for it. However I won't have the time to work on it before a few weeks. |
No problem. I got them into pass using keepassxc to import and your already built import from that program. It should be useful to others though going forward. Keep up the good work |
Using 2.2 on Linux. FF import fine. Exports form Chrome/Chromium fail to import with errors:
Traceback (most recent call last):
File "/usr/lib/password-store/import/import.py", line 753, in
main(sys.argv)
File "/usr/lib/password-store/import/import.py", line 709, in main
importer.parse(file)
File "/usr/lib/password-store/import/import.py", line 282, in parse
self._checkformat(reader.fieldnames)
File "/usr/lib/password-store/import/import.py", line 277, in _checkformat
raise FormatError()
import.FormatError
Chrome Version 49.0.2623.75 (64-bit)
Chromium Version 66.0.3359.181 (64-bit)
Unable to directly export from browsers so used the hack using sqlite3
sqlite3 -header -csv -separator "," ~/.config/chromium/Default/Login\ Data "SELECT * FROM logins" > ~/ChromiumPasswords.csv
Any ideas how I can circumvent this?
The text was updated successfully, but these errors were encountered: