mirror of
https://github.com/vale981/cl-scrape-telegram-api
synced 2025-03-04 15:51:38 -05:00
21 lines
575 B
Common Lisp
21 lines
575 B
Common Lisp
![]() |
#|
|
||
|
This file is a part of cl-scrape-telegram-api
|
||
|
(c) 2019 Hiro https://protagon.space (hiro@protagon.space)
|
||
|
Author: Valentin Boettcher <hiro@protagon.space>
|
||
|
|#
|
||
|
|
||
|
|
||
|
(defpackage :space.protagon.cl-telegram-scrape.utils
|
||
|
(:use :common-lisp :alexandria :cl-arrows)
|
||
|
(:export :lispify
|
||
|
:telegramify
|
||
|
:camel->symbol
|
||
|
:snake->keyword
|
||
|
:snake->symbol))
|
||
|
|
||
|
(defpackage :space.protagon.cl-telegram-scrape
|
||
|
(:nicknames :tg-scrape)
|
||
|
(:use :common-lisp :alexandria :cl-arrows :space.protagon.cl-telegram-scrape.utils :trivia)
|
||
|
(:export
|
||
|
:scrape-to-disk))
|