python中的pyperclip模块基于什么C函数(或接口)?

r8xiu3jd  于 11个月前  发布在  Python
关注(0)|答案(1)|浏览(104)

看,我想知道python中的pyperclip库是基于什么C函数的。我找不到这些信息,所以我决定在这里询问。据我所知,这些基本函数在不同的操作系统上是不同的,所以我对Ubuntu感兴趣

6l7fqoea

6l7fqoea1#

它基于需要X11实现的xclip()xsel()
xclip.c有自己的功能:

  • *get_requestor
  • del_requestor
  • clean_requestors
  • doOptMain
  • doOptSel
  • doOptTarget
  • doIn
  • printSelBuf
  • doOut

xsel.c功能:

  • get_atom_name
  • debug_property
  • xs_malloc
  • _xs_strdup
  • _xs_strncpy
  • get_xdg_cache_home
  • block_exit_sigs
  • unblock_exit_sigs
  • alarm_handler
  • 其他(约49个)

Linux Linux本身基于freedesktop.org
存储库:pyperclipxclipxsel
已找到:Michael ButscherSome Programmer DudeHåkon Hægland

相关问题