Skip to content

Commit

Permalink
edit(blog): update TOC
Browse files Browse the repository at this point in the history
  • Loading branch information
yorunning committed Nov 13, 2023
1 parent a077918 commit 78a98a7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions blog/source/_posts/2017-07-04-shanbay.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ categories:

3. 最后把获取的单词和汉语翻译下载到本地文本

### 代码示例
**代码示例**

#### 1.引入相关包,requests 下载 html 页面
## 1.引入相关包,requests 下载 html 页面

```python
import requests
Expand All @@ -49,7 +49,7 @@ def get_html(url):
return 'error'
```

#### 2.通过 get_html()下载页面后解析页面信息
## 2.通过 get_html()下载页面后解析页面信息

```python
def get_info(url):
Expand All @@ -64,7 +64,7 @@ def get_info(url):
items.append(item) # 添加到列表中
```

#### 3.由主链接获取相关链接,然后迭代调用 get_info()
## 3.由主链接获取相关链接,然后迭代调用 get_info()

```python
def get_links(url):
Expand All @@ -80,7 +80,7 @@ def get_links(url):
get_info(link)
```

#### 4.把解析的内容下载到本地
## 4.把解析的内容下载到本地

```python
def down_info():
Expand All @@ -90,7 +90,7 @@ def down_info():
print('Download finished!\n{}'.format(len(items)))
```

### 看一下下载到本地的内容
**看一下下载到本地的内容**

![扇贝3](/images/shanbay/3.png)

Expand Down
16 changes: 8 additions & 8 deletions blog/source/_posts/2017-08-26-django-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ categories:

这段时间用 django 开发了我的第一个网站,正好可以拿来学习一下如何部署,折腾了几天,大致走通了,赶忙记录下来。

#### 1.准备
## 1.准备

有一台可以通过外网访问的服务器,我这里使用的是阿里云的学生机,9 块 9 一个月,非常实惠。

#### 2.创建一个拥有超级权限的新用户
## 2.创建一个拥有超级权限的新用户

```
# 创建一个新用户
Expand All @@ -26,14 +26,14 @@ root@localhost:~# su - yorun
yorun@localhost:~$
```

#### 3.更新软件源
## 3.更新软件源

```
# 以下都是在控制台下执行,后文省去控制台前缀
yorun@localhost:~$ sudo apt update && sudo apt dist-upgrade -y
```

#### 4.搭建 Python3 环境
## 4.搭建 Python3 环境

```bash
# 安装相关依赖
Expand All @@ -54,14 +54,14 @@ fi
mkvirtualenv new_project
```

#### 5.从 GitHub 下载项目以及安装项目所需依赖
## 5.从 GitHub 下载项目以及安装项目所需依赖

```
git clone 仓库地址
pip install -r requirements.txt
```

#### 6.配置 nginx 服务器
## 6.配置 nginx 服务器

```
# 修改Nginx的配置文件
Expand All @@ -83,7 +83,7 @@ location /static {
}
```

#### 7.安装 MySQL
## 7.安装 MySQL

```
sudo apt-get install mysql-server mysql-common mysql-client
Expand All @@ -96,7 +96,7 @@ pip install mysqlclient
mysql -u root -p name < dump.txt
```

#### 8.启动服务
## 8.启动服务

```
# 启动gunicorn动态服务器
Expand Down

0 comments on commit 78a98a7

Please sign in to comment.