Metadata-Version: 2.1
Name: fake-agent
Version: 0.1.4
Summary: Generate fake user agents on the fly
Home-page: https://github.com/Itz-fork/Fake-agent
Download-URL: https://github.com/Itz-fork/Fake-agent/releases/tag/fake-agent-v0.1.4
Author: Itz-fork
Author-email: itz-fork@users.noreply.github.com
License: MIT
Keywords: user-agent,fake-user-agent,user agent generator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# Fake Agent
```python
from FakeAgent import Fake_Agent

fa = Fake_Agent()
print(fa.random())
```

**Fake-agent**, generate fake browser user agents without a hassle!


## Links 🔗
- [Documentation 📔](https://itz-fork.github.io/Fake-agent)
- [Features 💪](#features-)
- [Installation ⬇️](#install-)
- [Usage 🤔](#usage-)
- [License 👮](#license-)


## Features 💪
- Easy to use
- Works offline
- No need to install bunch of 3rd party packages


## Install ⬇️
- Stable from [pypi](https://pypi.org/project/fake-agent)
    ```
    pip3 install fake-agent
    ```
- Bleeding edge from [github](https://github.com/Itz-fork/Fake-agent)
    ```
    pip3 install -U https://github.com/Itz-fork/Fake-agent/archive/master.zip
    ```


## Usage 🤔
For more methods and detailed explanation, visit [method documentation](https://itz-fork.github.io/Fake-agent/#/methods/README)


**Import and initialize the `Fake_Agent` class**

```python
from FakeAgent import Fake_Agent

fa = Fake_Agent()
```

- `get()` - Get user agents as a list or generator according to the browser that Fake_Agent class initialized with
    - For more info visit - [Fake_Agent.get documentation](https://itz-fork.github.io/Fake-agent/#/methods/get)

- `random()` - Randomly select user agent
    - For more info visit - [Fake_Agent.random documentation](https://itz-fork.github.io/Fake-agent/#/methods/random)


## License 👮
Licensed under [MIT License](LICENSE)

