8000 replace broken absolute links with relative links · github112017/python_reference@82376a9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 82376a9

Browse files
committed
replace broken absolute links with relative links
1 parent a908a34 commit 82376a9

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

tutorials/sqlite3_howto/README.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ there is more information about PRIMARY KEYs further down in this section).
123123
conn.close()
124124

125125

126-
Download the script: [create_new_db.py](https://raw.github.com/rasbt/python_reference/master/tutorials/code/create_new_db.py)
126+
Download the script: [create_new_db.py](https://github.com/rasbt/python_reference/blob/master/tutorials/sqlite3_howto/code/create_new_db.py)
127127

128128
* * *
129129

@@ -207,7 +207,7 @@ Let's have a look at some code:
207207
conn.close()
208208

209209

210-
Download the script: [add_new_column.py](https://raw.github.com/rasbt/python_reference/master/tutorials/code/add_new_column.py)
210+
Download the script: [add_new_column.py](https://github.com/rasbt/python_reference/blob/master/tutorials/sqlite3_howto/code/add_new_column.py)
211211

212212

213213

@@ -270,8 +270,7 @@ But let us first have a look at the example code:
270270
conn.close()
271271

272272

273-
Download the script: [update_or_insert_records.py](https://raw.github.com/rasb
274-
t/python_sqlite_code/master/code/update_or_insert_records.py)
273+
Download the script: [update_or_insert_records.py](code/update_or_insert_records.py)
275274

276275
![3_sqlite3_insert_update.png](../../Images/3_sqlite3_insert_update.png)
277276

@@ -335,8 +334,7 @@ drop the index, which is also shown in the code below.
335334
conn.close()
336335

337336

338-
Download the script: [create_unique_index.py](https://raw.github.com/rasbt/pyt
339-
hon_sqlite_code/master/code/create_unique_index.py)
337+
Download the script: [create_unique_index.py](code/create_unique_index.py)
340338

341339
![4_sqlite3_unique_index.png](../../Images/4_sqlite3_unique_index.png)
342340

@@ -401,8 +399,7 @@ row entries for all or some columns if they match certain criteria.
401399
conn D697 .close()
402400

403401

404-
Download the script: [selecting_entries.py](https://raw.github.com/rasbt/pytho
405-
n_sqlite_code/master/code/selecting_entries.py)
402+
Download the script: [selecting_entries.py](code/selecting_entries.py)
406403

407404

408405
![4_sqlite3_unique_index.png](../../Images/4_sqlite3_unique_index.png)
@@ -542,8 +539,7 @@ that have been added xxx days ago.
542539
conn.close()
543540

544541

545-
Download the script: [date_time_ops.py](https://raw.github.com/rasbt/python_sq
546-
lite_code/master/code/date_time_ops.py)
542+
Download the script: [date_time_ops.py](code/date_time_ops.py)
547543

548544

549545

@@ -645,8 +641,7 @@ column names):
645641
conn.close()
646642

647643

648-
Download the script: [get_columnnames.py](https://raw.github.com/rasbt/python_
649-
sqlite_code/master/code/get_columnnames.py)
644+
Download the script: [get_columnnames.py](code/get_columnnames.py)
650645

651646
![7_sqlite3_get_colnames_1.png](../../Images/7_sqlite3_get_colnames_1.png)
652647

0 commit comments

Comments
 (0)
0