blog.python

所属分类:博客
开发工具:CSS
文件大小:181817KB
下载次数:0
上传日期:2022-09-30 11:40:00
上 传 者sh-1993
说明:  捷克Python用户组新闻Novinky eskéPython-komunity
(Czech Python user group news Novinky eské Python komunity)

文件列表:
content (0, 2022-09-30)
content\2006-08-09_co-prinesl-podzim.md (5803, 2022-09-30)
content\2011-06-14_druhe-brnenske-pyvo.md (1967, 2022-09-30)
content\2012-09-29_jake-bude-pristi-pyvo.md (2296, 2022-09-30)
content\2013-04-08_brnenske-pyvo-ma-nove-kamarady.md (1785, 2022-09-30)
content\2013-10-03_proc-prekladat-clanky.md (2383, 2022-09-30)
content\2013-11-11_pyvo-v-ostrave.md (2478, 2022-09-30)
content\2013-11-29-python-meetup-praha-listopad.md (2564, 2022-09-30)
content\2013-12-20-python-meetup-praha-prosinec.md (2588, 2022-09-30)
content\2014-01-18-python-meetup-praha-leden.md (1982, 2022-09-30)
content\2014-04-26_tri-roky-pyvo-brug.md (2762, 2022-09-30)
content\2014-05-23-python-meetup-praha-kveten.md (2551, 2022-09-30)
content\2014-05-29_proc-python.md (2334, 2022-09-30)
content\2015-04-19_proc-pomahat-holkam-do-it.md (1629, 2022-09-30)
content\2015-04-30_vyzvy-pro-pyvo.md (1754, 2022-09-30)
content\2015-12-17_proc-proto.md (2071, 2022-09-30)
content\2016-08-22_splneny-holcici-sen.md (5331, 2022-09-30)
content\2016-08-30_seznam-akademie-python.md (1166, 2022-09-30)
content\2016-09-11_ostravske-pyvo-co-ted-a-co-potom.md (4271, 2022-09-30)
content\2016-12-26_komunitni-python-stanek-na-linuxdays.md (7607, 2022-09-30)
content\2017-01-02_reportaz-z-udalosti-prosincove-microhratky.md (2097, 2022-09-30)
content\2017-01-08_pyladies-advanced.md (2469, 2022-09-30)
content\2017-01-13_jako-holka-v-brne.md (8504, 2022-09-30)
content\2017-01-22_ja-python-a-rosti.md (7166, 2022-09-30)
content\2017-02-08_pycon-cz-conference-wrap-up-summary.md (7626, 2022-09-30)
content\2017-03-04_blind-attendee-about-pycon-cz-2016.md (4041, 2022-09-30)
content\2017-03-13_ako-sme-sa-v-Akamai-ucili-vizualizovat-data-v-Pythone.md (5619, 2022-09-30)
content\2017-03-29_holcici-it-sen.md (4996, 2022-09-30)
content\2017-04-24_pycon-cz-2017-changes-date-and-venue.md (4013, 2022-09-30)
content\2017-04-27_mi-pyt.md (25060, 2022-09-30)
content\2017-07-19_djangozeny.md (5363, 2022-09-30)
content\2017-09-12_python-komunita-a-ja.md (685, 2022-09-30)
content\2017-09-19_pycon-cz-2017-conference-wrap-up-summary.md (18729, 2022-09-30)
content\2018-02-06-datovy-workshop.md (5959, 2022-09-30)
... ...

# blog.python.cz [![Build Status](https://travis-ci.org/pyvec/blog.python.cz.svg?branch=master)](https://travis-ci.org/pyvec/blog.python.cz) [![License Creative Commons](https://img.shields.io/badge/license-CC-000000.svg)](https://creativecommons.org/licenses/by/4.0/) 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 :) ## Write an Article in 5 Steps Writing a new text-only article can be very simple using just GitHub: 1. On GitHub, go to the [`content`](https://github.com/pyvec/blog.python.cz/tree/master/content) directory of this repository. Click the Create new file button in the top right corner. 2. Name your file in the `YYYY-MM-DD_article-name.md` format, where: - `YYYY` is year when the article was published, e.g. `2016` - `MM` is month when the article was published, e.g. `08` - `DD` is day when the article was published, e.g. `09` - `article-name` is dash-separated, lower-cased article title using just ASCII letters/numbers (in other words, no diacritics, please) Full example: `2006-08-09_jak-jsem-v-lese-potkal-medveda.md` 3. Start your article file with header similar to following: ``` Title: Jak jsem v lese potkal medveda Date: 2006-08-09 10:49:00 Author: Pepa Houbar Twitter: houbyfaktzeru Gravatar: pepa.houbar@example.com About: Pepa je vasnivy houbar. Ma stranky [Houby fakt zeru](https://example.com) a chodi do lesa predevsim kolem Houbove Lhoty. Jeho zivotnim mottem je _vim houby, jim houby_. ... ``` - The time (`10:49:00`) isn't very important. - You don't have to add `Twitter:` if you don't use [Twitter](https://twitter.com/). - [Gravatar](https://gravatar.com/) is a way how to get your photo from your e-mail address. You need to register at the Gravatar site and upload your image there for your e-mail before it starts to work. Of course, you don't have to use it. - `About:` is couple of sentences about you. You can use [Markdown format](https://guides.github.com/features/mastering-markdown/) as formatting. 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 Preview tab. Setting Soft wrap in the top right corner is also handy. 5. When done with writing, fill the form at the bottom of the page (describe your addition, e.g. "Pridavam clanek o medvedovi") and press the Propose new file button. ## Installation & Advanced Usage Follow [this user guide](https://github.com/honzajavorek/danube-delta/blob/master/user-guide.rst). ## License The blog content is licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/): - Individual articles should be attributed to their respective individual authors. - The whole blog as a project should be attributed to the [Pyvec](https://pyvec.org/) nonprofit. The attached blog software is licensed the same way as the [Danube Delta tool](https://github.com/honzajavorek/danube-delta/blob/master/LICENSE).

近期下载者

相关文件


收藏者