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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# verbstamp.py | |
# | |
# Copyright 2023 zerrouki <zerrouki@majd4> | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or |
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
#!/usr/bin/python | |
# -*- coding=utf-8 -*- | |
""" | |
Example on arabic text cleaning using PyArbic Library | |
Requirements: pip install pyarabic | |
Data: csv text file contains (tweet, emotion) separated by a ',' | |
Ouput: text file ( cleaned) | |
""" | |
import sys |
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
#!/usr/bin/python | |
# -*- coding=utf-8 -*- | |
""" | |
An example of cleaning arabic text with PyArbic Library | |
Requirements: pip install pyarabic | |
Data: text file | |
Ouput: text file ( cleaned) | |
""" | |
import sys |
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
<?php | |
/** | |
* Spellchecker HunSpell driver class | |
* !! Hunspell is required !! | |
* | |
* @package jQuery Spellchecker (https://github.com/badsyntax/jquery-spellchecker) | |
* @author Taha Zerrouki | |
* @copyright (c) Taha Zerrouki | |
* @license https://github.com/badsyntax/jquery-spellchecker/blob/master/LICENSE-MIT | |
*/ |