{"id":69547,"date":"2026-03-16T18:51:22","date_gmt":"2026-03-16T15:51:22","guid":{"rendered":"https:\/\/cloudspinx.com\/?p=69547"},"modified":"2026-03-16T18:51:22","modified_gmt":"2026-03-16T15:51:22","slug":"count-lines-of-source-code-on-linux-using-tokei","status":"publish","type":"post","link":"https:\/\/computingforgeeks.com\/count-lines-of-source-code-on-linux-using-tokei\/","title":{"rendered":"Count Lines of Source Code on Linux Using Tokei"},"content":{"rendered":"\n<p>What is Tokei and how is it useful to developers? Tokei is a very powerful program that is used to display code statistics. This means it can count the total number of files, total lines within the files or code, can show comments, blanks etc and groups them according to language used.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Features of Tokei<\/h3>\n\n\n\n<p>Tokei has a number of intuitive features that makes it a program to go for. These include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><em>Very Fast<\/em> &#8211; Tokei can count millions of lines of codes within seconds.<\/li>\n\n\n\n<li><em>Accuracy<\/em> &#8211; Tokei is accurate in that it correctly handles both multi-line comments and nested comments and doesn&#8217;t comments that are in strings.<\/li>\n\n\n\n<li><em>Multiple formats<\/em> &#8211; It can give outputs in various formats such as JSON, YAML and CBOR, hence the output can be easily stored and reused. <\/li>\n\n\n\n<li><em>Huge language range<\/em> &#8211; It supports more that 150 languages with their extensions.<\/li>\n\n\n\n<li><em>Support for Operating systems<\/em> &#8211; Tokei is available on Mac, Windows and Linux Operating systems.<\/li>\n\n\n\n<li>Tokei is a Library making it easy to be integrated with other projects.<\/li>\n\n\n\n<li>Can be installed with and without color. The variable No_COLOR st to 1 makes it black and white.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Installing Tokei utility on Linux \/ macOS<\/h3>\n\n\n\n<p>To manually install Tokei in Linux, use the steps below:<\/p>\n\n\n\n<p>First download the latest version of Tokei using wget as shown. Check the pre-built binaries for you to download in <a href=\"https:\/\/github.com\/XAMPPRocky\/tokei\/releases\" rel=\"noopener\" target=\"_blank\" rel=\"noreferrer noopener\">gitub<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">sudo wget -qO tokei.tar.gz https:\/\/github.com\/XAMPPRocky\/tokei\/releases\/latest\/download\/tokei-x86_64-unknown-linux-gnu.tar.gz<\/mark><\/strong><\/code><\/pre>\n\n\n\n<p>Extract the file to \/usr\/local\/bin directory.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">sudo tar xf tokei.tar.gz -C \/usr\/local\/bin<\/mark><\/strong><\/code><\/pre>\n\n\n\n<p>You can check the version installed.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">tokei --version<\/span><\/strong>\ntokei 13.0.0 compiled with serialization support: json, cbor, yaml<\/code><\/pre>\n\n\n\n<p>You can also install with the corresponding package managers in other Linux distributions.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong><em># Arch Linux \/ Manjaro\n<\/em><\/strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">sudo pacman -S tokei<\/mark>\n\n<strong><em># Fedora\n<\/em><\/strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">sudo dnf install tokei<\/mark>\n\n<strong><em># OpenSUSE\n<\/em><\/strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">sudo zypper install tokei<\/mark>\n\n<strong><em># FreeBSD\n<\/em><\/strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">pkg install tokei<\/mark>\n\n<strong><em># Cargo\n<\/em><\/strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">cargo install tokei<\/mark>\n\n<strong><em># Alpine Linux (Since 3.13)\n<\/em><\/strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">apk add tokei<\/mark><\/code><\/pre>\n\n\n\n<p>You can also build and install Tokei from source. This requires the latest stable Rust compiler. Check the installation example on Ubuntu 24.04 below.<\/p>\n\n\n\n<p>First, update your system packages:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">sudo apt -y update\nsudo apt -y upgrade\nsudo reboot<\/mark><\/strong><\/code><\/pre>\n\n\n\n<p>Install Rust on Linux:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">sudo apt -y install rustc<\/mark><\/strong><\/code><\/pre>\n\n\n\n<p>Install Tokei:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">cargo install --git https:\/\/github.com\/XAMPPRocky\/tokei.git tokei<\/span><\/strong><span class=\"has-inline-color has-luminous-vivid-amber-color\">\n<\/span>\n-------------\n-------------\nCompiling tokei v12.1.2 (\/home\/lorna\/.cargo\/git\/checkouts\/tokei-d1ad1f1a744b4594\/0152709)\n    Finished release &#91;optimized] target(s) in 7m 38s\n  Installing \/home\/lorna\/.cargo\/bin\/tokei\n   Installed package `tokei v12.1.2 (https:\/\/github.com\/XAMPPRocky\/tokei.git#0152709e)` (executable `tokei`)\nwarning: be sure to add `\/home\/lorna\/.cargo\/bin` to your PATH to be able to run the installed binaries\n\n<strong>$ <span class=\"has-inline-color has-vivid-cyan-blue-color\">PATH=$PATH:~\/.cargo\/bin<\/span><\/strong><\/code><\/pre>\n\n\n\n<p>Install Tokei on Windows and MacOS as shown below:<\/p>\n\n\n\n<p>On MacOS:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em><span class=\"has-inline-color has-vivid-cyan-blue-color\"># With Homebrew\n<\/span><\/em><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">brew install tokei<\/mark><\/strong>\n\n<em><span class=\"has-inline-color has-vivid-green-cyan-color\"># With MacPorts\n<\/span><\/em><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">sudo port selfupdate\nsudo port install tokei<\/mark><\/strong><\/code><\/pre>\n\n\n\n<p>On Windows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">scoop install tokei<\/mark><\/strong><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Configuring Tokei on Linux<\/h3>\n\n\n\n<p>Create a configuration file that enables you to change the default behavior. The file can be named <code>tokei.toml<\/code> or <code>.tokeirc<\/code> and can be placed in the current directory, home directory or configuration directory. Example configuration as below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em># The width of the terminal output in columns.\n<\/em>columns = 80\n\n<em># Sort languages based on the specified column.\n<\/em>sort = \"lines\"\n\n<em># If set, tokei will only show the languages in `types`.\n<\/em>types = &#91;\"Python\"]\n\n<em># Any doc strings (e.g. `\"\"\"hello\"\"\"` in python) will be counted as comments.\n<\/em>treat_doc_strings_as_comments = true<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">How to Use Tokei to count lines of code<\/h3>\n\n\n\n<p>Once you install tokei, you can simply run <code>tokei<\/code>to display code statistics for the current directory<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">tokei<\/span> <\/strong>\n===============================================================================\n Language            Files        Lines         Code     Comments       Blanks\n===============================================================================\n Markdown                8          194            0          124           70\n Python                  4           27           18            2            7\n Plain Text              1            1            0            1            0\n YAML                    3           53           53            0            0\n-------------------------------------------------------------------------------\n Jupyter Notebooks       1            0            0            0            0\n |- Python               1           16           13            0            3\n (Total)                             16           13            0            3\n===============================================================================\n Total                  17          275           71          127           77\n===============================================================================\n<\/code><\/pre>\n\n\n\n<p>To list the supported languages and extensions, run the below command. The list is a bit long.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">tokei -l<\/span><\/strong>\nABNF\nABAP\nActionScript\nAda\nAgda\nAlex\nAlloy\nArduino C++\nAsciiDoc\nASN.1\nASP\nASP.NET\nAssembly\nGNU Style Assembly\nAutoHotKey\nAutoconf\nAutomake\nBASH\nBatch\nBean\nBrightScript\nC\n.....\n.....<\/code><\/pre>\n\n\n\n<p>If you have a specific file\/code in a specific directory that you wish to display its statistics, pass the directory name as shown. This will report on the specified folder and its subdolders.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">tokei \/home\/lorna<\/span><\/strong><span class=\"has-inline-color has-luminous-vivid-amber-color\"> <\/span>\n===============================================================================\n Language            Files        Lines         Code     Comments       Blanks\n===============================================================================\n Markdown                8          194            0          124           70\n Python                  4           27           18            2            7\n Plain Text              1            1            0            1            0\n YAML                    3           53           53            0            0\n-------------------------------------------------------------------------------\n Jupyter Notebooks       1            0            0            0            0\n |- Python               1           16           13            0            3\n (Total)                             16           13            0            3\n===============================================================================\n Total                  17          275           71          127           77\n===============================================================================<\/code><\/pre>\n\n\n\n<p>Use a comma or space to separate folders if you wish to report on multiple folders.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>$ <span class=\"has-inline-color has-pale-cyan-blue-color\">tokei .\/foo .\/bar .\/baz<\/span><\/strong>\n<em># or\n<\/em><strong>$ <span class=\"has-inline-color has-light-green-cyan-color\">tokei .\/foo, .\/bar, .\/baz<\/span><\/strong><\/code><\/pre>\n\n\n\n<p>To exclude folders, tokei inspects <code>.gitignore<\/code> and <code>.ignore<\/code> files where you can list paths to exclude but you can also use <code>--exclude<\/code>for excuding additional files. Excluded paths can also be listed in <code>.tokeignore<\/code> file using the same syntax as <code>.gitignore<\/code> files. Simply create a file with one of the names and add the paths to be ignored.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>tokei \/&lt;path-to-inspect> --exclude *.rs<\/strong><\/code><\/pre>\n\n\n\n<p>You can also sort what you wish to display. By default tokei sorts alphabetically by language but with <code>--sort<\/code>tokei can sort the columns by blanks, comments, lines and code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">tokei \/home\/lorna --sort code<\/span><\/strong>\n===============================================================================\n Language            Files        Lines         Code     Comments       Blanks\n===============================================================================\n YAML                    3           53           53            0            0\n Python                  4           27           18            2            7\n Markdown                8          194            0          124           70\n Plain Text              1            1            0            1            0\n-------------------------------------------------------------------------------\n Jupyter Notebooks       1            0            0            0            0\n |- Python               1           16           13            0            3\n (Total)                             16           13            0            3\n===============================================================================\n Total                  17          275           71          127           77\n===============================================================================\n<\/code><\/pre>\n\n\n\n<p>To output individual file statistics with Tokei instead of the default total of the languages, use <code>--files <\/code>flag<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">tokei \/home\/lorna\/ --files<\/span><\/strong>\n===============================================================================\n Language            Files        Lines         Code     Comments       Blanks\n===============================================================================\n Markdown                8          194            0          124           70\n-------------------------------------------------------------------------------\n |orna\/Nextcloud\/Readme.md            1            0            0            1\n |loud\/Templates\/Readme.md           12            0            9            3\n |emplates\/Product plan.md           58            0           32           26\n |mplates\/Meeting notes.md           25            0           16            9\n |loud\/Documents\/Readme.md            3            0            2            1\n |oud\/Documents\/Example.md           19            0           14            5\n |xtcloud\/Photos\/Readme.md            3            0            2            1\n |na\/linux-amd64\/README.md           73            0           49           24\n-------------------------------------------------------------------------------\n Python                  4           27           18            2            7\n-------------------------------------------------------------------------------\n \/home\/lorna\/test.py                  8            5            0            3\n \/home\/lorna\/testpsutil.py            9            8            1            0\n \/home\/lorna\/pytest1.py               7            3            1            3\n \/home\/lorna\/teststdin.py             3            2            0            1\n-------------------------------------------------------------------------------\n Plain Text              1            1            0            1            0\n-------------------------------------------------------------------------------\n \/home\/lorna\/file1.txt                1            0            1            0\n-------------------------------------------------------------------------------\n YAML                    3           53           53            0            0\n-------------------------------------------------------------------------------\n \/home\/lorna\/k0s.yaml                23           23            0            0\n |common\/config\/config.yml           10           10            0            0\n \/home\/lorna\/k0sctl.yaml             20           20            0            0\n-------------------------------------------------------------------------------\n Jupyter Notebooks       1            0            0            0            0\n |- Python               1           16           13            0            3\n (Total)                             16           13            0            3\n-------------------------------------------------------------------------------\n \/home\/lorna\/test1.ipynb\n |- Jupyter Notebooks                 0            0            0            0\n |- Python                           16           13            0            3\n \/home\/lorna\/test1.ipynb              0            0            0            0\n===============================================================================\n Total                  17          275           71          127           77\n===============================================================================\n<\/code><\/pre>\n\n\n\n<p>You can also define the kind of output you want. This could be json, yaml, cbor or all. See below example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">tokei \/home\/lorna\/ --output json<\/span><\/strong>\n{\"Jupyter Notebooks\":{\"blanks\":0,\"children\":{\"Python\":&#91;{\"name\":\"\/home\/lorna\/test1.ipynb\",\"stats\":{\"blanks\":3,\"blobs\":{},\"code\":13,\"comments\":0}}]},\"code\":0,\"comments\":0,\"inaccurate\":false,\"reports\":&#91;{\"name\":\"\/home\/lorna\/test1.ipynb\",\"stats\":{\"blanks\":0,\"blobs\":{\"Python\":{\"blanks\":3,\"blobs\":{},\"code\":13,\"comments\":0}},\"code\":0,\"comments\":0}}]},\"Markdown\":{\"blanks\":70,\"children\":{},\"code\":0,\"comments\":124,\"inaccurate\":false,\"reports\":&#91;{\"name\":\"\/home\/lorna\/Nextcloud\/Readme.md\",\"stats\":{\"blanks\":1,\"blobs\":{},\"code\":0,\"comments\":0}},{\"name\":\"\/home\/lorna\/Nextcloud\/Templates\/Readme.md\",\"stats\":{\"blanks\":3,\"blobs\":{},\"code\":0,\"comments\":9}},{\"name\":\"\/home\/lorna\/Nextcloud\/Templates\/Meeting notes.md\",\"stats\":{\"blanks\":9,\"blobs\":{},\"code\":0,\"comments\":16}},{\"name\":\"\/home\/lorna\/Nextcloud\/Documents\/Readme.md\",\"stats\":{\"blanks\":1,\"blobs\":{},\"code\"\n\n<strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">tokei \/home\/lorna\/ --output yaml<\/span><\/strong>\n---\nJupyter Notebooks:\n  blanks: 0\n  children:\n    Python:\n      - name: \/home\/lorna\/test1.ipynb\n        stats:\n          blanks: 3\n          blobs: {}\n          code: 13\n          comments: 0\n  code: 0\n  comments: 0\n  inaccurate: false\n  reports:\n    - name: \/home\/lorna\/test1.ipynb\n      stats:\n        blanks: 0\n        blobs:\n          Python:\n            blanks: 3\n            blobs: {}\n            code: 13\n            comments: 0\n        code: 0\n        comments: 0\n\n<strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">tokei \/home\/lorna\/ --output cbor<\/span><\/strong>\na6714a757079746572204e6f7465626f6f6b73a666626c616e6b7300686368696c6472656ea166507974686f6e81a2646e616d65772f686f6d652f6c6f726e612f74657374312e6970796e62657374617473a466626c616e6b730365626c6f6273a064636f64650d68636f6d6d656e74730064636f64650068636f6d6d656e7473006a696e6163637572617465f4677265706f72747381a2646e616d65772f686f6d652f6c6f726e612f74657374312e6970796e62657374617473a466626c616e6b730065626c6f6273a166507974686f6ea466626c616e6b730365626c6f6273a064636f64650d68636f6d6d656e74730064636f64650068636f6d6d656e747300684d61726b646f776ea666626c616e6b731846686368696c6472656ea064636f64650068636f6d6d656e7473187c6a696e6163637572617465f4677265706f72747388a2646e616d65781f2f686f6d652f6c6f\n<\/code><\/pre>\n\n\n\n<p>Check the options to be used with tokei using <code>-h<\/code> flag:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">tokei -h<\/span><\/strong>\ntokei 12.1.2 compiled with serialization support: json, cbor, yaml\nErin P. &lt;xampprocky@gmail.com> + Contributors\nCount your code, quickly.\nSupport this project on GitHub Sponsors: https:\/\/github.com\/sponsors\/XAMPPRocky\n\nUSAGE:\n    tokei &#91;FLAGS] &#91;OPTIONS] &#91;--] &#91;input]...\n\nFLAGS:\n    -C, --compact             Do not print statistics about embedded languages.\n    -f, --files               Will print out statistics on individual files.\n    -h, --help                Prints help information\n        --hidden              Count hidden files.\n    -l, --languages           Prints out supported languages and their extensions.\n        --no-ignore           Don't respect ignore files (.gitignore, .ignore, etc.). This implies --no-ignore-parent,\n                              --no-ignore-dot, and --no-ignore-vcs.\n        --no-ignore-dot       Don't respect .ignore and .tokeignore files, including those in parent directories.\n        --no-ignore-parent    Don't respect ignore files (.gitignore, .ignore, etc.) in parent directories.\n        --no-ignore-vcs       Don't respect VCS ignore files (.gitignore, .hgignore, etc.), including those in parent\n                              directories.\n    -V, --version             Prints version information\n    -v, --verbose             Set log output level:\n                                          1: to show unknown file extensions,\n                                          2: reserved for future debugging,\n                                          3: enable file level trace. Not recommended on multiple files\n\nOPTIONS:\n    -c, --columns &lt;columns>                Sets a strict column width of the output, only available for terminal output.\n    -e, --exclude &lt;exclude>...             Ignore all files &amp; directories matching the pattern.\n    -i, --input &lt;file_input>               Gives statistics from a previous tokei run. Can be given a file path, or\n                                           \"stdin\" to read from stdin.\n    -n, --num-format &lt;num_format_style>    Format of printed numbers, i.e. plain (1234, default), commas (1,234), dots\n                                           (1.234), or underscores (1_234). Cannot be used with --output. &#91;possible\n                                           values: commas, dots, plain, underscores]\n    -o, --output &lt;output>                  Outputs Tokei in a specific format. Compile with additional features for more\n                                           format support. &#91;possible values: cbor, json, yaml]\n    -s, --sort &lt;sort>                      Sort languages based on column &#91;possible values: files, lines, blanks, code,\n                                           comments]\n    -t, --type &lt;types>                     Filters output by language type, seperated by a comma. i.e. -t=Rust,Markdown\n\nARGS:\n    &lt;input>...    The path(s) to the file or directory to be counted.<\/code><\/pre>\n\n\n\n<p>That&#8217;s it! you have successfully installed tokei on various operating systems and learnt how to you can use it. I trust the guide has been useful. Have fun with tokei!<\/p>\n\n\n\n<p>More guides to check out:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/computingforgeeks.com\/5-best-linux-laptops-for-programming\/\">5 Best Linux Laptops for Programming<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/computingforgeeks.com\/wp-admin\/post.php?post=69001&#038;action=edit\">Install and Use .NET Core 6 on Debian 12 \/ Debian 11<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/computingforgeeks.com\/wp-admin\/post.php?post=66468&#038;action=edit\">AngularJS to Angular migration step-by-step guidelines<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>What is Tokei and how is it useful to developers? Tokei is a very powerful program that is used to display code statistics. This means it can count the total number of files, total lines within the files or code, can show comments, blanks etc and groups them according to language used. Features of Tokei &#8230; <a title=\"Count Lines of Source Code on Linux Using Tokei\" class=\"read-more\" href=\"https:\/\/computingforgeeks.com\/count-lines-of-source-code-on-linux-using-tokei\/\" aria-label=\"Read more about Count Lines of Source Code on Linux Using Tokei\">Read more<\/a><\/p>\n","protected":false},"author":3,"featured_media":161552,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[299,47,50,320,90],"tags":[282,39714],"class_list":["post-69547","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to","category-linux","category-linux-tutorials","category-macos","category-windows","tag-linux","tag-tokei"],"_links":{"self":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/69547","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/comments?post=69547"}],"version-history":[{"count":0,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/69547\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media\/161552"}],"wp:attachment":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media?parent=69547"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/categories?post=69547"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/tags?post=69547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}