This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import aiohttp | |
import bs4 | |
import tqdm | |
@asyncio.coroutine | |
def get(*args, **kwargs): | |
response = yield from aiohttp.request('GET', *args, **kwargs) | |
return (yield from response.read_and_close(decode=True)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Hi there ! | |
* | |
* I found that handling Json was quite annoying, so I wrote this | |
* little lib to help. You can find an example of the usage in the | |
* tests at the end. | |
* | |
* I lacked inspiration on the naming of value() and item(), and got | |
* lost in the lifetimes, so from_json takes a Json and not a | |
* JsonLike. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
from collections import namedtuple | |
import requests | |
from bs4 import BeautifulSoup | |
Torrent = namedtuple('Torrent', 'name link magnet torrent created size' | |
' user seeders leechers') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6,7M ./shallow/yasnippet | |
148K ./shallow/smex | |
428K ./shallow/s.el | |
3,4M ./shallow/python-mode | |
308K ./shallow/popup-el | |
152K ./shallow/pkgbuild-mode | |
10M ./shallow/org-mode | |
980K ./shallow/magit | |
144K ./shallow/fuzzy-el | |
1,5M ./shallow/flycheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests, re | |
result = requests.get('https://raw.github.com/github/developer.github.com/master/content/v3/events/types.md') | |
content = result.content | |
for event in re.findall('## [^#]*', content): | |
blocks = event.split('\n\n') | |
event_name = blocks[0][3:] | |
if 'Hook name' in blocks[1]: | |
description = '' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# language: fr | |
Fonction: Avoir des fonctions qui marchent | |
Pour faire mes tests | |
Je veux que mes fonctions soient reconnues | |
Scénario: Rien | |
Quand je ne fait rien | |
Alors rien ne se passe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From bb459af50a4daa5022b93576ccc9035c4081353d Mon Sep 17 00:00:00 2001 | |
From: Georges Dubus <[email protected]> | |
Date: Tue, 12 Apr 2011 14:09:14 +0200 | |
Subject: [PATCH] French translation fixed. | |
--- | |
lettuce/languages.py | 2 +- | |
1 files changed, 1 insertions(+), 1 deletions(-) | |
diff --git a/lettuce/languages.py b/lettuce/languages.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 09679928282f6757050e8b5fddc5a908699238ef Mon Sep 17 00:00:00 2001 | |
From: Georges Dubus <[email protected]> | |
Date: Sun, 27 Mar 2011 15:58:00 +0200 | |
Subject: [PATCH] adding translation for french | |
--- | |
lettuce/languages.py | 9 +++++++++ | |
1 files changed, 9 insertions(+), 0 deletions(-) | |
diff --git a/lettuce/languages.py b/lettuce/languages.py |
NewerOlder