brew install dnscrypt-proxy
Edit /usr/local/etc/dnscrypt-proxy.toml
as needed. I added/modified the following lines:
import aiohttp | |
import asyncio | |
async def get(index): | |
response = await aiohttp.get('http://httpbin.org/delay/%d' % index) | |
print(index, "Done") | |
response.close() | |
async def doMany(): | |
coros = [] |
group :production do | |
gem "unicorn" | |
end |