Metadata-Version: 2.4
Name: isittaken
Version: 0.1.4
Summary: check your project name availability on pypi
Author-email: Terminay <tanayonduty@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/Terminay/isittaken
Project-URL: Repository, https://github.com/Terminay/isittaken
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28.0
Dynamic: license-file

# isittaken

self-explanatory python library, a small checker for project name availability on the pypi.org site on which youre reading this readme.

## usage

make a `names.txt` file or whatever you want and add your project names in them.

_for eg._
```bash
leanpass
pytorch
tensorflow
```

an example script looks like this:

```python
from isittaken import checkpypi as pypi

pypi.check("names.txt")
```

and then run this script, that will create a `nottaken.txt` in which the available project names will be written.

## reach

if youre looking to add more features or find this small tool helpful, go to the [github repo](https://github.com/Terminay/isittaken) to **contribute** or star the repository.
