Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samael500/typograf
client for artlebedev typograf webservice
https://github.com/samael500/typograf
Last synced: about 2 months ago
JSON representation
client for artlebedev typograf webservice
- Host: GitHub
- URL: https://github.com/samael500/typograf
- Owner: samael500
- License: mit
- Created: 2015-03-17T14:46:43.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-03-04T20:40:35.000Z (almost 7 years ago)
- Last Synced: 2024-10-05T17:17:32.270Z (3 months ago)
- Language: Python
- Homepage:
- Size: 184 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Typograf
[![Build Status](https://travis-ci.org/Samael500/typograf.svg?branch=master)](https://travis-ci.org/Samael500/typograf)
[![Latest Version](https://pypip.in/version/typograf/badge.svg)](https://pypi.python.org/pypi/typograf/)client for artlebedev typograf webservice
«Вы все еще кое-как верстаете в „Ворде“? — Тогда мы идем к вам!»
---
Python2 not Unicode
================
```python
# -*- encoding: windows-1251 -*-
from typograf import RemoteTypograf
rt = RemoteTypograf('windows-1251', p=True, br=True)
print rt.process_text(u'"Âû âñå åùå êîå-êàê âåðñòàåòå â "Âîðäå"? - Òîãäà ìû èäåì ê âàì!"')
``````html
«Вы все еще кое-как верстаете в „Ворде“? — Тогда мы идем к вам!»
```Python2 Unicode
=============
```python
# -*- encoding: utf-8 -*-
from typograf import RemoteTypograf
rt = RemoteTypograf(p=True, br=True) # UTF-8
print rt.process_text(u'"Вы все еще кое-как верстаете в "Ворде"? - Тогда мы идем к вам!"')
``````html
«Вы все еще кое-как верстаете в „Ворде“? — Тогда мы идем к вам!»
```Python3
======
```python
from typograf import RemoteTypograf
rt = RemoteTypograf(p=True, br=True)
print(rt.process_text('"Вы все еще кое-как верстаете в "Ворде"? - Тогда мы идем к вам!"'))
``````html
«Вы все еще кое-как верстаете в „Ворде“? — Тогда мы идем к вам!»
```