]> git.immae.eu Git - github/wallabag/wallabag.git/blob - docs/en/user/import.rst
269e226c0c4facf70d8de3a2b5072c3edd484539
[github/wallabag/wallabag.git] / docs / en / user / import.rst
1 Migrate from ...
2 ================
3
4 In wallabag 2.x, you can import data from:
5
6 - `Pocket <#id1>`_
7 - `Readability <#id2>`_
8 - `Instapaper <#instapaper>`_
9 - `wallabag 1.x <#wallabag-1-x>`_
10 - `wallabag 2.x <#wallabag-2-x>`_
11
12 We also developed `a script to execute migrations via command-line interface <#import-via-command-line-interface-cli>`_.
13
14 Pocket
15 ------
16
17 Create a new application on Pocket
18 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19
20 To import your data from Pocket, we use the Pocket API. You need to create
21 a new application on their developer website to continue.
22
23 * Create a new application `on the developer website <https://getpocket.com/developer/apps/new>`_
24 * Fill in the required fields: application name, application description,
25 permissions (only **retrieve**), platform (**web**), accept the terms of service
26 and submit your new application
27
28 Pocket will give you a **Consumer Key** (for example, `49961-985e4b92fe21fe4c78d682c1`).
29 You need to configure the ``pocket_consumer_key`` in the ``Config`` menu.
30
31 Now, all is fine to migrate from Pocket.
32
33 Import your data into wallabag 2.x
34 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
35
36 Click on ``Import`` link in the menu, on ``Import contents`` in Pocket section
37 and then on ``Connect to Pocket and import data``.
38
39 You need to authorize wallabag to interact with your Pocket account.
40 Your data will be imported. Data import can be a demanding process for your server.
41
42 Readability
43 -----------
44
45 Export your Readability data
46 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
47
48 On the tools (`https://www.readability.com/tools/ <https://www.readability.com/tools/>`_) page, click on "Export your data" in the "Data Export" section. You will received an email to download a json (which does not end with .json in fact).
49
50 Import your data into wallabag 2.x
51 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
52
53 Click on ``Import`` link in the menu, on ``Import contents`` in Readability section
54 and then select your json file and upload it.
55
56 Your data will be imported. Data import can be a demanding process for your server.
57
58 Instapaper
59 ----------
60
61 Export your Instapaper data
62 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
63
64 On the settings (`https://www.instapaper.com/user <https://www.instapaper.com/user>`_) page, click on "Download .CSV file" in the "Export" section. A CSV file will be downloaded (like ``instapaper-export.csv``).
65
66 Import your data into wallabag 2.x
67 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
68
69 Click on ``Import`` link in the menu, on ``Import contents`` in Instapaper section
70 and then select your CSV file and upload it.
71
72 Your data will be imported. Data import can be a demanding process for your server.
73
74 wallabag 1.x
75 ------------
76
77 If you were using wallabag v1.x, you need to export your data before migrating to wallabag v2.x, because the application and its database changed a lot. In your old wallabag installation, you can export your data, which can be done on the Config page of your old wallabag installation.
78
79 .. image:: ../../img/user/export_v1.png
80 :alt: Exporting from wallabag v1
81 :align: center
82
83 .. note::
84 If you have multiple accounts on the same instance of wallabag, each user must export from v1 and import into v2 its data.
85
86 .. note::
87 If you encounter issues during the export or the import, don't hesitate to `ask for support <https://www.wallabag.org/pages/support.html>`__.
88
89 When you have retrieved the json file containing your entries, you can install wallabag v2 if needed by following `the standard procedure <http://doc.wallabag.org/en/master/user/installation.html>`__.
90
91 After creating an user account on your new wallabag v2 instance, you must head over to the `Import` section and select `Import from wallabag v1`. Select your json file and upload it.
92
93 .. image:: ../../img/user/import_wallabagv1.png
94 :alt: Import from wallabag v1
95 :align: center
96
97 wallabag 2.x
98 ------------
99
100 From the previous wallabag instance on which you were before, go to `All articles`, then export these articles as json.
101
102 .. image:: ../../img/user/export_v2.png
103 :alt: Export depuis wallabag v2
104 :align: center
105
106 From your new wallabag instance, create your user account and click on the link in the menu to proceed to import. Choose import from wallabag v2 and select your json file to upload it.
107
108 .. note::
109 If you encounter issues during the export or the import, don't hesitate to `ask for support <https://www.wallabag.org/pages/support.html>`__.
110
111 Import via command-line interface (CLI)
112 ---------------------------------------
113
114 If you have a CLI access on your web server, you can execute this command to import your wallabag v1 export:
115
116 ::
117
118 bin/console wallabag:import 1 ~/Downloads/wallabag-export-1-2016-04-05.json --env=prod
119
120 Please replace values:
121
122 * ``1`` is the user identifier in database (The ID of the first user created on wallabag is 1)
123 * ``~/Downloads/wallabag-export-1-2016-04-05.json`` is the path of your wallabag v1 export
124
125 If you want to mark all these entries as read, you can add the ``--markAsRead`` option.
126
127 To import a wallabag v2 file, you need to add the option ``--importer=v2``.
128
129 You'll have this in return:
130
131 ::
132
133 Start : 05-04-2016 11:36:07 ---
134 403 imported
135 0 already saved
136 End : 05-04-2016 11:36:09 ---