repo
stringlengths
7
90
file_url
stringlengths
81
315
file_path
stringlengths
4
228
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:38:15
2026-01-05 02:33:18
truncated
bool
2 classes
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/models/doi_ra.py
models/doi_ra.py
from app import db class DOIRegistrationAgency(db.Model): __table_args__ = {'schema': 'mid'} __tablename__ = "doi_registration_agency" doi = db.Column(db.Text, db.ForeignKey("mid.work.doi_lower"), primary_key=True) agency = db.Column(db.Text) def __repr__(self): return "<DOIRegistrationA...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/models/country.py
models/country.py
import datetime from cached_property import cached_property from sqlalchemy.dialects.postgresql import JSONB from app import db from app import COUNTRIES_INDEX from models.counts import citation_count_from_elastic, works_count_from_api from bulk_actions import create_bulk_actions class Country(db.Model): __tabl...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/models/work_related_work.py
models/work_related_work.py
from app import db class WorkRelatedWork(db.Model): __table_args__ = {'schema': 'mid'} __tablename__ = "related_work" paper_id = db.Column(db.BigInteger, db.ForeignKey("mid.work.paper_id"), primary_key=True) recommended_paper_id = db.Column(db.BigInteger, primary_key=True) score = db.Column(db.Flo...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/models/domain.py
models/domain.py
import datetime from sqlalchemy.dialects.postgresql import JSONB from app import db from bulk_actions import create_bulk_actions import models from app import DOMAINS_INDEX class Domain(db.Model): __table_args__ = {'schema': 'mid'} __tablename__ = "domain" domain_id = db.Column(db.Integer, db.ForeignKe...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/models/concept_ancestor.py
models/concept_ancestor.py
from app import db class ConceptAncestor(db.Model): __table_args__ = {'schema': 'mid'} __tablename__ = "concept_ancestor" id = db.Column(db.BigInteger, db.ForeignKey("mid.concept_api_mv.field_of_study_id"), primary_key=True) ancestor_id = db.Column(db.BigInteger, db.ForeignKey("mid.concept_api_mv.fie...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/models/work_fwci.py
models/work_fwci.py
from app import db class WorkFWCI(db.Model): __table_args__ = {'schema': 'counts'} __tablename__ = "work_fwci" paper_id = db.Column(db.BigInteger, db.ForeignKey("mid.work.paper_id"), primary_key=True) fwci = db.Column(db.Float) update_date = db.Column(db.DateTime)
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/models/counts.py
models/counts.py
from elasticsearch import Elasticsearch from elasticsearch_dsl import Search from redis import Redis from requests_cache import CachedSession, RedisCache from sqlalchemy import PrimaryKeyConstraint from app import db, ELASTIC_URL, REDIS_URL, WORKS_INDEX class AuthorCounts(db.Model): __table_args__ = {"schema": "...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/util.py
cleanup/util.py
# -*- coding: utf-8 -*- DESCRIPTION = """util for cleanup""" import sys, os, time import re import json from pathlib import Path from datetime import datetime from typing import Union, Optional from timeit import default_timer as timer try: from humanfriendly import format_timespan except ImportError: def f...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/__init__.py
cleanup/__init__.py
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/get_count_by_work_type_all_journals.py
cleanup/get_count_by_work_type_all_journals.py
# -*- coding: utf-8 -*- DESCRIPTION = """For each journal, get count of works by work type""" import sys, os, time, json, gzip from pathlib import Path from datetime import datetime from timeit import default_timer as timer try: from humanfriendly import format_timespan except ImportError: def format_timespan...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/ror_models.py
cleanup/ror_models.py
from app import db def ror_short_id(ror_id): return ror_id.replace("https://ror.org/", "") class RorAcronyms(db.Model): __table_args__ = {"schema": "ins"} __tablename__ = "ror_acronyms" ror_id = db.Column(db.Text, primary_key=True) acronym = db.Column(db.Text, primary_key=True) @classmethod...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/scripts/large_works_export_api.py
cleanup/scripts/large_works_export_api.py
# -*- coding: utf-8 -*- DESCRIPTION = """get a lot of works from the api and save to gzip json lines files""" import sys, os, time, gzip, json from pathlib import Path from datetime import datetime from timeit import default_timer as timer try: from humanfriendly import format_timespan except ImportError: d...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/scripts/validate_works_have_sources.py
cleanup/scripts/validate_works_have_sources.py
# -*- coding: utf-8 -*- DESCRIPTION = ( """check a set of OpenAlex work IDs and see if they have sources assigned""" ) import sys, os, time from simplejson.scanner import JSONDecodeError from pathlib import Path from datetime import datetime from timeit import default_timer as timer try: from humanfriendly i...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/scripts/add_missing_journals_from_crossref_api.py
cleanup/scripts/add_missing_journals_from_crossref_api.py
# -*- coding: utf-8 -*- DESCRIPTION = ( """Get all journals from Crossref's API. Add new journals to mid.journal.""" ) import sys, os, time import json from pathlib import Path from datetime import datetime from timeit import default_timer as timer try: from humanfriendly import format_timespan except Import...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/scripts/__init__.py
cleanup/scripts/__init__.py
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/scripts/update_ror_tables.py
cleanup/scripts/update_ror_tables.py
# -*- coding: utf-8 -*- DESCRIPTION = """update ror tables in the ins schema""" import sys, os, time import json from pathlib import Path from datetime import datetime from timeit import default_timer as timer try: from humanfriendly import format_timespan except ImportError: def format_timespan(seconds): ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/scripts/licenses/update_license_strings.py
cleanup/scripts/licenses/update_license_strings.py
# -*- coding: utf-8 -*- # THIS IS LEGACY CODE. PROBABLY NO LONGER THE BEST WAY TO DO THIS DESCRIPTION = """update license strings""" # example usage-- rename "pd" to "public-domain": # python -m cleanup.scripts.licenses.update_license_strings pd public-domain import sys, os, time from pathlib import Path from datet...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/cleanup/issn_audit_20240321/__init__.py
cleanup/issn_audit_20240321/__init__.py
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/snapshot/export.py
snapshot/export.py
# 1. back up current snapshot # edit snapshot/backup.py to set the last snapshot date # $ python3 -m snapshot.backup # # 2. export merged ids # $ bash ./snapshot/export_merge_ids.sh # # 3. run this script to creates the new contents of s3://openalex/data/ in a local directory ${data_dir} # $ python3 -m snapshot...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/snapshot/__init__.py
snapshot/__init__.py
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/snapshot/backup.py
snapshot/backup.py
import subprocess def backup_snapshot(): snapshot_date = '2023-11-21' print(f"Backing up snapshot for {snapshot_date}...") command = f"aws s3 sync s3://openalex s3://openalex-sandbox/snapshot-backups/openalex-jsonl/{snapshot_date}" result = subprocess.run(command, shell=True, check=True) if resu...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/merge/merge_publisher.py
merge/merge_publisher.py
import argparse import csv import datetime from app import db, logger """ 1. Run this script to merge publisher(s). single publisher: heroku run python -- -m merge.merge_publisher --old_id=123 --merge_into_id=456 or csv with header old_id, merge_into_id: heroku run python -- -m merge.merge_publisher --input_fi...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/merge/merge_work.py
merge/merge_work.py
import argparse import csv import datetime from app import db, logger """ 1. Run this script to merge work(s). single work: heroku run python -- -m merge.merge_work --old_id=123 --merge_into_id=456 or csv with header old_id, merge_into_id: heroku run python -- -m merge.merge_work --input_file=merge_works.csv ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/merge/merge_institution.py
merge/merge_institution.py
import argparse import csv import datetime from app import db, logger """ 1. Run this script to merge institution(s). single institution: heroku run python -- -m merge.merge_institution --old_id=123 --merge_into_id=456 or csv with header old_id, merge_into_id: heroku run python -- -m merge.merge_institution --...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/merge/merge_source.py
merge/merge_source.py
import argparse import csv import datetime from app import db, logger """ 1. Run this script to merge source(s). single publisher: heroku run python -- -m merge.merge_source --old_id=123 --merge_into_id=456 or csv with header old_id, merge_into_id: heroku run python -- -m merge.merge_source --input_file=merge_...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/merge/__init__.py
merge/__init__.py
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/sql_generate_export_tables.py
sql/sql_generate_export_tables.py
import argparse import logging from os import path from os import getenv import re GENERATE_CREATE_TABLE = False GENERATE_COMMENTS = False GENERATE_UNLOAD = True GENERATE_COPY = False DUMP_DIR = "2022-04-07" ## python -m sql.sql_generate_export_tables -i sql/export_views.sql -o sql/export_tables_generated.sql lo...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/namenormalizer/japanese_last_name.py
sql/python_libraries_for_sql_functions/namenormalizer/japanese_last_name.py
# https://github.com/jackdeguest/JapaneseNamesDatabase
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
true
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/namenormalizer/namenormalizer.py
sql/python_libraries_for_sql_functions/namenormalizer/namenormalizer.py
from japanese_last_name import gJapaneseLastName from chinese_last_name import gChineseLastName from korean_last_name import gKoreanLastName from unicode_mapping import gUnicodeMapping def popularity_as_chinese_firstname(word): return float(gChineseFirstName.get(word.lower(), '0.0')) def popularity_as_japanese_la...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/namenormalizer/unicode_mapping.py
sql/python_libraries_for_sql_functions/namenormalizer/unicode_mapping.py
gUnicodeMapping = {"\xc5\x81": {"translated": "\xc5\x82", "occurence": 2855}, "\xc4\x80": {"translated": "\xc4\x81", "occurence": 308}, "\xef\xbc\xaa": {"translated": "\xef\xbd\x8a", "occurence": 12}, "\xd0\xae": {"translated": "\xd1\x8e", "occurence": 6946}, "\xe2\x84\xab": {"translated": "\xc3\xa5", "occurence": 91...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/namenormalizer/chinese_last_name.py
sql/python_libraries_for_sql_functions/namenormalizer/chinese_last_name.py
# https://github.com/psychbruce/ChineseNames/blob/master/data-csv/familyname.csv gChineseLastName = {"gu": 4082.2490000000007, "shentu": 0.063, "zhongli": 0.021, "qiao": 1672.252, "qian": 2299.3150000000005, "ge": 1977.3660000000002, "gang": 24.098, "lian": 817.2059999999999, "liao": 4115.629999999999, "rou": 0.1040000...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/namenormalizer/__init__.py
sql/python_libraries_for_sql_functions/namenormalizer/__init__.py
from namenormalizer import *
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/namenormalizer/korean_last_name.py
sql/python_libraries_for_sql_functions/namenormalizer/korean_last_name.py
# https://en.wikipedia.org/wiki/List_of_Korean_surnames gKoreanLastName = {"ga":9950,"gan":2525,"gal":2086,"gam":6024,"gang":1269,"gyeon":1684,"gyeong":116958,"gye":6641,"go":471429,"gok":101,"gong":92340,"gwak":203365,"gwan":20,"gyo":26,"gu":208550,"guk":20768,"gung":572,"gwok":183,"gwon":706212,"geun":170,"geum":2547...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0ac.py
sql/python_libraries_for_sql_functions/unidecode/x0ac.py
data = ( 'ga', # 0x00 'gag', # 0x01 'gagg', # 0x02 'gags', # 0x03 'gan', # 0x04 'ganj', # 0x05 'ganh', # 0x06 'gad', # 0x07 'gal', # 0x08 'galg', # 0x09 'galm', # 0x0a 'galb', # 0x0b 'gals', # 0x0c 'galt', # 0x0d 'galp', # 0x0e 'galh', # 0x0f 'gam', # 0x10 'gab', # ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x061.py
sql/python_libraries_for_sql_functions/unidecode/x061.py
data = ( 'Qiao ', # 0x00 'Chou ', # 0x01 'Bei ', # 0x02 'Xuan ', # 0x03 'Wei ', # 0x04 'Ge ', # 0x05 'Qian ', # 0x06 'Wei ', # 0x07 'Yu ', # 0x08 'Yu ', # 0x09 'Bi ', # 0x0a 'Xuan ', # 0x0b 'Huan ', # 0x0c 'Min ', # 0x0d 'Bi ', # 0x0e 'Yi ', # 0x0f 'Mian ', # 0x10 'Yon...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0b3.py
sql/python_libraries_for_sql_functions/unidecode/x0b3.py
data = ( 'dae', # 0x00 'daeg', # 0x01 'daegg', # 0x02 'daegs', # 0x03 'daen', # 0x04 'daenj', # 0x05 'daenh', # 0x06 'daed', # 0x07 'dael', # 0x08 'daelg', # 0x09 'daelm', # 0x0a 'daelb', # 0x0b 'daels', # 0x0c 'daelt', # 0x0d 'daelp', # 0x0e 'daelh', # 0x0f 'daem', # ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x05b.py
sql/python_libraries_for_sql_functions/unidecode/x05b.py
data = ( 'Gui ', # 0x00 'Deng ', # 0x01 'Zhi ', # 0x02 'Xu ', # 0x03 'Yi ', # 0x04 'Hua ', # 0x05 'Xi ', # 0x06 'Hui ', # 0x07 'Rao ', # 0x08 'Xi ', # 0x09 'Yan ', # 0x0a 'Chan ', # 0x0b 'Jiao ', # 0x0c 'Mei ', # 0x0d 'Fan ', # 0x0e 'Fan ', # 0x0f 'Xian ', # 0x10 'Yi '...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x096.py
sql/python_libraries_for_sql_functions/unidecode/x096.py
data = ( 'Fa ', # 0x00 'Ge ', # 0x01 'He ', # 0x02 'Kun ', # 0x03 'Jiu ', # 0x04 'Yue ', # 0x05 'Lang ', # 0x06 'Du ', # 0x07 'Yu ', # 0x08 'Yan ', # 0x09 'Chang ', # 0x0a 'Xi ', # 0x0b 'Wen ', # 0x0c 'Hun ', # 0x0d 'Yan ', # 0x0e 'E ', # 0x0f 'Chan ', # 0x10 'Lan ', ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0b0.py
sql/python_libraries_for_sql_functions/unidecode/x0b0.py
data = ( 'ggwem', # 0x00 'ggweb', # 0x01 'ggwebs', # 0x02 'ggwes', # 0x03 'ggwess', # 0x04 'ggweng', # 0x05 'ggwej', # 0x06 'ggwec', # 0x07 'ggwek', # 0x08 'ggwet', # 0x09 'ggwep', # 0x0a 'ggweh', # 0x0b 'ggwi', # 0x0c 'ggwig', # 0x0d 'ggwigg', # 0x0e 'ggwigs', # 0x0f 'gg...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x00a.py
sql/python_libraries_for_sql_functions/unidecode/x00a.py
data = ( '[?]', # 0x00 '[?]', # 0x01 'N', # 0x02 '[?]', # 0x03 '[?]', # 0x04 'a', # 0x05 'aa', # 0x06 'i', # 0x07 'ii', # 0x08 'u', # 0x09 'uu', # 0x0a '[?]', # 0x0b '[?]', # 0x0c '[?]', # 0x0d '[?]', # 0x0e 'ee', # 0x0f 'ai', # 0x10 '[?]', # 0x11 '[?]', # 0x12 '...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0c9.py
sql/python_libraries_for_sql_functions/unidecode/x0c9.py
data = ( 'jun', # 0x00 'junj', # 0x01 'junh', # 0x02 'jud', # 0x03 'jul', # 0x04 'julg', # 0x05 'julm', # 0x06 'julb', # 0x07 'juls', # 0x08 'jult', # 0x09 'julp', # 0x0a 'julh', # 0x0b 'jum', # 0x0c 'jub', # 0x0d 'jubs', # 0x0e 'jus', # 0x0f 'juss', # 0x10 'jung', ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x067.py
sql/python_libraries_for_sql_functions/unidecode/x067.py
data = ( 'Zui ', # 0x00 'Can ', # 0x01 'Xu ', # 0x02 'Hui ', # 0x03 'Yin ', # 0x04 'Qie ', # 0x05 'Fen ', # 0x06 'Pi ', # 0x07 'Yue ', # 0x08 'You ', # 0x09 'Ruan ', # 0x0a 'Peng ', # 0x0b 'Ban ', # 0x0c 'Fu ', # 0x0d 'Ling ', # 0x0e 'Fei ', # 0x0f 'Qu ', # 0x10 '[?] '...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x010.py
sql/python_libraries_for_sql_functions/unidecode/x010.py
data = ( 'k', # 0x00 'kh', # 0x01 'g', # 0x02 'gh', # 0x03 'ng', # 0x04 'c', # 0x05 'ch', # 0x06 'j', # 0x07 'jh', # 0x08 'ny', # 0x09 'nny', # 0x0a 'tt', # 0x0b 'tth', # 0x0c 'dd', # 0x0d 'ddh', # 0x0e 'nn', # 0x0f 'tt', # 0x10 'th', # 0x11 'd', # 0x12 'dh', ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x00b.py
sql/python_libraries_for_sql_functions/unidecode/x00b.py
data = ( '[?]', # 0x00 'N', # 0x01 'N', # 0x02 'H', # 0x03 '[?]', # 0x04 'a', # 0x05 'aa', # 0x06 'i', # 0x07 'ii', # 0x08 'u', # 0x09 'uu', # 0x0a 'R', # 0x0b 'L', # 0x0c '[?]', # 0x0d '[?]', # 0x0e 'e', # 0x0f 'ai', # 0x10 '[?]', # 0x11 '[?]', # 0x12 'o', # ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0c0.py
sql/python_libraries_for_sql_functions/unidecode/x0c0.py
data = ( 'bbweok', # 0x00 'bbweot', # 0x01 'bbweop', # 0x02 'bbweoh', # 0x03 'bbwe', # 0x04 'bbweg', # 0x05 'bbwegg', # 0x06 'bbwegs', # 0x07 'bbwen', # 0x08 'bbwenj', # 0x09 'bbwenh', # 0x0a 'bbwed', # 0x0b 'bbwel', # 0x0c 'bbwelg', # 0x0d 'bbwelm', # 0x0e 'bbwelb', # 0x...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x07b.py
sql/python_libraries_for_sql_functions/unidecode/x07b.py
data = ( 'Mang ', # 0x00 'Zhu ', # 0x01 'Utsubo ', # 0x02 'Du ', # 0x03 'Ji ', # 0x04 'Xiao ', # 0x05 'Ba ', # 0x06 'Suan ', # 0x07 'Ji ', # 0x08 'Zhen ', # 0x09 'Zhao ', # 0x0a 'Sun ', # 0x0b 'Ya ', # 0x0c 'Zhui ', # 0x0d 'Yuan ', # 0x0e 'Hu ', # 0x0f 'Gang ', # 0x10 ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x069.py
sql/python_libraries_for_sql_functions/unidecode/x069.py
data = ( 'Wan ', # 0x00 'Guo ', # 0x01 'Lu ', # 0x02 'Hao ', # 0x03 'Jie ', # 0x04 'Yi ', # 0x05 'Chou ', # 0x06 'Ju ', # 0x07 'Ju ', # 0x08 'Cheng ', # 0x09 'Zuo ', # 0x0a 'Liang ', # 0x0b 'Qiang ', # 0x0c 'Zhi ', # 0x0d 'Zhui ', # 0x0e 'Ya ', # 0x0f 'Ju ', # 0x10 'Be...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x090.py
sql/python_libraries_for_sql_functions/unidecode/x090.py
data = ( 'Tui ', # 0x00 'Song ', # 0x01 'Gua ', # 0x02 'Tao ', # 0x03 'Pang ', # 0x04 'Hou ', # 0x05 'Ni ', # 0x06 'Dun ', # 0x07 'Jiong ', # 0x08 'Xuan ', # 0x09 'Xun ', # 0x0a 'Bu ', # 0x0b 'You ', # 0x0c 'Xiao ', # 0x0d 'Qiu ', # 0x0e 'Tou ', # 0x0f 'Zhu ', # 0x10 '...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x1d4.py
sql/python_libraries_for_sql_functions/unidecode/x1d4.py
data = ( 'A', # 0x00 'B', # 0x01 'C', # 0x02 'D', # 0x03 'E', # 0x04 'F', # 0x05 'G', # 0x06 'H', # 0x07 'I', # 0x08 'J', # 0x09 'K', # 0x0a 'L', # 0x0b 'M', # 0x0c 'N', # 0x0d 'O', # 0x0e 'P', # 0x0f 'Q', # 0x10 'R', # 0x11 'S', # 0x12 'T', # 0x13 'U', # 0...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x006.py
sql/python_libraries_for_sql_functions/unidecode/x006.py
data = ( '[?]', # 0x00 '[?]', # 0x01 '[?]', # 0x02 '[?]', # 0x03 '[?]', # 0x04 '[?]', # 0x05 '[?]', # 0x06 '[?]', # 0x07 '[?]', # 0x08 '[?]', # 0x09 '[?]', # 0x0a '[?]', # 0x0b ',', # 0x0c '[?]', # 0x0d '[?]', # 0x0e '[?]', # 0x0f '[?]', # 0x10 '[?]', # 0x11 '[?]', ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x080.py
sql/python_libraries_for_sql_functions/unidecode/x080.py
data = ( 'Yao ', # 0x00 'Lao ', # 0x01 '[?] ', # 0x02 'Kao ', # 0x03 'Mao ', # 0x04 'Zhe ', # 0x05 'Qi ', # 0x06 'Gou ', # 0x07 'Gou ', # 0x08 'Gou ', # 0x09 'Die ', # 0x0a 'Die ', # 0x0b 'Er ', # 0x0c 'Shua ', # 0x0d 'Ruan ', # 0x0e 'Er ', # 0x0f 'Nai ', # 0x10 'Zhuan...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x091.py
sql/python_libraries_for_sql_functions/unidecode/x091.py
data = ( 'Ruo ', # 0x00 'Bei ', # 0x01 'E ', # 0x02 'Yu ', # 0x03 'Juan ', # 0x04 'Yu ', # 0x05 'Yun ', # 0x06 'Hou ', # 0x07 'Kui ', # 0x08 'Xiang ', # 0x09 'Xiang ', # 0x0a 'Sou ', # 0x0b 'Tang ', # 0x0c 'Ming ', # 0x0d 'Xi ', # 0x0e 'Ru ', # 0x0f 'Chu ', # 0x10 'Zi ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x06e.py
sql/python_libraries_for_sql_functions/unidecode/x06e.py
data = ( 'Ben ', # 0x00 'Yuan ', # 0x01 'Wen ', # 0x02 'Re ', # 0x03 'Fei ', # 0x04 'Qing ', # 0x05 'Yuan ', # 0x06 'Ke ', # 0x07 'Ji ', # 0x08 'She ', # 0x09 'Yuan ', # 0x0a 'Shibui ', # 0x0b 'Lu ', # 0x0c 'Zi ', # 0x0d 'Du ', # 0x0e '[?] ', # 0x0f 'Jian ', # 0x10 'Mi...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x052.py
sql/python_libraries_for_sql_functions/unidecode/x052.py
data = ( 'Dao ', # 0x00 'Diao ', # 0x01 'Dao ', # 0x02 'Ren ', # 0x03 'Ren ', # 0x04 'Chuang ', # 0x05 'Fen ', # 0x06 'Qie ', # 0x07 'Yi ', # 0x08 'Ji ', # 0x09 'Kan ', # 0x0a 'Qian ', # 0x0b 'Cun ', # 0x0c 'Chu ', # 0x0d 'Wen ', # 0x0e 'Ji ', # 0x0f 'Dan ', # 0x10 'Xi...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x033.py
sql/python_libraries_for_sql_functions/unidecode/x033.py
data = ( 'apartment', # 0x00 'alpha', # 0x01 'ampere', # 0x02 'are', # 0x03 'inning', # 0x04 'inch', # 0x05 'won', # 0x06 'escudo', # 0x07 'acre', # 0x08 'ounce', # 0x09 'ohm', # 0x0a 'kai-ri', # 0x0b 'carat', # 0x0c 'calorie', # 0x0d 'gallon', # 0x0e 'gamma', # 0x0f 'gig...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0c7.py
sql/python_libraries_for_sql_functions/unidecode/x0c7.py
data = ( 'wek', # 0x00 'wet', # 0x01 'wep', # 0x02 'weh', # 0x03 'wi', # 0x04 'wig', # 0x05 'wigg', # 0x06 'wigs', # 0x07 'win', # 0x08 'winj', # 0x09 'winh', # 0x0a 'wid', # 0x0b 'wil', # 0x0c 'wilg', # 0x0d 'wilm', # 0x0e 'wilb', # 0x0f 'wils', # 0x10 'wilt', # 0x...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0d4.py
sql/python_libraries_for_sql_functions/unidecode/x0d4.py
data = ( 'poss', # 0x00 'pong', # 0x01 'poj', # 0x02 'poc', # 0x03 'pok', # 0x04 'pot', # 0x05 'pop', # 0x06 'poh', # 0x07 'pwa', # 0x08 'pwag', # 0x09 'pwagg', # 0x0a 'pwags', # 0x0b 'pwan', # 0x0c 'pwanj', # 0x0d 'pwanh', # 0x0e 'pwad', # 0x0f 'pwal', # 0x10 'pwalg',...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x1f1.py
sql/python_libraries_for_sql_functions/unidecode/x1f1.py
data = ( '0.', # 0x00 '0,', # 0x01 '1,', # 0x02 '2,', # 0x03 '3,', # 0x04 '4,', # 0x05 '5,', # 0x06 '6,', # 0x07 '7,', # 0x08 '8,', # 0x09 '9,', # 0x0a '', # 0x0b '', # 0x0c '', # 0x0d '', # 0x0e '', # 0x0f '(A)', # 0x10 '(B)', # 0x11 '(C)', # 0x12 '(D)', # 0x...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x030.py
sql/python_libraries_for_sql_functions/unidecode/x030.py
data = ( ' ', # 0x00 ', ', # 0x01 '. ', # 0x02 '"', # 0x03 '[JIS]', # 0x04 '"', # 0x05 '/', # 0x06 '0', # 0x07 '<', # 0x08 '> ', # 0x09 '<<', # 0x0a '>> ', # 0x0b '[', # 0x0c '] ', # 0x0d '{', # 0x0e '} ', # 0x0f '[(', # 0x10 ')] ', # 0x11 '@', # 0x12 'X ', # ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0bc.py
sql/python_libraries_for_sql_functions/unidecode/x0bc.py
data = ( 'mil', # 0x00 'milg', # 0x01 'milm', # 0x02 'milb', # 0x03 'mils', # 0x04 'milt', # 0x05 'milp', # 0x06 'milh', # 0x07 'mim', # 0x08 'mib', # 0x09 'mibs', # 0x0a 'mis', # 0x0b 'miss', # 0x0c 'ming', # 0x0d 'mij', # 0x0e 'mic', # 0x0f 'mik', # 0x10 'mit', # ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x01f.py
sql/python_libraries_for_sql_functions/unidecode/x01f.py
data = ( 'a', # 0x00 'a', # 0x01 'a', # 0x02 'a', # 0x03 'a', # 0x04 'a', # 0x05 'a', # 0x06 'a', # 0x07 'A', # 0x08 'A', # 0x09 'A', # 0x0a 'A', # 0x0b 'A', # 0x0c 'A', # 0x0d 'A', # 0x0e 'A', # 0x0f 'e', # 0x10 'e', # 0x11 'e', # 0x12 'e', # 0x13 'e', # 0...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0b6.py
sql/python_libraries_for_sql_functions/unidecode/x0b6.py
data = ( 'ddyels', # 0x00 'ddyelt', # 0x01 'ddyelp', # 0x02 'ddyelh', # 0x03 'ddyem', # 0x04 'ddyeb', # 0x05 'ddyebs', # 0x06 'ddyes', # 0x07 'ddyess', # 0x08 'ddyeng', # 0x09 'ddyej', # 0x0a 'ddyec', # 0x0b 'ddyek', # 0x0c 'ddyet', # 0x0d 'ddyep', # 0x0e 'ddyeh', # 0x0f ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0a0.py
sql/python_libraries_for_sql_functions/unidecode/x0a0.py
data = ( 'it', # 0x00 'ix', # 0x01 'i', # 0x02 'ip', # 0x03 'iet', # 0x04 'iex', # 0x05 'ie', # 0x06 'iep', # 0x07 'at', # 0x08 'ax', # 0x09 'a', # 0x0a 'ap', # 0x0b 'uox', # 0x0c 'uo', # 0x0d 'uop', # 0x0e 'ot', # 0x0f 'ox', # 0x10 'o', # 0x11 'op', # 0x12 'ex',...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0d0.py
sql/python_libraries_for_sql_functions/unidecode/x0d0.py
data = ( 'kweon', # 0x00 'kweonj', # 0x01 'kweonh', # 0x02 'kweod', # 0x03 'kweol', # 0x04 'kweolg', # 0x05 'kweolm', # 0x06 'kweolb', # 0x07 'kweols', # 0x08 'kweolt', # 0x09 'kweolp', # 0x0a 'kweolh', # 0x0b 'kweom', # 0x0c 'kweob', # 0x0d 'kweobs', # 0x0e 'kweos', # 0x...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0d2.py
sql/python_libraries_for_sql_functions/unidecode/x0d2.py
data = ( 'toels', # 0x00 'toelt', # 0x01 'toelp', # 0x02 'toelh', # 0x03 'toem', # 0x04 'toeb', # 0x05 'toebs', # 0x06 'toes', # 0x07 'toess', # 0x08 'toeng', # 0x09 'toej', # 0x0a 'toec', # 0x0b 'toek', # 0x0c 'toet', # 0x0d 'toep', # 0x0e 'toeh', # 0x0f 'tyo', # 0x10...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0d1.py
sql/python_libraries_for_sql_functions/unidecode/x0d1.py
data = ( 'tyal', # 0x00 'tyalg', # 0x01 'tyalm', # 0x02 'tyalb', # 0x03 'tyals', # 0x04 'tyalt', # 0x05 'tyalp', # 0x06 'tyalh', # 0x07 'tyam', # 0x08 'tyab', # 0x09 'tyabs', # 0x0a 'tyas', # 0x0b 'tyass', # 0x0c 'tyang', # 0x0d 'tyaj', # 0x0e 'tyac', # 0x0f 'tyak', # ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0bb.py
sql/python_libraries_for_sql_functions/unidecode/x0bb.py
data = ( 'moen', # 0x00 'moenj', # 0x01 'moenh', # 0x02 'moed', # 0x03 'moel', # 0x04 'moelg', # 0x05 'moelm', # 0x06 'moelb', # 0x07 'moels', # 0x08 'moelt', # 0x09 'moelp', # 0x0a 'moelh', # 0x0b 'moem', # 0x0c 'moeb', # 0x0d 'moebs', # 0x0e 'moes', # 0x0f 'moess', #...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x098.py
sql/python_libraries_for_sql_functions/unidecode/x098.py
data = ( 'Hu ', # 0x00 'Ye ', # 0x01 'Ding ', # 0x02 'Qing ', # 0x03 'Pan ', # 0x04 'Xiang ', # 0x05 'Shun ', # 0x06 'Han ', # 0x07 'Xu ', # 0x08 'Yi ', # 0x09 'Xu ', # 0x0a 'Gu ', # 0x0b 'Song ', # 0x0c 'Kui ', # 0x0d 'Qi ', # 0x0e 'Hang ', # 0x0f 'Yu ', # 0x10 'Wan '...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x004.py
sql/python_libraries_for_sql_functions/unidecode/x004.py
data = ( 'Ie', # 0x00 'Io', # 0x01 'Dj', # 0x02 'Gj', # 0x03 'Ie', # 0x04 'Dz', # 0x05 'I', # 0x06 'Yi', # 0x07 'J', # 0x08 'Lj', # 0x09 'Nj', # 0x0a 'Tsh', # 0x0b 'Kj', # 0x0c 'I', # 0x0d 'U', # 0x0e 'Dzh', # 0x0f 'A', # 0x10 'B', # 0x11 'V', # 0x12 'G', # 0x...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0b2.py
sql/python_libraries_for_sql_functions/unidecode/x0b2.py
data = ( 'nyok', # 0x00 'nyot', # 0x01 'nyop', # 0x02 'nyoh', # 0x03 'nu', # 0x04 'nug', # 0x05 'nugg', # 0x06 'nugs', # 0x07 'nun', # 0x08 'nunj', # 0x09 'nunh', # 0x0a 'nud', # 0x0b 'nul', # 0x0c 'nulg', # 0x0d 'nulm', # 0x0e 'nulb', # 0x0f 'nuls', # 0x10 'nult', ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x08c.py
sql/python_libraries_for_sql_functions/unidecode/x08c.py
data = ( 'Yu ', # 0x00 'Shui ', # 0x01 'Shen ', # 0x02 'Diao ', # 0x03 'Chan ', # 0x04 'Liang ', # 0x05 'Zhun ', # 0x06 'Sui ', # 0x07 'Tan ', # 0x08 'Shen ', # 0x09 'Yi ', # 0x0a 'Mou ', # 0x0b 'Chen ', # 0x0c 'Die ', # 0x0d 'Huang ', # 0x0e 'Jian ', # 0x0f 'Xie ', # ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0b8.py
sql/python_libraries_for_sql_functions/unidecode/x0b8.py
data = ( 'reoss', # 0x00 'reong', # 0x01 'reoj', # 0x02 'reoc', # 0x03 'reok', # 0x04 'reot', # 0x05 'reop', # 0x06 'reoh', # 0x07 're', # 0x08 'reg', # 0x09 'regg', # 0x0a 'regs', # 0x0b 'ren', # 0x0c 'renj', # 0x0d 'renh', # 0x0e 'red', # 0x0f 'rel', # 0x10 'relg', ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x029.py
sql/python_libraries_for_sql_functions/unidecode/x029.py
data = ( '', # 0x00 '', # 0x01 '', # 0x02 '', # 0x03 '', # 0x04 '', # 0x05 '', # 0x06 '', # 0x07 '', # 0x08 '', # 0x09 '', # 0x0a '', # 0x0b '', # 0x0c '', # 0x0d '', # 0x0e '', # 0x0f '', # 0x10 '', # 0x11 '', # 0x12 '', # 0x13 '', # 0x14 '', # 0x15 '',...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0ad.py
sql/python_libraries_for_sql_functions/unidecode/x0ad.py
data = ( 'gwan', # 0x00 'gwanj', # 0x01 'gwanh', # 0x02 'gwad', # 0x03 'gwal', # 0x04 'gwalg', # 0x05 'gwalm', # 0x06 'gwalb', # 0x07 'gwals', # 0x08 'gwalt', # 0x09 'gwalp', # 0x0a 'gwalh', # 0x0b 'gwam', # 0x0c 'gwab', # 0x0d 'gwabs', # 0x0e 'gwas', # 0x0f 'gwass', #...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x05d.py
sql/python_libraries_for_sql_functions/unidecode/x05d.py
data = ( 'Lang ', # 0x00 'Kan ', # 0x01 'Lao ', # 0x02 'Lai ', # 0x03 'Xian ', # 0x04 'Que ', # 0x05 'Kong ', # 0x06 'Chong ', # 0x07 'Chong ', # 0x08 'Ta ', # 0x09 'Lin ', # 0x0a 'Hua ', # 0x0b 'Ju ', # 0x0c 'Lai ', # 0x0d 'Qi ', # 0x0e 'Min ', # 0x0f 'Kun ', # 0x10 '...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0cb.py
sql/python_libraries_for_sql_functions/unidecode/x0cb.py
data = ( 'jjwaels', # 0x00 'jjwaelt', # 0x01 'jjwaelp', # 0x02 'jjwaelh', # 0x03 'jjwaem', # 0x04 'jjwaeb', # 0x05 'jjwaebs', # 0x06 'jjwaes', # 0x07 'jjwaess', # 0x08 'jjwaeng', # 0x09 'jjwaej', # 0x0a 'jjwaec', # 0x0b 'jjwaek', # 0x0c 'jjwaet', # 0x0d 'jjwaep', # 0x0e 'jjw...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x074.py
sql/python_libraries_for_sql_functions/unidecode/x074.py
data = ( 'Han ', # 0x00 'Xuan ', # 0x01 'Yan ', # 0x02 'Qiu ', # 0x03 'Quan ', # 0x04 'Lang ', # 0x05 'Li ', # 0x06 'Xiu ', # 0x07 'Fu ', # 0x08 'Liu ', # 0x09 'Ye ', # 0x0a 'Xi ', # 0x0b 'Ling ', # 0x0c 'Li ', # 0x0d 'Jin ', # 0x0e 'Lian ', # 0x0f 'Suo ', # 0x10 'Chii...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x073.py
sql/python_libraries_for_sql_functions/unidecode/x073.py
data = ( 'Sha ', # 0x00 'Li ', # 0x01 'Han ', # 0x02 'Xian ', # 0x03 'Jing ', # 0x04 'Pai ', # 0x05 'Fei ', # 0x06 'Yao ', # 0x07 'Ba ', # 0x08 'Qi ', # 0x09 'Ni ', # 0x0a 'Biao ', # 0x0b 'Yin ', # 0x0c 'Lai ', # 0x0d 'Xi ', # 0x0e 'Jian ', # 0x0f 'Qiang ', # 0x10 'Kun...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x05c.py
sql/python_libraries_for_sql_functions/unidecode/x05c.py
data = ( 'Po ', # 0x00 'Feng ', # 0x01 'Zhuan ', # 0x02 'Fu ', # 0x03 'She ', # 0x04 'Ke ', # 0x05 'Jiang ', # 0x06 'Jiang ', # 0x07 'Zhuan ', # 0x08 'Wei ', # 0x09 'Zun ', # 0x0a 'Xun ', # 0x0b 'Shu ', # 0x0c 'Dui ', # 0x0d 'Dao ', # 0x0e 'Xiao ', # 0x0f 'Ji ', # 0x10...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x02c.py
sql/python_libraries_for_sql_functions/unidecode/x02c.py
data = ( '', # 0x00 '', # 0x01 '', # 0x02 '', # 0x03 '', # 0x04 '', # 0x05 '', # 0x06 '', # 0x07 '', # 0x08 '', # 0x09 '', # 0x0a '', # 0x0b '', # 0x0c '', # 0x0d '', # 0x0e '', # 0x0f '', # 0x10 '', # 0x11 '', # 0x12 '', # 0x13 '', # 0x14 '', # 0x15 '',...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x06d.py
sql/python_libraries_for_sql_functions/unidecode/x06d.py
data = ( 'Zhou ', # 0x00 'Ji ', # 0x01 'Yi ', # 0x02 'Hui ', # 0x03 'Hui ', # 0x04 'Zui ', # 0x05 'Cheng ', # 0x06 'Yin ', # 0x07 'Wei ', # 0x08 'Hou ', # 0x09 'Jian ', # 0x0a 'Yang ', # 0x0b 'Lie ', # 0x0c 'Si ', # 0x0d 'Ji ', # 0x0e 'Er ', # 0x0f 'Xing ', # 0x10 'Fu ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0c6.py
sql/python_libraries_for_sql_functions/unidecode/x0c6.py
data = ( 'yeoss', # 0x00 'yeong', # 0x01 'yeoj', # 0x02 'yeoc', # 0x03 'yeok', # 0x04 'yeot', # 0x05 'yeop', # 0x06 'yeoh', # 0x07 'ye', # 0x08 'yeg', # 0x09 'yegg', # 0x0a 'yegs', # 0x0b 'yen', # 0x0c 'yenj', # 0x0d 'yenh', # 0x0e 'yed', # 0x0f 'yel', # 0x10 'yelg', ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0af.py
sql/python_libraries_for_sql_functions/unidecode/x0af.py
data = ( 'ggyeols', # 0x00 'ggyeolt', # 0x01 'ggyeolp', # 0x02 'ggyeolh', # 0x03 'ggyeom', # 0x04 'ggyeob', # 0x05 'ggyeobs', # 0x06 'ggyeos', # 0x07 'ggyeoss', # 0x08 'ggyeong', # 0x09 'ggyeoj', # 0x0a 'ggyeoc', # 0x0b 'ggyeok', # 0x0c 'ggyeot', # 0x0d 'ggyeop', # 0x0e 'ggy...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0b1.py
sql/python_libraries_for_sql_functions/unidecode/x0b1.py
data = ( 'nyaess', # 0x00 'nyaeng', # 0x01 'nyaej', # 0x02 'nyaec', # 0x03 'nyaek', # 0x04 'nyaet', # 0x05 'nyaep', # 0x06 'nyaeh', # 0x07 'neo', # 0x08 'neog', # 0x09 'neogg', # 0x0a 'neogs', # 0x0b 'neon', # 0x0c 'neonj', # 0x0d 'neonh', # 0x0e 'neod', # 0x0f 'neol', ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x01d.py
sql/python_libraries_for_sql_functions/unidecode/x01d.py
data = ( 'A', # 0x00 'AE', # 0x01 'ae', # 0x02 'B', # 0x03 'C', # 0x04 'D', # 0x05 'D', # 0x06 'E', # 0x07 'e', # 0x08 'i', # 0x09 'J', # 0x0a 'K', # 0x0b 'L', # 0x0c 'M', # 0x0d 'N', # 0x0e 'O', # 0x0f '', # 0x10 'O', # 0x11 '', # 0x12 'O', # 0x13 'Oe', # ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x031.py
sql/python_libraries_for_sql_functions/unidecode/x031.py
data = ( '[?]', # 0x00 '[?]', # 0x01 '[?]', # 0x02 '[?]', # 0x03 '[?]', # 0x04 'B', # 0x05 'P', # 0x06 'M', # 0x07 'F', # 0x08 'D', # 0x09 'T', # 0x0a 'N', # 0x0b 'L', # 0x0c 'G', # 0x0d 'K', # 0x0e 'H', # 0x0f 'J', # 0x10 'Q', # 0x11 'X', # 0x12 'ZH', # 0x13 ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x1d7.py
sql/python_libraries_for_sql_functions/unidecode/x1d7.py
data = ( '', # 0x00 '', # 0x01 '', # 0x02 '', # 0x03 '', # 0x04 '', # 0x05 '', # 0x06 '', # 0x07 '', # 0x08 '', # 0x09 '', # 0x0a '', # 0x0b '', # 0x0c '', # 0x0d '', # 0x0e '', # 0x0f '', # 0x10 '', # 0x11 '', # 0x12 '', # 0x13 '', # 0x14 '', # 0x15 '',...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/util.py
sql/python_libraries_for_sql_functions/unidecode/util.py
# vim:ts=4 sw=4 expandtab softtabstop=4 from __future__ import print_function import optparse import locale import os import sys import warnings from unidecode import unidecode PY3 = sys.version_info[0] >= 3 def fatal(msg): sys.stderr.write(msg + "\n") sys.exit(1) def main(): default_encoding = locale.g...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0ce.py
sql/python_libraries_for_sql_functions/unidecode/x0ce.py
data = ( 'cwik', # 0x00 'cwit', # 0x01 'cwip', # 0x02 'cwih', # 0x03 'cyu', # 0x04 'cyug', # 0x05 'cyugg', # 0x06 'cyugs', # 0x07 'cyun', # 0x08 'cyunj', # 0x09 'cyunh', # 0x0a 'cyud', # 0x0b 'cyul', # 0x0c 'cyulg', # 0x0d 'cyulm', # 0x0e 'cyulb', # 0x0f 'cyuls', # 0x1...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0c1.py
sql/python_libraries_for_sql_functions/unidecode/x0c1.py
data = ( 'syae', # 0x00 'syaeg', # 0x01 'syaegg', # 0x02 'syaegs', # 0x03 'syaen', # 0x04 'syaenj', # 0x05 'syaenh', # 0x06 'syaed', # 0x07 'syael', # 0x08 'syaelg', # 0x09 'syaelm', # 0x0a 'syaelb', # 0x0b 'syaels', # 0x0c 'syaelt', # 0x0d 'syaelp', # 0x0e 'syaelh', # 0x...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x08a.py
sql/python_libraries_for_sql_functions/unidecode/x08a.py
data = ( 'Yan ', # 0x00 'Yan ', # 0x01 'Ding ', # 0x02 'Fu ', # 0x03 'Qiu ', # 0x04 'Qiu ', # 0x05 'Jiao ', # 0x06 'Hong ', # 0x07 'Ji ', # 0x08 'Fan ', # 0x09 'Xun ', # 0x0a 'Diao ', # 0x0b 'Hong ', # 0x0c 'Cha ', # 0x0d 'Tao ', # 0x0e 'Xu ', # 0x0f 'Jie ', # 0x10 'Yi...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x095.py
sql/python_libraries_for_sql_functions/unidecode/x095.py
data = ( 'Xiao ', # 0x00 'Suo ', # 0x01 'Li ', # 0x02 'Zheng ', # 0x03 'Chu ', # 0x04 'Guo ', # 0x05 'Gao ', # 0x06 'Tie ', # 0x07 'Xiu ', # 0x08 'Cuo ', # 0x09 'Lue ', # 0x0a 'Feng ', # 0x0b 'Xin ', # 0x0c 'Liu ', # 0x0d 'Kai ', # 0x0e 'Jian ', # 0x0f 'Rui ', # 0x10 '...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x088.py
sql/python_libraries_for_sql_functions/unidecode/x088.py
data = ( 'Ci ', # 0x00 'Xiang ', # 0x01 'She ', # 0x02 'Luo ', # 0x03 'Qin ', # 0x04 'Ying ', # 0x05 'Chai ', # 0x06 'Li ', # 0x07 'Ze ', # 0x08 'Xuan ', # 0x09 'Lian ', # 0x0a 'Zhu ', # 0x0b 'Ze ', # 0x0c 'Xie ', # 0x0d 'Mang ', # 0x0e 'Xie ', # 0x0f 'Qi ', # 0x10 'Ro...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0ba.py
sql/python_libraries_for_sql_functions/unidecode/x0ba.py
data = ( 'mya', # 0x00 'myag', # 0x01 'myagg', # 0x02 'myags', # 0x03 'myan', # 0x04 'myanj', # 0x05 'myanh', # 0x06 'myad', # 0x07 'myal', # 0x08 'myalg', # 0x09 'myalm', # 0x0a 'myalb', # 0x0b 'myals', # 0x0c 'myalt', # 0x0d 'myalp', # 0x0e 'myalh', # 0x0f 'myam', # ...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0bd.py
sql/python_libraries_for_sql_functions/unidecode/x0bd.py
data = ( 'bols', # 0x00 'bolt', # 0x01 'bolp', # 0x02 'bolh', # 0x03 'bom', # 0x04 'bob', # 0x05 'bobs', # 0x06 'bos', # 0x07 'boss', # 0x08 'bong', # 0x09 'boj', # 0x0a 'boc', # 0x0b 'bok', # 0x0c 'bot', # 0x0d 'bop', # 0x0e 'boh', # 0x0f 'bwa', # 0x10 'bwag', # 0x...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x085.py
sql/python_libraries_for_sql_functions/unidecode/x085.py
data = ( 'Bu ', # 0x00 'Zhang ', # 0x01 'Luo ', # 0x02 'Jiang ', # 0x03 'Man ', # 0x04 'Yan ', # 0x05 'Ling ', # 0x06 'Ji ', # 0x07 'Piao ', # 0x08 'Gun ', # 0x09 'Han ', # 0x0a 'Di ', # 0x0b 'Su ', # 0x0c 'Lu ', # 0x0d 'She ', # 0x0e 'Shang ', # 0x0f 'Di ', # 0x10 'Mi...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0d5.py
sql/python_libraries_for_sql_functions/unidecode/x0d5.py
data = ( 'pyuk', # 0x00 'pyut', # 0x01 'pyup', # 0x02 'pyuh', # 0x03 'peu', # 0x04 'peug', # 0x05 'peugg', # 0x06 'peugs', # 0x07 'peun', # 0x08 'peunj', # 0x09 'peunh', # 0x0a 'peud', # 0x0b 'peul', # 0x0c 'peulg', # 0x0d 'peulm', # 0x0e 'peulb', # 0x0f 'peuls', # 0x1...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x076.py
sql/python_libraries_for_sql_functions/unidecode/x076.py
data = ( 'Yu ', # 0x00 'Cui ', # 0x01 'Ya ', # 0x02 'Zhu ', # 0x03 'Cu ', # 0x04 'Dan ', # 0x05 'Shen ', # 0x06 'Zhung ', # 0x07 'Ji ', # 0x08 'Yu ', # 0x09 'Hou ', # 0x0a 'Feng ', # 0x0b 'La ', # 0x0c 'Yang ', # 0x0d 'Shen ', # 0x0e 'Tu ', # 0x0f 'Yu ', # 0x10 'Gua ',...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0cc.py
sql/python_libraries_for_sql_functions/unidecode/x0cc.py
data = ( 'jjyim', # 0x00 'jjyib', # 0x01 'jjyibs', # 0x02 'jjyis', # 0x03 'jjyiss', # 0x04 'jjying', # 0x05 'jjyij', # 0x06 'jjyic', # 0x07 'jjyik', # 0x08 'jjyit', # 0x09 'jjyip', # 0x0a 'jjyih', # 0x0b 'jji', # 0x0c 'jjig', # 0x0d 'jjigg', # 0x0e 'jjigs', # 0x0f 'jjin',...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false
ourresearch/openalex-guts
https://github.com/ourresearch/openalex-guts/blob/59706e52ceb84b12427334b046c47b7a6d95c862/sql/python_libraries_for_sql_functions/unidecode/x0a2.py
sql/python_libraries_for_sql_functions/unidecode/x0a2.py
data = ( 'kax', # 0x00 'ka', # 0x01 'kap', # 0x02 'kuox', # 0x03 'kuo', # 0x04 'kuop', # 0x05 'kot', # 0x06 'kox', # 0x07 'ko', # 0x08 'kop', # 0x09 'ket', # 0x0a 'kex', # 0x0b 'ke', # 0x0c 'kep', # 0x0d 'kut', # 0x0e 'kux', # 0x0f 'ku', # 0x10 'kup', # 0x11 'kurx',...
python
MIT
59706e52ceb84b12427334b046c47b7a6d95c862
2026-01-05T07:10:54.483482Z
false