Skip to content

Commit 944b1b6

Browse files
committed
README update
1 parent 04197b4 commit 944b1b6

4 files changed

Lines changed: 129 additions & 1 deletion

File tree

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
venv/
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*,cover
47+
.hypothesis/
48+
49+
# Translations
50+
*.mo
51+
*.pot
52+
53+
# Django stuff
54+
*.log
55+
56+
# Sphinx documentation
57+
docs/_build/
58+
59+
# PyBuilder
60+
target/
61+
62+
# Ipython Notebook
63+
.ipynb_checkpoints
64+
65+
# Pelican
66+
output/

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
sudo: false
2+
language: "python"
3+
python: "3.5"
4+
cache: "pip"
5+
script:
6+
- "blog lint"
7+
env:
8+
global:
9+
- secure: "DJesdE0urmXO2qgDSGhp544GY5Wza69yU2SgTx3IOwrGj8U/pZ71JhBdEUeDx8vb5ujtqaEgB9ororXmuNsnTVsU4y7UAQsnoedUwRQmfZZqHGS0pnW+qZEO/eScrXHiZA8UKrISLC1tXQcrrMlpSSSybEYntluDGOkIRcJXPbBXa6wufSFuiJ1bWBv8HFvbT7grZHkW7252tUQ0UK/u2PEX2XpDXm5qHBNur8TgrocQ6qj8AcOZOE9MA10CkDg9ilWQv63UnrQeG7wuUWdhtXdDeU11m5Wpd39ONEuyTxiHcdRaAYyyYI7Cexw4IPlmQUqPSDjhf3roiVInz25TIdInz9RvrY3PRCko7R7YJSFF2tWaIsZE1AHOqT4WzZAawgRqwwP0VduliNbiBzoUWiPgelbL22YzqW3QUfYeyPeOWenG2GVaLyUQxOXAlKE8sWd1j+nr0Rbfw2PgqVO6knLGARDG4y7nw+bpDWv1RspMC4RRXwW9aDDi9koDq8PkMYxX1629hB9NQNREWQj/BbzolT0QsmYXhnWzE09rzdBRZ5lO94LfXKdP/lqbZk3tCU/c2WuN9jYHiA9syuPRteJRUdvZI765mZCT/tNRnBJ1sQXPa7UdCpyFrfV+uXVikoAx7tIE3z6G2tm7xLpj4yeylh1VK5hrY/MJqTitlOM="
10+
deploy:
11+
provider: "script"
12+
script: "blog deploy"
13+
on:
14+
branch: "master"
15+
repo: "pyvec/blog.python.cz"

README.md

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,48 @@
11
# blog.python.cz
2-
Czech Python user group news / Novinky české Python komunity
2+
3+
[![Build Status](https://travis-ci.org/pyvec/blog.python.cz.svg?branch=master)](https://travis-ci.org/pyvec/blog.python.cz)
4+
[![License Creative Commons](https://img.shields.io/badge/license-CC-000000.svg)](http://creativecommons.org/licenses/by/4.0/)
5+
6+
Source code of the blog of the Czech Python user group. Made for various news, thoughts, and announcements. Written in Czech, but English articles are definitely not prohibited :)
7+
8+
## Simple Writing in 5 steps
9+
10+
Writing a new article can be very simple using just GitHub:
11+
12+
1. On GitHub, go to the [`content`](https://github.com/pyvec/blog.python.cz/tree/master/content) directory of this repository. Click the <kbd>Create new file</kbd> button in the top right corner.
13+
2. Name your file in the `YYYY-MM-DD_article-name.md` format, where:
14+
15+
- `YYYY` is year when the article was published, e.g. `2016`
16+
- `MM` is month when the article was published, e.g. `08`
17+
- `DD` is day when the article was published, e.g. `09`
18+
- `article-name` is dash-separated, lower-cased article title using just ASCII letters/numbers (in other words, no diacritics, please)
19+
20+
Full example: `2006-08-09_jak-jsem-v-lese-potkal-medveda.md`
21+
3. Start your article file with following header:
22+
23+
```
24+
Title: Jak jsem v lese potkal medvěda
25+
Date: 2006-08-09 10:49:00
26+
27+
...
28+
```
29+
30+
The time isn't very important.
31+
4. Then, in place of the three dots `...` you can start writing your article in the [Markdown format](https://guides.github.com/features/mastering-markdown/). You can see how the article will approximately look like using the <kbd>Preview</kbd> tab. Setting <kbd>Soft wrap</kbd> in the top right corner is also handy.
32+
5. When done with writing, fill the form at the bottom of the page (describe your addition, i.e. "Přidávám článek o medvědovi") and press the <kbd>Propose new file</kbd> button.
33+
34+
## Installation & Advanced Usage
35+
36+
Follow [this user guide](https://github.com/honzajavorek/danube-delta/blob/master/user-guide.rst).
37+
38+
## License
39+
40+
The blog content is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/):
41+
42+
- Individual articles should be attributed to their respective individual authors.
43+
- The whole blog as a project should be attributed to the [Pyvec](http://pyvec.org/) nonprofit.
44+
45+
The attached blog software is licensed the same way as the [Danube Delta tool](https://github.com/honzajavorek/danube-delta/blob/master/LICENSE).
46+
47+
All Rights Reserved © 2007–? Honza Javorek &lt;<a
48+
href="mailto:mail&#64;honzajavorek.cz">mail&#64;honzajavorek.cz</a>&gt;

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
danube_delta>=1.0.1

0 commit comments

Comments
 (0)